From 325ce1122051098d389ba1c36f784a77003b25dd Mon Sep 17 00:00:00 2001 From: Sebastian Scherer <59142915+scherersebastian@users.noreply.github.com> Date: Wed, 14 Feb 2024 21:56:35 +0100 Subject: [PATCH 01/41] ci: delete .github/workflows/veracode.yaml --- .github/workflows/veracode.yaml | 49 --------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 .github/workflows/veracode.yaml diff --git a/.github/workflows/veracode.yaml b/.github/workflows/veracode.yaml deleted file mode 100644 index e8b3d77a01..0000000000 --- a/.github/workflows/veracode.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: Veracode SAST test -on: - workflow_dispatch: # Trigger manually - schedule: - - cron: '0 0 * * *' # Once a day - -jobs: - static_analysis: - name: Static Analysis - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Set up JDK 17 - uses: actions/setup-java@v4 - with: - java-version: '17' - distribution: 'temurin' - - - name: Set up Maven - uses: stCarolas/setup-maven@v4.5 - with: - maven-version: 3.8.2 - - - name: Cache maven packages - uses: actions/cache@v3 - with: - path: ~/.m2 - key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} - restore-keys: ${{ runner.os }}-m2 - - - name: Build - run: mvn package --batch-mode -DskipTests - - - uses: actions/upload-artifact@v3 - with: - path: 'irs-api/target/*exec.jar' - - - name: Veracode Upload And Scan - uses: veracode/veracode-uploadandscan-action@0.2.6 - with: - appname: 'IRS' - version: '${{ github.run_id }}' - createprofile: false - vid: '${{ secrets.VERACODE_API_ID || secrets.ORG_VERACODE_API_ID }}' - vkey: '${{ secrets.VERACODE_API_KEY || secrets.ORG_VERACODE_API_KEY }}' - filepath: 'irs-api/target/*exec.jar' - deleteIncompleteScan: 2 #delete a scan of any status except Results Ready to proceed with the uploadandscan action. If errors occur when running this action, the Java wrapper automatically deletes the incomplete scan. From 787c605c5b38062af46dd73eb88a53dbfc886014 Mon Sep 17 00:00:00 2001 From: Sebastian Scherer <59142915+scherersebastian@users.noreply.github.com> Date: Wed, 14 Feb 2024 22:01:29 +0100 Subject: [PATCH 02/41] ci: delete .github/workflows/spotbugs.yml --- .github/workflows/spotbugs.yml | 48 ---------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 .github/workflows/spotbugs.yml diff --git a/.github/workflows/spotbugs.yml b/.github/workflows/spotbugs.yml deleted file mode 100644 index f0ac07b902..0000000000 --- a/.github/workflows/spotbugs.yml +++ /dev/null @@ -1,48 +0,0 @@ -name: "Spotbugs bug detection" - -on: - push: - branches: main - paths-ignore: - - '**/*.md' - - '**/*.txt' - pull_request: - branches: main - paths-ignore: - - '**/*.md' - - '**/*.txt' - - 'charts/**' - - '.config/**' - - 'docs/**' - - 'local/**' - - 'README.md' - - 'CHANGELOG.md' - schedule: - - cron: '0 0 * * *' # Once a day - -jobs: - analyze: - runs-on: ubuntu-latest - permissions: - actions: read - contents: read - - name: spotbugs-check - steps: - - uses: actions/checkout@v4 - - - name: Set up JDK 17 - uses: actions/setup-java@v4 - with: - java-version: '17' - distribution: 'temurin' - - - name: Cache maven packages - uses: actions/cache@v3 - with: - path: ~/.m2 - key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} - restore-keys: ${{ runner.os }}-m2 - - - name: run maven spotbugs plugin - run: mvn clean package -DskipTests=true spotbugs:check \ No newline at end of file From f9c2826f1c48b3f61bbaad2515240b4cc3716b5c Mon Sep 17 00:00:00 2001 From: Sebastian Scherer <59142915+scherersebastian@users.noreply.github.com> Date: Wed, 14 Feb 2024 22:02:53 +0100 Subject: [PATCH 03/41] ci: delete .config/spotbugs-excludes.xml --- .config/spotbugs-excludes.xml | 81 ----------------------------------- 1 file changed, 81 deletions(-) delete mode 100644 .config/spotbugs-excludes.xml diff --git a/.config/spotbugs-excludes.xml b/.config/spotbugs-excludes.xml deleted file mode 100644 index ff2379382f..0000000000 --- a/.config/spotbugs-excludes.xml +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From f73d6c00fbe038c86ef888013aa62466b7b5d8c1 Mon Sep 17 00:00:00 2001 From: Sebastian Scherer <59142915+scherersebastian@users.noreply.github.com> Date: Wed, 14 Feb 2024 22:15:27 +0100 Subject: [PATCH 04/41] ci: update codeql.yml action version --- .github/workflows/codeql.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 187d7134c0..50db74f1e7 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -93,4 +93,4 @@ jobs: mvn clean package --batch-mode -DskipTests - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 From 12a11c18e5e52cfad78240d71844faa5bbbd0597 Mon Sep 17 00:00:00 2001 From: Sebastian Scherer <59142915+scherersebastian@users.noreply.github.com> Date: Wed, 14 Feb 2024 22:16:53 +0100 Subject: [PATCH 05/41] ci: delete .github/workflows/trivy.yml --- .github/workflows/trivy.yml | 50 ------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 .github/workflows/trivy.yml diff --git a/.github/workflows/trivy.yml b/.github/workflows/trivy.yml deleted file mode 100644 index 0dafa7fea6..0000000000 --- a/.github/workflows/trivy.yml +++ /dev/null @@ -1,50 +0,0 @@ -# Depending on the location of your Docker container -# you need to change the path to the specific Docker registry. -# -name: "Trivy vulnerability scanner" - -on: - workflow_dispatch: # Trigger manually - push: - branches: main - paths-ignore: - - '**/*.md' - - '**/*.txt' - pull_request: - branches: main - paths-ignore: - - '**/*.md' - - '**/*.txt' - schedule: - - cron: '0 0 * * *' # Once a day - -jobs: - analyze-config: - runs-on: ubuntu-latest - permissions: - actions: read - contents: read - security-events: write - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Run Trivy vulnerability scanner in repo mode - uses: aquasecurity/trivy-action@master - with: - scan-type: "config" - ignore-unfixed: true - exit-code: "1" - hide-progress: false - format: "sarif" - output: "trivy-results1.sarif" - severity: "CRITICAL,HIGH" - # full-irs is a demonstration and not intended to run in a production environment, it can be excluded - skip-dirs: "charts/connector/aasregistry,charts/connector/daps,charts/connector/edc-provider,charts/connector/submodelservers,charts/irs-environments/local,local/deployment/full-irs" # skip scanning external images. - - - name: Upload Trivy scan results to GitHub Security tab - uses: github/codeql-action/upload-sarif@v2 - if: always() - with: - sarif_file: "trivy-results1.sarif" \ No newline at end of file From 9cee04c90d3d69e98f531713267d38b172013041 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 21 Mar 2024 15:45:53 +0100 Subject: [PATCH 06/41] chore(charts):[#489] Rename chart from irs-helm to item-relationship-service --- .github/workflows/helm-chart-release.yaml | 6 +++--- .github/workflows/helm-test.yaml | 2 +- .github/workflows/helm-upgrade.yaml | 12 ++++++------ .github/workflows/release.yaml | 6 +++--- .gitignore | 4 ++-- CHANGELOG.md | 2 +- CONTRIBUTING.md | 4 ++-- INSTALL.md | 8 ++++---- README.md | 4 ++-- .../src/docs/administration/configuration.adoc | 2 +- docs/src/docs/administration/installation.adoc | 6 +++--- .../docs/administration/system-overview.adoc | 2 +- local/deployment/full-irs/Chart.yaml | 2 +- local/deployment/irs-local/Chart.yaml | 4 ++-- local/deployment/irs-local/README.md | 18 +++++++++--------- 15 files changed, 41 insertions(+), 41 deletions(-) diff --git a/.github/workflows/helm-chart-release.yaml b/.github/workflows/helm-chart-release.yaml index 3e1eeff53e..85a0c8f004 100644 --- a/.github/workflows/helm-chart-release.yaml +++ b/.github/workflows/helm-chart-release.yaml @@ -31,7 +31,7 @@ jobs: - name: Get helm charts current version id: step2 run: | - chartVersion=irs-helm-$(cat ./charts/irs-helm/Chart.yaml | grep "version:" | head -1 | cut -d ":" -d " " -f2) + chartVersion=irs-helm-$(cat ./charts/item-relationship-service/Chart.yaml | grep "version:" | head -1 | cut -d ":" -d " " -f2) echo "::set-output name=current_version::$chartVersion" echo "Exported $chartVersion helm charts version" @@ -60,7 +60,7 @@ jobs: version: v3.9.3 - name: Update helm dependencies for irs - working-directory: charts/irs-helm/ + working-directory: charts/item-relationship-service/ run: | helm repo add bitnami https://charts.bitnami.com/bitnami helm repo add minio https://charts.min.io/ @@ -69,7 +69,7 @@ jobs: helm dependency update - name: Create temporary CHANGELOG file for helm release - working-directory: charts/irs-helm/ + working-directory: charts/item-relationship-service/ run: | touch CHANGELOG-temp.md diff --git a/.github/workflows/helm-test.yaml b/.github/workflows/helm-test.yaml index 25746b5213..9f0af3f79e 100644 --- a/.github/workflows/helm-test.yaml +++ b/.github/workflows/helm-test.yaml @@ -72,5 +72,5 @@ jobs: helm repo add minio https://charts.min.io/ helm repo add prometheus-community https://prometheus-community.github.io/helm-charts helm repo add grafana https://grafana.github.io/helm-charts - ct install --charts charts/irs-helm --helm-extra-set-args "--set=image.tag=testing --set=image.repository=kind-registry:5000/irs-api" + ct install --charts charts/item-relationship-service --helm-extra-set-args "--set=image.tag=testing --set=image.repository=kind-registry:5000/irs-api" if: steps.list-changed.outputs.changed == 'true' \ No newline at end of file diff --git a/.github/workflows/helm-upgrade.yaml b/.github/workflows/helm-upgrade.yaml index 762675e705..28700bec95 100644 --- a/.github/workflows/helm-upgrade.yaml +++ b/.github/workflows/helm-upgrade.yaml @@ -3,7 +3,7 @@ name: Upgrade Charts on: pull_request: paths: - - 'charts/irs-helm/**' + - 'charts/item-relationship-service/**' workflow_dispatch: jobs: @@ -32,12 +32,12 @@ jobs: helm repo add irs https://eclipse-tractusx.github.io/item-relationship-service - name: Run helm install - # Install latest released irs-helm version + # Install latest released item-relationship-service version run: | - helm install irs irs/irs-helm + helm install irs irs/item-relationship-service - name: Run helm upgrade - # Upgrade the installed irs-helm version with the locally available charts + # Upgrade the installed item-relationship-service version with the locally available charts run: | - helm dependency update charts/irs-helm - helm upgrade irs charts/irs-helm + helm dependency update charts/item-relationship-service + helm upgrade irs charts/item-relationship-service diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index d5641838df..788ffd87b0 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -13,17 +13,17 @@ jobs: - uses: actions/checkout@v4 - name: Calculate Helm release version from CHANGELOG - run: echo HELM_VERSION=$(cat charts/irs-helm/CHANGELOG.md | sed -n 's/.*\[\([0-9]\+\.[0-9]\+\.[0-9]\+\)\].*/\1/p' | head -n 1) >> $GITHUB_ENV + run: echo HELM_VERSION=$(cat charts/item-relationship-service/CHANGELOG.md | sed -n 's/.*\[\([0-9]\+\.[0-9]\+\.[0-9]\+\)\].*/\1/p' | head -n 1) >> $GITHUB_ENV - name: Update Chart.yaml appVersion uses: mikefarah/yq@v4.40.5 with: - cmd: yq -i eval '.appVersion = "${{ github.ref_name }}"' charts/irs-helm/Chart.yaml + cmd: yq -i eval '.appVersion = "${{ github.ref_name }}"' charts/item-relationship-service/Chart.yaml - name: Update Chart.yaml version uses: mikefarah/yq@v4.40.5 with: - cmd: yq -i eval '.version = "${{ env.HELM_VERSION }}"' charts/irs-helm/Chart.yaml + cmd: yq -i eval '.version = "${{ env.HELM_VERSION }}"' charts/item-relationship-service/Chart.yaml - name: Prepare Helm release uses: peter-evans/create-pull-request@v5 diff --git a/.gitignore b/.gitignore index 5e4582a016..b779055967 100644 --- a/.gitignore +++ b/.gitignore @@ -71,7 +71,7 @@ docs/src/diagram-replacer/package.json docs/src/diagram-replacer/plantuml.jar # Helm Chart Dependencies -/charts/irs-helm/Chart.lock -/charts/irs-helm/charts/ +/charts/item-relationship-service/Chart.lock +/charts/item-relationship-service/charts/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a6eb265ac..78eab72903 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -123,7 +123,7 @@ _**For better traceability add the corresponding GitHub issue number in each cha - Added `impactedSuppliersOnFirstTier` parameter to Supply SupplyChainImpacted Aspect model - contains information of first level supply chain impacted - Exported health endpoints to prometheus (see HealthMetricsExportConfiguration, DependenciesHealthMetricsExportConfiguration) and - added [system health dashboard](charts/irs-helm/dashboards/system-health-dashboard.json) + added [system health dashboard](charts/item-relationship-service/dashboards/system-health-dashboard.json) in order to visualize health metrics of IRS and its dependencies. #283 ### Fixed diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index aded5da7aa..a67b14f33f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -171,7 +171,7 @@ https://github.com/google/google-java-format/blob/master/README.md#intellij-jre- 1. Choose a release version using [semantic versioning](https://semver.org/spec/v2.0.0.html) and create a corresponding branch according to the template: `chore/prepare-release-x.x.x`. 2. Add release notes for new version in [CHANGELOG.md](CHANGELOG.md) - and [charts/irs-helm/CHANGELOG.md](charts/irs-helm/CHANGELOG.md) + and [charts/item-relationship-service/CHANGELOG.md](charts/item-relationship-service/CHANGELOG.md) (for an example [see here](https://github.com/eclipse-tractusx/item-relationship-service/pull/429)) - Check if the changelog entries for the release are complete. - Add the corresponding GitHub issue numbers to each entry if missing. @@ -179,7 +179,7 @@ https://github.com/google/google-java-format/blob/master/README.md#intellij-jre- 4. Update IRS API version in IrsApplication class and irs-api.yaml 5. Create pull request from [release preparation branch to main](https://github.com/eclipse-tractusx/item-relationship-service/compare/chore/prepare-release-x.x.x) and merge to main. 6. Create Git tag for the desired release version `git tag x.x.x` - (note: the irs-helm tag will be created automatically by the GitHub workflow based on the version in the irs-helm changelog). + (note: the _irs-helm_ tag will be created automatically by the GitHub workflow based on the version in the _irs-helm_ changelog). 7. Push Git tag to repository `git push origin x.x.x` (this will trigger the GitHub release workflow). 8. Wait for release workflow to complete. 9. Merge the automatically opened PR by GitHub actions bot. diff --git a/INSTALL.md b/INSTALL.md index 729ca891f9..7f895c717b 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -2,7 +2,7 @@ The deployment contains the components required to connect the IRS to an existing Catena-X network. This includes: -- IRS with Minio - part of the "irs-helm" Helm chart +- IRS with Minio - part of the "item-relationship-service" Helm chart - EDC Consumer (controlplane & dataplane) - part of the "irs-edc-consumer" Helm chart Everything else needs to be provided externally. @@ -16,7 +16,7 @@ Instructions can be found here: [Data Chain Kit](https://eclipse-tractusx.github The IRS Helm repository can be found here: [index.yaml](https://eclipse-tractusx.github.io/item-relationship-service/index.yaml) -Use the latest release of the "irs-helm" chart. +Use the latest release of the "item-relationship-service" Helm chart. It contains all required dependencies. If you also want to set up your own EDC consumer, use the "irs-edc-consumer" chart. @@ -35,14 +35,14 @@ Add the IRS Helm repository: Then install the Helm chart into your cluster: ```(shell) - helm install -f your-values.yaml irs-app irs/irs-helm + helm install -f your-values.yaml irs-app irs/item-relationship-service ``` Or create a new Helm chart and use the IRS as a dependency. ```(yaml) dependencies: - - name: irs-helm + - name: item-relationship-service repository: https://eclipse-tractusx.github.io/item-relationship-service version: 6.x.x - name: tractusx-connector diff --git a/README.md b/README.md index 603ac6b4f1..b30918b2f8 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ The IRS project consists of several different parts: | .idea | Configuration for development via [IntelliJ](https://www.jetbrains.com/idea/). | | | .run | Run configurations for running the IRS in [IntelliJ](https://www.jetbrains.com/idea/). | | | charts | [HELM](https://helm.sh/) charts. | | -| charts/irs-helm | IRS [HELM](https://helm.sh/) chart for running the IRS with and its direct dependencies in [kubernetes](https://kubernetes.io/). | [IRS HELM charts documentation](charts/irs-helm/README.md) | +| charts/item-relationship-service | IRS [HELM](https://helm.sh/) chart for running the IRS with and its direct dependencies in [kubernetes](https://kubernetes.io/). | [IRS HELM charts documentation](charts/item-relationship-service/README.md) | | docs | Concepts and documentation. | [Docs README](docs/README.md) | | irs-api | The IRS API. | | | irs-common | Common classes of the IRS. | | @@ -134,7 +134,7 @@ See [TESTS](TESTS.md). ## Changelog and Compatibility Matrix - [Changelog IRS](CHANGELOG.md) -- [Changelog IRS Helm](charts/irs-helm/CHANGELOG.md) +- [Changelog IRS Helm](charts/item-relationship-service/CHANGELOG.md) - [Compatibility Matrix](COMPATIBILITY_MATRIX.md) diff --git a/docs/src/docs/administration/configuration.adoc b/docs/src/docs/administration/configuration.adoc index d3430cc7b9..6607b75911 100644 --- a/docs/src/docs/administration/configuration.adoc +++ b/docs/src/docs/administration/configuration.adoc @@ -14,7 +14,7 @@ include::irs-spring-config.adoc[leveloffset=+1] [source,yaml] ---- -include::../../../../charts/irs-helm/values.yaml[lines=104..302] +include::../../../../charts/item-relationship-service/values.yaml[lines=104..302] ---- <1> Use this to enable or disable the monitoring components diff --git a/docs/src/docs/administration/installation.adoc b/docs/src/docs/administration/installation.adoc index 6eec2c1f73..b2075edbe5 100644 --- a/docs/src/docs/administration/installation.adoc +++ b/docs/src/docs/administration/installation.adoc @@ -3,7 +3,7 @@ The IRS Helm repository can be found here: https://eclipse-tractusx.github.io/item-relationship-service/index.yaml -Use the latest release of the "irs-helm" chart. +Use the latest release of the "item-relationship-service" chart. It contains all required dependencies. If you also want to set up your own EDC consumer, use the https://github.com/eclipse-tractusx/tractusx-edc/tree/main/charts/tractusx-connector[tractusx-connector] chart. @@ -20,7 +20,7 @@ $ helm repo add irs https://eclipse-tractusx.github.io/item-relationship-service Then install the Helm chart into your cluster: [listing] -$ helm install -f your-values.yaml irs-app irs/irs-helm +$ helm install -f your-values.yaml irs-app irs/item-relationship-service == Deployment using ArgoCD @@ -29,7 +29,7 @@ Create a new Helm chart and use the IRS as a dependency. [source,yaml] ---- dependencies: - - name: irs-helm + - name: item-relationship-service repository: https://eclipse-tractusx.github.io/item-relationship-service version: 6.x.x - name: tractusx-connector # optional diff --git a/docs/src/docs/administration/system-overview.adoc b/docs/src/docs/administration/system-overview.adoc index c9127fe5a9..bae86a6920 100644 --- a/docs/src/docs/administration/system-overview.adoc +++ b/docs/src/docs/administration/system-overview.adoc @@ -2,7 +2,7 @@ The deployment contains the components required to connect the IRS to an existing Catena-X network. This includes: -* IRS with Minio - part of the "irs-helm" Helm chart +* IRS with Minio - part of the "item-relationship-service" Helm chart * EDC Consumer (controlplane & dataplane) - part of the "irs-edc-consumer" Helm chart Everything else needs to be provided externally. diff --git a/local/deployment/full-irs/Chart.yaml b/local/deployment/full-irs/Chart.yaml index 0cc981cd43..1583f22706 100644 --- a/local/deployment/full-irs/Chart.yaml +++ b/local/deployment/full-irs/Chart.yaml @@ -98,7 +98,7 @@ dependencies: condition: install.irs.providerBackend # IRS - - name: irs-helm + - name: item-relationship-service alias: irs repository: https://catenax-ng.github.io/tx-item-relationship-service version: 5.0.9 diff --git a/local/deployment/irs-local/Chart.yaml b/local/deployment/irs-local/Chart.yaml index cd18449143..a05d1ef620 100644 --- a/local/deployment/irs-local/Chart.yaml +++ b/local/deployment/irs-local/Chart.yaml @@ -16,7 +16,7 @@ # SPDX-License-Identifier: Apache-2.0 apiVersion: v2 -name: irs-helm-local +name: item-relationship-service-local description: IRS Helm chart for local Kubernetes home: https://eclipse-tractusx.github.io/ sources: @@ -26,6 +26,6 @@ version: 6.14.0 appVersion: "4.5.0" dependencies: - - name: irs-helm + - name: item-relationship-service repository: https://eclipse-tractusx.github.io/item-relationship-service version: 6.14.0 diff --git a/local/deployment/irs-local/README.md b/local/deployment/irs-local/README.md index 20cccbd201..8623d1e351 100644 --- a/local/deployment/irs-local/README.md +++ b/local/deployment/irs-local/README.md @@ -9,7 +9,7 @@ 3. Any Kubernetes cluster is installed and running, eg. [Minikube](https://minikube.sigs.k8s.io/docs/start/) 4. [kubectl](https://kubernetes.io/docs/tasks/tools/) is installed -### Step 2: Update and build the irs-helm chart +### Step 2: Update and build the item-relationship-service helm chart ```bash $ helm dependency build @@ -22,7 +22,7 @@ Hang tight while we grab the latest from your chart repositories... ...Successfully got an update from the "prometheus-community" chart repository Update Complete. ⎈Happy Helming!⎈ Saving 1 charts -Downloading irs-helm from repo https://eclipse-tractusx.github.io/item-relationship-service +Downloading item-relationship-service Helm chart from repo https://eclipse-tractusx.github.io/item-relationship-service Deleting outdated charts ``` Please note that irs repository has to be added to helm repo list @@ -43,21 +43,21 @@ To deploy IRS on kubernetes with helm run $ helm install irs-local . ``` -##### 1.1 Get the Status of the deployment +##### 1.1 Get the Status of the Deployment Helm can give you feedback on the release status: ```bash $ helm list -NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION -irs-local default 1 2024-02-26 11:36:46.399546 +0100 CET deployed irs-helm-local-6.14.0 4.5.0 +NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION +irs-local default 1 2024-02-26 11:36:46.399546 +0100 CET deployed item-relationship-service-local-6.14.0 4.5.0 ``` Kubectl can give you feedback on how the status of the deployment currently is, there should be two pods deployed - IRS and Minio: ```bash $ kubectl get pods -NAME READY STATUS RESTARTS AGE -irs-local-minio-7cc78d8985-qggrx 1/1 Running 0 10m -irs-local-irs-helm-c84f98ffb-zg59z 1/1 Running 0 10m +NAME READY STATUS RESTARTS AGE +irs-local-minio-7cc78d8985-qggrx 1/1 Running 0 10m +irs-local-item-relationship-service-c84f98ffb-zg59z 1/1 Running 0 10m ``` @@ -66,7 +66,7 @@ irs-local-irs-helm-c84f98ffb-zg59z 1/1 Running 0 10m When the deployment has been finished please use the command to forward the port: ```bash -$ kubectl port-forward svc/irs-local-irs-helm 8080:8080 +$ kubectl port-forward svc/irs-local-item-relationship-service 8080:8080 ``` After that you can access the Swagger UI page: From cf43611b46ffd56547e74ed1064a70801a88d71a Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 21 Mar 2024 15:53:27 +0100 Subject: [PATCH 07/41] chore(charts):[#489] Rename chart from irs-helm to item-relationship-service --- charts/{irs-helm => item-relationship-service}/.helmignore | 0 charts/{irs-helm => item-relationship-service}/CHANGELOG.md | 0 charts/{irs-helm => item-relationship-service}/Chart.yaml | 4 ++-- charts/{irs-helm => item-relationship-service}/LICENSE | 0 charts/{irs-helm => item-relationship-service}/README.md | 4 ++-- .../dashboards/irs-api-dashboard.json | 0 .../dashboards/irs-jobs-dashboard.json | 0 .../dashboards/irs-outbound-requests.json | 0 .../dashboards/minio-dashboard.json | 0 .../dashboards/resource-monitoring-dashboard.json | 0 .../dashboards/system-health-dashboard.json | 0 .../templates/NOTES.txt | 0 .../templates/_helpers.tpl | 0 .../templates/configmap-grafana-dashboards.yaml | 0 .../templates/configmap-semantic-models.yaml | 0 .../templates/configmap-spring-app-config.yaml | 0 .../templates/deployment.yaml | 0 .../templates/ingress.yaml | 0 .../templates/secrets.yaml | 0 .../templates/service.yaml | 0 .../templates/tests/test-connection.yaml | 0 charts/{irs-helm => item-relationship-service}/values.yaml | 0 22 files changed, 4 insertions(+), 4 deletions(-) rename charts/{irs-helm => item-relationship-service}/.helmignore (100%) rename charts/{irs-helm => item-relationship-service}/CHANGELOG.md (100%) rename charts/{irs-helm => item-relationship-service}/Chart.yaml (96%) rename charts/{irs-helm => item-relationship-service}/LICENSE (100%) rename charts/{irs-helm => item-relationship-service}/README.md (88%) rename charts/{irs-helm => item-relationship-service}/dashboards/irs-api-dashboard.json (100%) rename charts/{irs-helm => item-relationship-service}/dashboards/irs-jobs-dashboard.json (100%) rename charts/{irs-helm => item-relationship-service}/dashboards/irs-outbound-requests.json (100%) rename charts/{irs-helm => item-relationship-service}/dashboards/minio-dashboard.json (100%) rename charts/{irs-helm => item-relationship-service}/dashboards/resource-monitoring-dashboard.json (100%) rename charts/{irs-helm => item-relationship-service}/dashboards/system-health-dashboard.json (100%) rename charts/{irs-helm => item-relationship-service}/templates/NOTES.txt (100%) rename charts/{irs-helm => item-relationship-service}/templates/_helpers.tpl (100%) rename charts/{irs-helm => item-relationship-service}/templates/configmap-grafana-dashboards.yaml (100%) rename charts/{irs-helm => item-relationship-service}/templates/configmap-semantic-models.yaml (100%) rename charts/{irs-helm => item-relationship-service}/templates/configmap-spring-app-config.yaml (100%) rename charts/{irs-helm => item-relationship-service}/templates/deployment.yaml (100%) rename charts/{irs-helm => item-relationship-service}/templates/ingress.yaml (100%) rename charts/{irs-helm => item-relationship-service}/templates/secrets.yaml (100%) rename charts/{irs-helm => item-relationship-service}/templates/service.yaml (100%) rename charts/{irs-helm => item-relationship-service}/templates/tests/test-connection.yaml (100%) rename charts/{irs-helm => item-relationship-service}/values.yaml (100%) diff --git a/charts/irs-helm/.helmignore b/charts/item-relationship-service/.helmignore similarity index 100% rename from charts/irs-helm/.helmignore rename to charts/item-relationship-service/.helmignore diff --git a/charts/irs-helm/CHANGELOG.md b/charts/item-relationship-service/CHANGELOG.md similarity index 100% rename from charts/irs-helm/CHANGELOG.md rename to charts/item-relationship-service/CHANGELOG.md diff --git a/charts/irs-helm/Chart.yaml b/charts/item-relationship-service/Chart.yaml similarity index 96% rename from charts/irs-helm/Chart.yaml rename to charts/item-relationship-service/Chart.yaml index 14a717c304..abedd3cc9a 100644 --- a/charts/irs-helm/Chart.yaml +++ b/charts/item-relationship-service/Chart.yaml @@ -20,8 +20,8 @@ # SPDX-License-Identifier: Apache-2.0 # apiVersion: v2 -name: irs-helm -description: IRS Helm chart for Kubernetes +name: item-relationship-service +description: Tractus-X Item Relationship Service Helm Chart home: https://eclipse-tractusx.github.io/ sources: - https://github.com/eclipse-tractusx/item-relationship-service diff --git a/charts/irs-helm/LICENSE b/charts/item-relationship-service/LICENSE similarity index 100% rename from charts/irs-helm/LICENSE rename to charts/item-relationship-service/LICENSE diff --git a/charts/irs-helm/README.md b/charts/item-relationship-service/README.md similarity index 88% rename from charts/irs-helm/README.md rename to charts/item-relationship-service/README.md index 0c8d320a17..ea56cc12b7 100644 --- a/charts/irs-helm/README.md +++ b/charts/item-relationship-service/README.md @@ -19,9 +19,9 @@ This includes: ``` helm repo add irs https://eclipse-tractusx.github.io/item-relationship-service -helm install irs-app irs/irs-helm +helm install irs-app irs/item-relationship-service ``` ## Default configuration values -See [the configuration docs](https://eclipse-tractusx.github.io/item-relationship-service/docs/administration/administration-guide.html#_helm_configuration_irs_values_yaml) or run `helm show values irs/irs-helm` for the default values. \ No newline at end of file +See [the configuration docs](https://eclipse-tractusx.github.io/item-relationship-service/docs/administration/administration-guide.html#_helm_configuration_irs_values_yaml) or run `helm show values irs/item-relationship-service` for the default values. \ No newline at end of file diff --git a/charts/irs-helm/dashboards/irs-api-dashboard.json b/charts/item-relationship-service/dashboards/irs-api-dashboard.json similarity index 100% rename from charts/irs-helm/dashboards/irs-api-dashboard.json rename to charts/item-relationship-service/dashboards/irs-api-dashboard.json diff --git a/charts/irs-helm/dashboards/irs-jobs-dashboard.json b/charts/item-relationship-service/dashboards/irs-jobs-dashboard.json similarity index 100% rename from charts/irs-helm/dashboards/irs-jobs-dashboard.json rename to charts/item-relationship-service/dashboards/irs-jobs-dashboard.json diff --git a/charts/irs-helm/dashboards/irs-outbound-requests.json b/charts/item-relationship-service/dashboards/irs-outbound-requests.json similarity index 100% rename from charts/irs-helm/dashboards/irs-outbound-requests.json rename to charts/item-relationship-service/dashboards/irs-outbound-requests.json diff --git a/charts/irs-helm/dashboards/minio-dashboard.json b/charts/item-relationship-service/dashboards/minio-dashboard.json similarity index 100% rename from charts/irs-helm/dashboards/minio-dashboard.json rename to charts/item-relationship-service/dashboards/minio-dashboard.json diff --git a/charts/irs-helm/dashboards/resource-monitoring-dashboard.json b/charts/item-relationship-service/dashboards/resource-monitoring-dashboard.json similarity index 100% rename from charts/irs-helm/dashboards/resource-monitoring-dashboard.json rename to charts/item-relationship-service/dashboards/resource-monitoring-dashboard.json diff --git a/charts/irs-helm/dashboards/system-health-dashboard.json b/charts/item-relationship-service/dashboards/system-health-dashboard.json similarity index 100% rename from charts/irs-helm/dashboards/system-health-dashboard.json rename to charts/item-relationship-service/dashboards/system-health-dashboard.json diff --git a/charts/irs-helm/templates/NOTES.txt b/charts/item-relationship-service/templates/NOTES.txt similarity index 100% rename from charts/irs-helm/templates/NOTES.txt rename to charts/item-relationship-service/templates/NOTES.txt diff --git a/charts/irs-helm/templates/_helpers.tpl b/charts/item-relationship-service/templates/_helpers.tpl similarity index 100% rename from charts/irs-helm/templates/_helpers.tpl rename to charts/item-relationship-service/templates/_helpers.tpl diff --git a/charts/irs-helm/templates/configmap-grafana-dashboards.yaml b/charts/item-relationship-service/templates/configmap-grafana-dashboards.yaml similarity index 100% rename from charts/irs-helm/templates/configmap-grafana-dashboards.yaml rename to charts/item-relationship-service/templates/configmap-grafana-dashboards.yaml diff --git a/charts/irs-helm/templates/configmap-semantic-models.yaml b/charts/item-relationship-service/templates/configmap-semantic-models.yaml similarity index 100% rename from charts/irs-helm/templates/configmap-semantic-models.yaml rename to charts/item-relationship-service/templates/configmap-semantic-models.yaml diff --git a/charts/irs-helm/templates/configmap-spring-app-config.yaml b/charts/item-relationship-service/templates/configmap-spring-app-config.yaml similarity index 100% rename from charts/irs-helm/templates/configmap-spring-app-config.yaml rename to charts/item-relationship-service/templates/configmap-spring-app-config.yaml diff --git a/charts/irs-helm/templates/deployment.yaml b/charts/item-relationship-service/templates/deployment.yaml similarity index 100% rename from charts/irs-helm/templates/deployment.yaml rename to charts/item-relationship-service/templates/deployment.yaml diff --git a/charts/irs-helm/templates/ingress.yaml b/charts/item-relationship-service/templates/ingress.yaml similarity index 100% rename from charts/irs-helm/templates/ingress.yaml rename to charts/item-relationship-service/templates/ingress.yaml diff --git a/charts/irs-helm/templates/secrets.yaml b/charts/item-relationship-service/templates/secrets.yaml similarity index 100% rename from charts/irs-helm/templates/secrets.yaml rename to charts/item-relationship-service/templates/secrets.yaml diff --git a/charts/irs-helm/templates/service.yaml b/charts/item-relationship-service/templates/service.yaml similarity index 100% rename from charts/irs-helm/templates/service.yaml rename to charts/item-relationship-service/templates/service.yaml diff --git a/charts/irs-helm/templates/tests/test-connection.yaml b/charts/item-relationship-service/templates/tests/test-connection.yaml similarity index 100% rename from charts/irs-helm/templates/tests/test-connection.yaml rename to charts/item-relationship-service/templates/tests/test-connection.yaml diff --git a/charts/irs-helm/values.yaml b/charts/item-relationship-service/values.yaml similarity index 100% rename from charts/irs-helm/values.yaml rename to charts/item-relationship-service/values.yaml From 9d213fbb0794fb30b9dc873d7fd5971ead843ad5 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 21 Mar 2024 16:57:06 +0100 Subject: [PATCH 08/41] chore(charts):[#489] Rename chart -- update CHANGELOG files --- CHANGELOG.md | 6 ++++++ charts/item-relationship-service/CHANGELOG.md | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 78eab72903..31c480a8a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,8 +8,14 @@ _**For better traceability add the corresponding GitHub issue number in each cha ## [Unreleased] +### Changed + +- Renamed item relationship service Helm chart from "irs-helm" to "item-relationship-service". #489 + + ## [4.8.0] - 2024-03-18 ### Changed + - Improved maintainability in EdcSubmodelClientImpl by reduced method visibility and better naming (in context of #448). - EdcPolicyDefinitionService, EdcContractDefinitionService and EdcAssetService return throw AlreadyExist exceptions when Conflict is returned from EDC diff --git a/charts/item-relationship-service/CHANGELOG.md b/charts/item-relationship-service/CHANGELOG.md index b76ebf519d..2d8064150b 100644 --- a/charts/item-relationship-service/CHANGELOG.md +++ b/charts/item-relationship-service/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed + +- Renamed item relationship service Helm chart from "irs-helm" to "item-relationship-service". #489 + ## [6.17.0] - 2024-03-18 ### Added - Added property `edc.controlplane.asyncTimeout` which allows to set a global time-to-live for all async requests over EDC From 0d0a9f513a60fffc98d21394a38dab882f0ab9e8 Mon Sep 17 00:00:00 2001 From: Maximilian Wesener Date: Fri, 22 Mar 2024 08:27:36 +0100 Subject: [PATCH 09/41] feat(decentral-client-library):596-tracex add functionallity which checks if an policy already exists. --- CHANGELOG.md | 2 + .../GetEdcPolicyDefinitionException.java | 34 ++++++++++ .../service/EdcPolicyDefinitionService.java | 22 +++++++ .../EdcPolicyDefinitionServiceTest.java | 62 +++++++++++++------ 4 files changed, 101 insertions(+), 19 deletions(-) create mode 100644 irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/policy/model/exception/GetEdcPolicyDefinitionException.java diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a6eb265ac..4909d654fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 _**For better traceability add the corresponding GitHub issue number in each changelog entry, please.**_ ## [Unreleased] +### Added +- Extended EdcPolicyDefinitionService to check if a policy in the edc exists ## [4.8.0] - 2024-03-18 ### Changed diff --git a/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/policy/model/exception/GetEdcPolicyDefinitionException.java b/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/policy/model/exception/GetEdcPolicyDefinitionException.java new file mode 100644 index 0000000000..9f93e3a0de --- /dev/null +++ b/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/policy/model/exception/GetEdcPolicyDefinitionException.java @@ -0,0 +1,34 @@ +/******************************************************************************** + * Copyright (c) 2021,2024 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Apache License, Version 2.0 which is available at + * https://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * SPDX-License-Identifier: Apache-2.0 + ********************************************************************************/ +package org.eclipse.tractusx.irs.edc.client.policy.model.exception; + +/** + * GetEdcPolicyDefinitionException used policy creation failed case + */ + +public class GetEdcPolicyDefinitionException extends Exception { + + public GetEdcPolicyDefinitionException(final String message) { + super(message); + } + + public GetEdcPolicyDefinitionException(final Throwable cause) { + super(cause); + } +} diff --git a/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/policy/service/EdcPolicyDefinitionService.java b/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/policy/service/EdcPolicyDefinitionService.java index 1fbe9c9080..6eb6f35496 100644 --- a/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/policy/service/EdcPolicyDefinitionService.java +++ b/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/policy/service/EdcPolicyDefinitionService.java @@ -37,6 +37,7 @@ import org.eclipse.tractusx.irs.edc.client.policy.model.exception.CreateEdcPolicyDefinitionException; import org.eclipse.tractusx.irs.edc.client.policy.model.exception.DeleteEdcPolicyDefinitionException; import org.eclipse.tractusx.irs.edc.client.policy.model.exception.EdcPolicyDefinitionAlreadyExists; +import org.eclipse.tractusx.irs.edc.client.policy.model.exception.GetEdcPolicyDefinitionException; import org.springframework.http.HttpStatus; import org.springframework.http.HttpStatusCode; import org.springframework.http.ResponseEntity; @@ -99,6 +100,27 @@ public String createAccessPolicy(final EdcCreatePolicyDefinitionRequest policyRe throw new CreateEdcPolicyDefinitionException("Failed to create EDC policy definition for asset"); } + public boolean policyDefinitionExists(final String policyName) throws GetEdcPolicyDefinitionException { + + try { + final ResponseEntity getPolicyDefinitionRequest = restTemplate.getForEntity( + config.getControlplane().getEndpoint().getPolicyDefinition() + "/" + policyName, String.class); + + final HttpStatusCode responseCode = getPolicyDefinitionRequest.getStatusCode(); + + if (responseCode.value() == HttpStatus.OK.value()) { + return true; + } + } catch (HttpClientErrorException e) { + if (e.getStatusCode().value() == HttpStatus.NOT_FOUND.value()) { + log.info(String.format("Policy with id %s not found within the edc", policyName)); + } else { + throw new GetEdcPolicyDefinitionException(e); + } + } + return false; + } + public EdcCreatePolicyDefinitionRequest createPolicyDefinition(final String policyName, final String accessPolicyId) { final EdcPolicyPermissionConstraintExpression constraint = EdcPolicyPermissionConstraintExpression.builder() diff --git a/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/policy/service/EdcPolicyDefinitionServiceTest.java b/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/policy/service/EdcPolicyDefinitionServiceTest.java index 8815c33550..5d36e0b1f1 100644 --- a/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/policy/service/EdcPolicyDefinitionServiceTest.java +++ b/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/policy/service/EdcPolicyDefinitionServiceTest.java @@ -22,6 +22,8 @@ import static org.assertj.core.api.Assertions.assertThat; import static org.junit.jupiter.api.Assertions.assertThrows; import static org.mockito.ArgumentMatchers.any; +import static org.mockito.ArgumentMatchers.anyString; +import static org.mockito.ArgumentMatchers.eq; import static org.mockito.Mockito.doThrow; import static org.mockito.Mockito.times; import static org.mockito.Mockito.verify; @@ -34,6 +36,7 @@ import org.eclipse.tractusx.irs.edc.client.policy.model.exception.CreateEdcPolicyDefinitionException; import org.eclipse.tractusx.irs.edc.client.policy.model.exception.DeleteEdcPolicyDefinitionException; import org.eclipse.tractusx.irs.edc.client.policy.model.exception.EdcPolicyDefinitionAlreadyExists; +import org.eclipse.tractusx.irs.edc.client.policy.model.exception.GetEdcPolicyDefinitionException; import org.json.JSONException; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; @@ -127,6 +130,42 @@ void givenPolicy_WhenCreateAccessPolicy_ThenCreateIt() throws CreateEdcPolicyDef assertThat(result).isNotBlank(); } + @Test + void givenPolicyName_WhenGetPolicy_ThenExists() throws GetEdcPolicyDefinitionException { + // given + when(edcConfiguration.getControlplane()).thenReturn(controlplaneConfig); + when(controlplaneConfig.getEndpoint()).thenReturn(endpointConfig); + String policyName = "policyName"; + when(endpointConfig.getPolicyDefinition()).thenReturn("/management/v2/policydefinitions" + "/" + policyName); + + ResponseEntity responseEntity = ResponseEntity.ok("Mocked response"); + when(restTemplate.getForEntity(anyString(), eq(String.class))).thenReturn(responseEntity); + + // when + boolean result = service.policyDefinitionExists(policyName); + + // then + assertThat(result).isTrue(); + } + + @Test + void givenPolicyName_WhenGetPolicy_ThenNotExists() throws GetEdcPolicyDefinitionException { + // given + when(edcConfiguration.getControlplane()).thenReturn(controlplaneConfig); + when(controlplaneConfig.getEndpoint()).thenReturn(endpointConfig); + String policyName = "policyName"; + when(endpointConfig.getPolicyDefinition()).thenReturn("/management/v2/policydefinitions" + "/" + policyName); + + ResponseEntity responseEntity = ResponseEntity.badRequest().build(); + when(restTemplate.getForEntity(anyString(), eq(String.class))).thenReturn(responseEntity); + + // when + boolean result = service.policyDefinitionExists(policyName); + + // then + assertThat(result).isFalse(); + } + @Test void givenCreatePolicy_whenConflict_thenReturnExstingPolicyId() throws CreateEdcPolicyDefinitionException { // given @@ -136,15 +175,7 @@ void givenCreatePolicy_whenConflict_thenReturnExstingPolicyId() throws CreateEdc final String policyName = "policyName"; when(restTemplate.postForEntity(any(String.class), any(EdcCreatePolicyDefinitionRequest.class), any())).thenThrow( - HttpClientErrorException.create( - "Surprise", - HttpStatus.CONFLICT, - "", - null, - null, - null - ) - ); + HttpClientErrorException.create("Surprise", HttpStatus.CONFLICT, "", null, null, null)); // when/then assertThrows(EdcPolicyDefinitionAlreadyExists.class, () -> service.createAccessPolicy(policyName)); @@ -171,14 +202,8 @@ void givenCreatePolicy_whenRestClientException_thenThrowException() { when(endpointConfig.getPolicyDefinition()).thenReturn("/management/v2/policydefinitions"); String policyName = "policyName"; when(restTemplate.postForEntity(any(String.class), any(EdcCreatePolicyDefinitionRequest.class), - any())).thenThrow(HttpClientErrorException.create( - "Surprise", - HttpStatus.EARLY_HINTS, - "", - null, - null, - null - )); + any())).thenThrow( + HttpClientErrorException.create("Surprise", HttpStatus.EARLY_HINTS, "", null, null, null)); assertThrows(CreateEdcPolicyDefinitionException.class, () -> service.createAccessPolicy(policyName)); } @@ -193,8 +218,7 @@ void givenDeletePolicy_whenRestClientException_thenThrowException() { doThrow(new RestClientException("Surprise")).when(restTemplate).delete(any(String.class)); // when/then - assertThrows(DeleteEdcPolicyDefinitionException.class, - () -> service.deleteAccessPolicy(policyName)); + assertThrows(DeleteEdcPolicyDefinitionException.class, () -> service.deleteAccessPolicy(policyName)); } @Test From 9a8710678ae7b23dfc2adc71463c631bfb4f62c6 Mon Sep 17 00:00:00 2001 From: Maximilian Wesener Date: Fri, 22 Mar 2024 10:37:59 +0100 Subject: [PATCH 10/41] feat(decentral-client-library):596-tracex add functionallity which checks if an policy already exists. --- .../edc/client/policy/service/EdcPolicyDefinitionService.java | 1 + .../client/policy/service/EdcPolicyDefinitionServiceTest.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/policy/service/EdcPolicyDefinitionService.java b/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/policy/service/EdcPolicyDefinitionService.java index 6eb6f35496..80f88f547f 100644 --- a/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/policy/service/EdcPolicyDefinitionService.java +++ b/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/policy/service/EdcPolicyDefinitionService.java @@ -114,6 +114,7 @@ public boolean policyDefinitionExists(final String policyName) throws GetEdcPoli } catch (HttpClientErrorException e) { if (e.getStatusCode().value() == HttpStatus.NOT_FOUND.value()) { log.info(String.format("Policy with id %s not found within the edc", policyName)); + return false; } else { throw new GetEdcPolicyDefinitionException(e); } diff --git a/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/policy/service/EdcPolicyDefinitionServiceTest.java b/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/policy/service/EdcPolicyDefinitionServiceTest.java index 5d36e0b1f1..66d59878c9 100644 --- a/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/policy/service/EdcPolicyDefinitionServiceTest.java +++ b/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/policy/service/EdcPolicyDefinitionServiceTest.java @@ -156,7 +156,7 @@ void givenPolicyName_WhenGetPolicy_ThenNotExists() throws GetEdcPolicyDefinition String policyName = "policyName"; when(endpointConfig.getPolicyDefinition()).thenReturn("/management/v2/policydefinitions" + "/" + policyName); - ResponseEntity responseEntity = ResponseEntity.badRequest().build(); + ResponseEntity responseEntity = ResponseEntity.notFound().build(); when(restTemplate.getForEntity(anyString(), eq(String.class))).thenReturn(responseEntity); // when From 264aa777f8a3a2c78b517bf0519f72806d89561b Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Fri, 22 Mar 2024 12:33:41 +0100 Subject: [PATCH 11/41] chore(charts): [#489] Fix numeric sorting by version --- .github/workflows/helm-chart-release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/helm-chart-release.yaml b/.github/workflows/helm-chart-release.yaml index 85a0c8f004..d852fbfea6 100644 --- a/.github/workflows/helm-chart-release.yaml +++ b/.github/workflows/helm-chart-release.yaml @@ -25,7 +25,7 @@ jobs: - name: Get helm charts latest tag version id: step1 run: | - latestVersion=$(git tag | grep "irs-helm-[1-9]" | tail -1) + latestVersion=$(git tag | grep "irs-helm-[1-9]" | sort -V | tail -1) echo "::set-output name=latest_version::$latestVersion" echo "Exported $latestVersion latest helm charts version" - name: Get helm charts current version From bb134cce28513b1be9a8f32fda20889b4c7c25f1 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Fri, 22 Mar 2024 12:37:37 +0100 Subject: [PATCH 12/41] chore(charts): [#489] Fixes (tag also changes to "item-relationship-service-x.x.x", therefore we need to rename this too) --- .github/workflows/helm-chart-release.yaml | 6 +++--- CONTRIBUTING.md | 17 +++++++++-------- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/workflows/helm-chart-release.yaml b/.github/workflows/helm-chart-release.yaml index d852fbfea6..1ad1bbde98 100644 --- a/.github/workflows/helm-chart-release.yaml +++ b/.github/workflows/helm-chart-release.yaml @@ -25,13 +25,13 @@ jobs: - name: Get helm charts latest tag version id: step1 run: | - latestVersion=$(git tag | grep "irs-helm-[1-9]" | sort -V | tail -1) + latestVersion=$(git tag | grep "item-relationship-service-[1-9]" | sort -V | tail -1) echo "::set-output name=latest_version::$latestVersion" echo "Exported $latestVersion latest helm charts version" - name: Get helm charts current version id: step2 run: | - chartVersion=irs-helm-$(cat ./charts/item-relationship-service/Chart.yaml | grep "version:" | head -1 | cut -d ":" -d " " -f2) + chartVersion=item-relationship-service-$(cat ./charts/item-relationship-service/Chart.yaml | grep "version:" | head -1 | cut -d ":" -d " " -f2) echo "::set-output name=current_version::$chartVersion" echo "Exported $chartVersion helm charts version" @@ -73,7 +73,7 @@ jobs: run: | touch CHANGELOG-temp.md - currentVersionNumber=$(echo ${{ needs.get-helm-charts-versions-irs.outputs.current_version }} | sed -e "s/^irs-helm-//" ) + currentVersionNumber=$(echo ${{ needs.get-helm-charts-versions-irs.outputs.current_version }} | sed -e "s/^item-relationship-service-//" ) echo currentVersionNumber=$currentVersionNumber sed -n -e '/## \['"${currentVersionNumber}"'\]/,/## \[/ p' CHANGELOG.md | head -n -1 | tail -n +2 >> CHANGELOG-temp.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a67b14f33f..6d1692a3fa 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -177,20 +177,21 @@ https://github.com/google/google-java-format/blob/master/README.md#intellij-jre- - Add the corresponding GitHub issue numbers to each entry if missing. 3. Update [COMPATIBILITY_MATRIX.md](COMPATIBILITY_MATRIX.md). 4. Update IRS API version in IrsApplication class and irs-api.yaml -5. Create pull request from [release preparation branch to main](https://github.com/eclipse-tractusx/item-relationship-service/compare/chore/prepare-release-x.x.x) and merge to main. -6. Create Git tag for the desired release version `git tag x.x.x` - (note: the _irs-helm_ tag will be created automatically by the GitHub workflow based on the version in the _irs-helm_ changelog). -7. Push Git tag to repository `git push origin x.x.x` (this will trigger the GitHub release workflow). -8. Wait for release workflow to complete. -9. Merge the automatically opened PR by GitHub actions bot. -10. Notify about the release in IRS Matrix Chat using the following template: +5. Create pull request from [release preparation branch to main](https://github.com/eclipse-tractusx/item-relationship-service/compare/chore/prepare-release-x.x.x) +6. Merge this pull request to main. +7. Create Git tag for the desired release version `git tag x.x.x` + (note: the _item-relationship-service_ tag will be created automatically by the GitHub workflow based on the version in the [helm chart changelog](charts/item-relationship-service/CHANGELOG.md)). +8. Push Git tag to repository `git push origin x.x.x` (this will trigger the GitHub release workflow). +9. Wait for release workflow to complete. +10. Merge the pull request that was automatically opened by GitHub actions bot. +11. Notify about the release in IRS Matrix Chat using the following template: > **IRS Release x.x.x** > > IRS version x.x.x is released. > > https://github.com/eclipse-tractusx/item-relationship-service/releases/tag/x.x.x
- > https://github.com/eclipse-tractusx/item-relationship-service/releases/tag/irs-helm-y.y.y
+ > https://github.com/eclipse-tractusx/item-relationship-service/releases/tag/item-relationship-service-y.y.y
> **Full Changelog:** https://github.com/eclipse-tractusx/item-relationship-service/compare/w.w.w...x.x.x _(replace x.x.x with IRS version to release, y.y.y with IRS helm version to release and w.w.w with previous IRS version)_ From ff53d662d5022ea5f3125eb783dbfe06d06a0dd4 Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Fri, 22 Mar 2024 14:10:58 +0100 Subject: [PATCH 13/41] feat(impl):[#359] update registry impl for lookup --- .../DecentralDigitalTwinRegistryClient.java | 41 +++++++++++++++---- .../DecentralDigitalTwinRegistryService.java | 4 +- ...ecentralDigitalTwinRegistryClientTest.java | 3 +- ...centralDigitalTwinRegistryServiceTest.java | 8 ++-- 4 files changed, 42 insertions(+), 14 deletions(-) diff --git a/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryClient.java b/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryClient.java index 1c7a7ed5b3..3fdd35a78b 100644 --- a/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryClient.java +++ b/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryClient.java @@ -23,16 +23,21 @@ ********************************************************************************/ package org.eclipse.tractusx.irs.registryclient.decentral; +import java.io.ByteArrayOutputStream; +import java.io.IOException; import java.nio.charset.StandardCharsets; import java.util.Base64; import java.util.List; import java.util.Map; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.ObjectWriter; +import com.fasterxml.jackson.databind.SerializationFeature; import io.github.resilience4j.retry.annotation.Retry; import org.eclipse.edc.spi.types.domain.edr.EndpointDataReference; import org.eclipse.tractusx.irs.component.assetadministrationshell.AssetAdministrationShellDescriptor; import org.eclipse.tractusx.irs.component.assetadministrationshell.IdentifierKeyValuePair; -import org.eclipse.tractusx.irs.data.StringMapper; import org.springframework.beans.factory.annotation.Value; import org.springframework.http.HttpEntity; import org.springframework.http.HttpHeaders; @@ -49,6 +54,14 @@ public class DecentralDigitalTwinRegistryClient { private static final String PLACEHOLDER_AAS_IDENTIFIER = "aasIdentifier"; private static final String PLACEHOLDER_ASSET_IDS = "assetIds"; + private static final ObjectWriter WRITER; + static { + final ObjectMapper MAPPER = new ObjectMapper(); + MAPPER.enable(SerializationFeature.INDENT_OUTPUT); + MAPPER.setSerializationInclusion(JsonInclude.Include.NON_NULL); + WRITER = MAPPER.writer(); + } + private final RestTemplate edcRestTemplate; private final String shellDescriptorTemplate; private final String lookupShellsTemplate; @@ -61,10 +74,6 @@ public DecentralDigitalTwinRegistryClient(final RestTemplate edcRestTemplate, this.lookupShellsTemplate = lookupShellsTemplate; } - private static String encodeWithBase64(final String aasIdentifier) { - return Base64.getEncoder().encodeToString(aasIdentifier.getBytes(StandardCharsets.UTF_8)); - } - @Retry(name = "registry") public AssetAdministrationShellDescriptor getAssetAdministrationShellDescriptor( final EndpointDataReference endpointDataReference, final String aasIdentifier) { @@ -78,14 +87,32 @@ public AssetAdministrationShellDescriptor getAssetAdministrationShellDescriptor( @Retry(name = "registry") public LookupShellsResponse getAllAssetAdministrationShellIdsByAssetLink( - final EndpointDataReference endpointDataReference, final List assetIds) { + final EndpointDataReference endpointDataReference, final IdentifierKeyValuePair assetIds) { final String shellLookupEndpoint = endpointDataReference.getEndpoint() + lookupShellsTemplate; final UriComponentsBuilder uriBuilder = UriComponentsBuilder.fromUriString(shellLookupEndpoint); - uriBuilder.uriVariables(Map.of(PLACEHOLDER_ASSET_IDS, StringMapper.mapToString(assetIds))); + uriBuilder.uriVariables(Map.of(PLACEHOLDER_ASSET_IDS, encodeWithBase64(assetIds))); return edcRestTemplate.exchange(uriBuilder.build().toUri(), HttpMethod.GET, new HttpEntity<>(null, headers(endpointDataReference)), LookupShellsResponse.class).getBody(); } + private static String encodeWithBase64(final String aasIdentifier) { + return Base64.getEncoder().encodeToString(aasIdentifier.getBytes(StandardCharsets.UTF_8)); + } + + private static String encodeWithBase64(final IdentifierKeyValuePair assetIds) { + return Base64.getEncoder().encodeToString(serialize(assetIds)); + } + + private static byte[] serialize(final IdentifierKeyValuePair assetIds) { + final ByteArrayOutputStream os = new ByteArrayOutputStream(); + try { + WRITER.writeValue(os, assetIds); + return os.toByteArray(); + } catch (final IOException e) { + return new byte[0]; + } + } + private HttpHeaders headers(final EndpointDataReference dataReference) { final HttpHeaders headers = new HttpHeaders(); headers.setAccept(List.of(MediaType.APPLICATION_JSON)); diff --git a/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryService.java b/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryService.java index ab5b05e50c..a627ce034a 100644 --- a/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryService.java +++ b/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryService.java @@ -250,7 +250,7 @@ private String mapToShellId(final EndpointDataReference endpointDataReference, f // Try to map the provided ID to the corresponding asset administration shell ID final var mappingResultStream = decentralDigitalTwinRegistryClient.getAllAssetAdministrationShellIdsByAssetLink( - endpointDataReference, List.of(identifierKeyValuePair)).getResult().stream(); + endpointDataReference, identifierKeyValuePair).getResult().stream(); // Special scenario: Multiple DTs with the same globalAssetId in one DTR, see: // docs/arc42/cross-cutting/discovery-DTR--multiple-DTs-with-the-same-globalAssedId-in-one-DTR.puml @@ -340,7 +340,7 @@ private Collection lookupShellIds(final String bpn, final EndpointDataRe try { return decentralDigitalTwinRegistryClient.getAllAssetAdministrationShellIdsByAssetLink( endpointDataReference, - List.of(IdentifierKeyValuePair.builder().name("manufacturerId").value(bpn).build())).getResult(); + IdentifierKeyValuePair.builder().name("manufacturerId").value(bpn).build()).getResult(); } finally { watch.stop(); log.info(TOOK_MS, watch.getLastTaskName(), watch.getLastTaskTimeMillis()); diff --git a/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryClientTest.java b/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryClientTest.java index 823fa5a175..b9599b181f 100644 --- a/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryClientTest.java +++ b/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryClientTest.java @@ -13,6 +13,7 @@ import org.eclipse.edc.spi.types.domain.edr.EndpointDataReference; import org.eclipse.tractusx.irs.component.assetadministrationshell.AssetAdministrationShellDescriptor; +import org.eclipse.tractusx.irs.component.assetadministrationshell.IdentifierKeyValuePair; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.springframework.http.HttpMethod; @@ -59,7 +60,7 @@ void shouldCallForAllAssetAdministrationShellIdsByAssetLink() { ResponseEntity.of(Optional.of(LookupShellsResponse.builder().result(Collections.emptyList()).build()))); // when - client.getAllAssetAdministrationShellIdsByAssetLink(endpointDataReference, new ArrayList<>()); + client.getAllAssetAdministrationShellIdsByAssetLink(endpointDataReference, IdentifierKeyValuePair.builder().build()); // then verify(restTemplate).exchange(any(), eq(HttpMethod.GET), any(), eq(LookupShellsResponse.class)); diff --git a/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryServiceTest.java b/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryServiceTest.java index a2c2dace14..7e48e9a91f 100644 --- a/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryServiceTest.java +++ b/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryServiceTest.java @@ -103,7 +103,7 @@ void shouldReturnExpectedShell() throws RegistryServiceException { endpointDataRefFutures); when(decentralDigitalTwinRegistryClient.getAllAssetAdministrationShellIdsByAssetLink(any(), - anyList())).thenReturn(lookupShellsResponse); + any(IdentifierKeyValuePair.class))).thenReturn(lookupShellsResponse); when(decentralDigitalTwinRegistryClient.getAssetAdministrationShellDescriptor(any(), any())).thenReturn( expectedShell); @@ -132,7 +132,7 @@ void whenInterruptedExceptionOccurs() throws ExecutionException, InterruptedExce connectorEndpoints)).thenReturn(dataRefFutures); when(decentralDigitalTwinRegistryClient.getAllAssetAdministrationShellIdsByAssetLink(any(), - anyList())).thenReturn(lookupShellsResponse); + any(IdentifierKeyValuePair.class))).thenReturn(lookupShellsResponse); when(decentralDigitalTwinRegistryClient.getAssetAdministrationShellDescriptor(any(), any())).thenReturn( shellDescriptor(emptyList())); @@ -166,7 +166,7 @@ void whenExecutionExceptionOccurs() { connectorEndpoints)).thenReturn(dataRefFutures); when(decentralDigitalTwinRegistryClient.getAllAssetAdministrationShellIdsByAssetLink(any(), - anyList())).thenReturn(lookupShellsResponse); + any(IdentifierKeyValuePair.class))).thenReturn(lookupShellsResponse); when(decentralDigitalTwinRegistryClient.getAssetAdministrationShellDescriptor(any(), any())).thenReturn( shellDescriptor(emptyList())); @@ -230,7 +230,7 @@ void shouldReturnTheExpectedGlobalAssetId() throws RegistryServiceException { when(endpointDataForConnectorsService.createFindEndpointDataForConnectorsFutures(anyList())).thenReturn( dataRefFutures); when(decentralDigitalTwinRegistryClient.getAllAssetAdministrationShellIdsByAssetLink(any(), - anyList())).thenReturn(lookupShellsResponse); + any(IdentifierKeyValuePair.class))).thenReturn(lookupShellsResponse); when(decentralDigitalTwinRegistryClient.getAssetAdministrationShellDescriptor(any(), any())).thenReturn( expectedShell); From 4a71ae88f7cc9db4b981e039409ab4304e82b50d Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Fri, 22 Mar 2024 14:16:13 +0100 Subject: [PATCH 14/41] feat(impl):[XXX] update sb to fix security CVE's --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c7194ecc39..74d3eefb49 100644 --- a/pom.xml +++ b/pom.xml @@ -76,7 +76,7 @@ 1.7.0-SNAPSHOT - 3.1.9 + 3.1.10 2.2.0 1.11.4 1.9.0 From 5c605dfc33a3200b792b16182748e75034ea5d8d Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Fri, 22 Mar 2024 14:23:59 +0100 Subject: [PATCH 15/41] feat(impl):[XXX] update sb to fix secur --- DEPENDENCIES | 92 ++++++++++++++++++++++++++-------------------------- 1 file changed, 46 insertions(+), 46 deletions(-) diff --git a/DEPENDENCIES b/DEPENDENCIES index d9c7829148..422feee65b 100644 --- a/DEPENDENCIES +++ b/DEPENDENCIES @@ -125,9 +125,9 @@ maven/mavencentral/io.github.resilience4j/resilience4j-retry/2.1.0, Apache-2.0, maven/mavencentral/io.github.resilience4j/resilience4j-spring-boot3/2.1.0, Apache-2.0, approved, #10913 maven/mavencentral/io.github.resilience4j/resilience4j-spring6/2.1.0, Apache-2.0, approved, #10915 maven/mavencentral/io.github.resilience4j/resilience4j-timelimiter/2.1.0, Apache-2.0, approved, #10166 -maven/mavencentral/io.micrometer/micrometer-commons/1.11.9, Apache-2.0 AND (Apache-2.0 AND MIT), approved, #9243 -maven/mavencentral/io.micrometer/micrometer-core/1.11.9, Apache-2.0 AND (Apache-2.0 AND MIT), approved, #9238 -maven/mavencentral/io.micrometer/micrometer-observation/1.11.9, Apache-2.0, approved, #9242 +maven/mavencentral/io.micrometer/micrometer-commons/1.11.10, Apache-2.0 AND (Apache-2.0 AND MIT), approved, #9243 +maven/mavencentral/io.micrometer/micrometer-core/1.11.10, Apache-2.0 AND (Apache-2.0 AND MIT), approved, #9238 +maven/mavencentral/io.micrometer/micrometer-observation/1.11.10, Apache-2.0, approved, #9242 maven/mavencentral/io.micrometer/micrometer-registry-prometheus/1.11.4, Apache-2.0, approved, #9805 maven/mavencentral/io.minio/minio/8.5.6, Apache-2.0, approved, #9097 maven/mavencentral/io.netty.incubator/netty-incubator-transport-classes-io_uring/0.0.21.Final, Apache-2.0, approved, #9622 @@ -174,7 +174,7 @@ maven/mavencentral/io.swagger.core.v3/swagger-annotations-jakarta/2.2.15, Apache maven/mavencentral/io.swagger.core.v3/swagger-annotations/2.2.16, Apache-2.0, approved, #11362 maven/mavencentral/io.swagger.core.v3/swagger-core-jakarta/2.2.15, Apache-2.0, approved, #5929 maven/mavencentral/io.swagger.core.v3/swagger-models-jakarta/2.2.15, Apache-2.0, approved, #5919 -maven/mavencentral/jakarta.activation/jakarta.activation-api/2.1.2, EPL-2.0 OR BSD-3-Clause OR GPL-2.0-only with Classpath-exception-2.0, approved, ee4j.jaf +maven/mavencentral/jakarta.activation/jakarta.activation-api/2.1.3, EPL-2.0 OR BSD-3-Clause OR GPL-2.0-only with Classpath-exception-2.0, approved, ee4j.jaf maven/mavencentral/jakarta.annotation/jakarta.annotation-api/2.1.1, EPL-2.0 OR GPL-2.0-only with Classpath-exception-2.0, approved, ee4j.ca maven/mavencentral/jakarta.inject/jakarta.inject-api/2.0.1, Apache-2.0, approved, ee4j.cdi maven/mavencentral/jakarta.json/jakarta.json-api/2.1.1, EPL-2.0 OR GPL-2.0-only with Classpath-exception-2.0, approved, ee4j.jsonp @@ -183,7 +183,7 @@ maven/mavencentral/jakarta.transaction/jakarta.transaction-api/2.0.0, EPL-2.0 OR maven/mavencentral/jakarta.transaction/jakarta.transaction-api/2.0.1, EPL-2.0 OR GPL-2.0-only with Classpath-exception-2.0, approved, ee4j.jta maven/mavencentral/jakarta.validation/jakarta.validation-api/3.0.2, Apache-2.0, approved, ee4j.validation maven/mavencentral/jakarta.ws.rs/jakarta.ws.rs-api/3.1.0, EPL-2.0 OR GPL-2.0-only with Classpath-exception-2.0, approved, ee4j.rest -maven/mavencentral/jakarta.xml.bind/jakarta.xml.bind-api/4.0.1, BSD-3-Clause, approved, ee4j.jaxb +maven/mavencentral/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2, BSD-3-Clause, approved, ee4j.jaxb maven/mavencentral/javax.jms/javax.jms-api/2.0.1, CDDL-1.1 OR GPL-2.0 WITH Classpath-exception-2.0, approved, #1516 maven/mavencentral/joda-time/joda-time/2.10.2, Apache-2.0, approved, clearlydefined maven/mavencentral/junit/junit/4.13.2, EPL-2.0, approved, CQ23636 @@ -209,9 +209,9 @@ maven/mavencentral/net.sf.saxon/Saxon-HE/10.6, MPL-2.0 AND W3C, approved, #7945 maven/mavencentral/org.apache.commons/commons-compress/1.24.0, Apache-2.0 AND BSD-3-Clause AND bzip2-1.0.6 AND LicenseRef-Public-Domain, approved, #10368 maven/mavencentral/org.apache.commons/commons-lang3/3.12.0, Apache-2.0, approved, clearlydefined maven/mavencentral/org.apache.commons/commons-pool2/2.11.1, Apache-2.0, approved, CQ23795 -maven/mavencentral/org.apache.groovy/groovy-json/4.0.18, Apache-2.0, approved, #7411 -maven/mavencentral/org.apache.groovy/groovy-xml/4.0.18, Apache-2.0, approved, #10179 -maven/mavencentral/org.apache.groovy/groovy/4.0.18, Apache-2.0 AND BSD-3-Clause AND MIT, approved, #1742 +maven/mavencentral/org.apache.groovy/groovy-json/4.0.20, Apache-2.0, approved, #7411 +maven/mavencentral/org.apache.groovy/groovy-xml/4.0.20, Apache-2.0, approved, #10179 +maven/mavencentral/org.apache.groovy/groovy/4.0.20, Apache-2.0 AND BSD-3-Clause AND MIT, approved, #1742 maven/mavencentral/org.apache.httpcomponents/httpclient/4.5.13, Apache-2.0 AND LicenseRef-Public-Domain, approved, CQ23527 maven/mavencentral/org.apache.httpcomponents/httpcore/4.4.16, Apache-2.0, approved, CQ23528 maven/mavencentral/org.apache.httpcomponents/httpmime/4.5.13, Apache-2.0, approved, CQ11718 @@ -426,44 +426,44 @@ maven/mavencentral/org.slf4j/slf4j-api/2.0.12, MIT, approved, #5915 maven/mavencentral/org.springdoc/springdoc-openapi-starter-common/2.2.0, Apache-2.0, approved, clearlydefined maven/mavencentral/org.springdoc/springdoc-openapi-starter-webmvc-api/2.2.0, Apache-2.0, approved, clearlydefined maven/mavencentral/org.springdoc/springdoc-openapi-starter-webmvc-ui/2.2.0, Apache-2.0, approved, clearlydefined -maven/mavencentral/org.springframework.boot/spring-boot-actuator-autoconfigure/3.1.9, Apache-2.0, approved, #9348 -maven/mavencentral/org.springframework.boot/spring-boot-actuator/3.1.9, Apache-2.0, approved, #9342 -maven/mavencentral/org.springframework.boot/spring-boot-autoconfigure/3.1.9, Apache-2.0, approved, #9341 -maven/mavencentral/org.springframework.boot/spring-boot-configuration-metadata/3.1.9, Apache-2.0, approved, #11032 -maven/mavencentral/org.springframework.boot/spring-boot-properties-migrator/3.1.9, Apache-2.0, approved, #10675 -maven/mavencentral/org.springframework.boot/spring-boot-starter-actuator/3.1.9, Apache-2.0, approved, #9344 -maven/mavencentral/org.springframework.boot/spring-boot-starter-aop/3.1.9, Apache-2.0, approved, #9338 -maven/mavencentral/org.springframework.boot/spring-boot-starter-json/3.1.9, Apache-2.0, approved, #9336 -maven/mavencentral/org.springframework.boot/spring-boot-starter-log4j2/3.1.9, Apache-2.0, approved, #8800 -maven/mavencentral/org.springframework.boot/spring-boot-starter-logging/3.1.9, Apache-2.0, approved, #9343 -maven/mavencentral/org.springframework.boot/spring-boot-starter-oauth2-client/3.1.9, Apache-2.0, approved, #8806 -maven/mavencentral/org.springframework.boot/spring-boot-starter-security/3.1.9, Apache-2.0, approved, #9337 -maven/mavencentral/org.springframework.boot/spring-boot-starter-test/3.1.9, Apache-2.0, approved, #9353 -maven/mavencentral/org.springframework.boot/spring-boot-starter-tomcat/3.1.9, Apache-2.0, approved, #9351 -maven/mavencentral/org.springframework.boot/spring-boot-starter-validation/3.1.9, Apache-2.0, approved, #9335 -maven/mavencentral/org.springframework.boot/spring-boot-starter-web/3.1.9, Apache-2.0, approved, #9347 -maven/mavencentral/org.springframework.boot/spring-boot-starter/3.1.9, Apache-2.0, approved, #9349 -maven/mavencentral/org.springframework.boot/spring-boot-test-autoconfigure/3.1.9, Apache-2.0, approved, #9339 -maven/mavencentral/org.springframework.boot/spring-boot-test/3.1.9, Apache-2.0, approved, #9346 -maven/mavencentral/org.springframework.boot/spring-boot/3.1.9, Apache-2.0, approved, #9352 -maven/mavencentral/org.springframework.data/spring-data-commons/3.1.9, Apache-2.0, approved, #8805 -maven/mavencentral/org.springframework.security/spring-security-config/6.1.7, Apache-2.0, approved, #9736 -maven/mavencentral/org.springframework.security/spring-security-core/6.1.7, Apache-2.0, approved, #9801 -maven/mavencentral/org.springframework.security/spring-security-crypto/6.1.7, Apache-2.0 AND ISC, approved, #9735 -maven/mavencentral/org.springframework.security/spring-security-oauth2-client/6.1.7, Apache-2.0, approved, #9740 -maven/mavencentral/org.springframework.security/spring-security-oauth2-core/6.1.7, Apache-2.0, approved, #9741 -maven/mavencentral/org.springframework.security/spring-security-oauth2-jose/6.1.7, Apache-2.0, approved, #9345 -maven/mavencentral/org.springframework.security/spring-security-test/6.1.7, Apache-2.0, approved, #10674 -maven/mavencentral/org.springframework.security/spring-security-web/6.1.7, Apache-2.0, approved, #9800 -maven/mavencentral/org.springframework/spring-aop/6.0.17, Apache-2.0, approved, #5940 -maven/mavencentral/org.springframework/spring-beans/6.0.17, Apache-2.0, approved, #5937 -maven/mavencentral/org.springframework/spring-context/6.0.17, Apache-2.0, approved, #5936 -maven/mavencentral/org.springframework/spring-core/6.0.17, Apache-2.0 AND BSD-3-Clause, approved, #5948 -maven/mavencentral/org.springframework/spring-expression/6.0.17, Apache-2.0, approved, #3284 -maven/mavencentral/org.springframework/spring-jcl/6.0.17, Apache-2.0, approved, #3283 -maven/mavencentral/org.springframework/spring-test/6.0.17, Apache-2.0, approved, #7003 -maven/mavencentral/org.springframework/spring-web/6.0.17, Apache-2.0, approved, #5942 -maven/mavencentral/org.springframework/spring-webmvc/6.0.17, Apache-2.0, approved, #5944 +maven/mavencentral/org.springframework.boot/spring-boot-actuator-autoconfigure/3.1.10, Apache-2.0, approved, #9348 +maven/mavencentral/org.springframework.boot/spring-boot-actuator/3.1.10, Apache-2.0, approved, #9342 +maven/mavencentral/org.springframework.boot/spring-boot-autoconfigure/3.1.10, Apache-2.0, approved, #9341 +maven/mavencentral/org.springframework.boot/spring-boot-configuration-metadata/3.1.10, Apache-2.0, approved, #11032 +maven/mavencentral/org.springframework.boot/spring-boot-properties-migrator/3.1.10, Apache-2.0, approved, #10675 +maven/mavencentral/org.springframework.boot/spring-boot-starter-actuator/3.1.10, Apache-2.0, approved, #9344 +maven/mavencentral/org.springframework.boot/spring-boot-starter-aop/3.1.10, Apache-2.0, approved, #9338 +maven/mavencentral/org.springframework.boot/spring-boot-starter-json/3.1.10, Apache-2.0, approved, #9336 +maven/mavencentral/org.springframework.boot/spring-boot-starter-log4j2/3.1.10, Apache-2.0, approved, #8800 +maven/mavencentral/org.springframework.boot/spring-boot-starter-logging/3.1.10, Apache-2.0, approved, #9343 +maven/mavencentral/org.springframework.boot/spring-boot-starter-oauth2-client/3.1.10, Apache-2.0, approved, #8806 +maven/mavencentral/org.springframework.boot/spring-boot-starter-security/3.1.10, Apache-2.0, approved, #9337 +maven/mavencentral/org.springframework.boot/spring-boot-starter-test/3.1.10, Apache-2.0, approved, #9353 +maven/mavencentral/org.springframework.boot/spring-boot-starter-tomcat/3.1.10, Apache-2.0, approved, #9351 +maven/mavencentral/org.springframework.boot/spring-boot-starter-validation/3.1.10, Apache-2.0, approved, #9335 +maven/mavencentral/org.springframework.boot/spring-boot-starter-web/3.1.10, Apache-2.0, approved, #9347 +maven/mavencentral/org.springframework.boot/spring-boot-starter/3.1.10, Apache-2.0, approved, #9349 +maven/mavencentral/org.springframework.boot/spring-boot-test-autoconfigure/3.1.10, Apache-2.0, approved, #9339 +maven/mavencentral/org.springframework.boot/spring-boot-test/3.1.10, Apache-2.0, approved, #9346 +maven/mavencentral/org.springframework.boot/spring-boot/3.1.10, Apache-2.0, approved, #9352 +maven/mavencentral/org.springframework.data/spring-data-commons/3.1.10, Apache-2.0, approved, #8805 +maven/mavencentral/org.springframework.security/spring-security-config/6.1.8, Apache-2.0, approved, #9736 +maven/mavencentral/org.springframework.security/spring-security-core/6.1.8, Apache-2.0, approved, #9801 +maven/mavencentral/org.springframework.security/spring-security-crypto/6.1.8, Apache-2.0 AND ISC, approved, #9735 +maven/mavencentral/org.springframework.security/spring-security-oauth2-client/6.1.8, Apache-2.0, approved, #9740 +maven/mavencentral/org.springframework.security/spring-security-oauth2-core/6.1.8, Apache-2.0, approved, #9741 +maven/mavencentral/org.springframework.security/spring-security-oauth2-jose/6.1.8, Apache-2.0, approved, #9345 +maven/mavencentral/org.springframework.security/spring-security-test/6.1.8, Apache-2.0, approved, #10674 +maven/mavencentral/org.springframework.security/spring-security-web/6.1.8, Apache-2.0, approved, #9800 +maven/mavencentral/org.springframework/spring-aop/6.0.18, Apache-2.0, approved, #5940 +maven/mavencentral/org.springframework/spring-beans/6.0.18, Apache-2.0, approved, #5937 +maven/mavencentral/org.springframework/spring-context/6.0.18, Apache-2.0, approved, #5936 +maven/mavencentral/org.springframework/spring-core/6.0.18, Apache-2.0 AND BSD-3-Clause, approved, #5948 +maven/mavencentral/org.springframework/spring-expression/6.0.18, Apache-2.0, approved, #3284 +maven/mavencentral/org.springframework/spring-jcl/6.0.18, Apache-2.0, approved, #3283 +maven/mavencentral/org.springframework/spring-test/6.0.18, Apache-2.0, approved, #7003 +maven/mavencentral/org.springframework/spring-web/6.0.18, Apache-2.0, approved, #5942 +maven/mavencentral/org.springframework/spring-webmvc/6.0.18, Apache-2.0, approved, #5944 maven/mavencentral/org.testcontainers/junit-jupiter/1.18.3, MIT, approved, #7941 maven/mavencentral/org.testcontainers/junit-jupiter/1.19.1, MIT, approved, #10344 maven/mavencentral/org.testcontainers/testcontainers/1.18.3, MIT, approved, #7938 From f67923ce0cce5f29886e137ae3cba9fb3f5eb26e Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Fri, 22 Mar 2024 14:25:25 +0100 Subject: [PATCH 16/41] feat(impl):[#359] fix pmd --- .../decentral/DecentralDigitalTwinRegistryClient.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryClient.java b/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryClient.java index 3fdd35a78b..eb01f48b46 100644 --- a/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryClient.java +++ b/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryClient.java @@ -56,10 +56,10 @@ public class DecentralDigitalTwinRegistryClient { private static final ObjectWriter WRITER; static { - final ObjectMapper MAPPER = new ObjectMapper(); - MAPPER.enable(SerializationFeature.INDENT_OUTPUT); - MAPPER.setSerializationInclusion(JsonInclude.Include.NON_NULL); - WRITER = MAPPER.writer(); + final ObjectMapper mapper = new ObjectMapper(); + mapper.enable(SerializationFeature.INDENT_OUTPUT); + mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); + WRITER = mapper.writer(); } private final RestTemplate edcRestTemplate; From 5017c8c6451a1e703db07e71911b3cdf9a2d148c Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Fri, 22 Mar 2024 14:29:04 +0100 Subject: [PATCH 17/41] feat(impl):[#359] fix pmd --- .../decentral/DecentralDigitalTwinRegistryClient.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryClient.java b/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryClient.java index eb01f48b46..6247c5e2be 100644 --- a/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryClient.java +++ b/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryClient.java @@ -104,10 +104,10 @@ private static String encodeWithBase64(final IdentifierKeyValuePair assetIds) { } private static byte[] serialize(final IdentifierKeyValuePair assetIds) { - final ByteArrayOutputStream os = new ByteArrayOutputStream(); + final ByteArrayOutputStream stream = new ByteArrayOutputStream(); try { - WRITER.writeValue(os, assetIds); - return os.toByteArray(); + WRITER.writeValue(stream, assetIds); + return stream.toByteArray(); } catch (final IOException e) { return new byte[0]; } From 56f8ebd71d7a090e05680f99c0e932fa06675ea0 Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Mon, 25 Mar 2024 10:46:41 +0100 Subject: [PATCH 18/41] feat(impl):[#359] support new encoded endpoint --- CHANGELOG.md | 5 ++-- .../irs/IrsWireMockIntegrationTest.java | 6 +++-- .../eclipse/tractusx/irs/WiremockSupport.java | 27 +++++++++++++++++++ 3 files changed, 34 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6512090241..3fd8c5411e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,12 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 _**For better traceability add the corresponding GitHub issue number in each changelog entry, please.**_ ## [Unreleased] +### Changed +- IRS now supports Asset Administration Shell v3.1 - adjusted lookup shells endpoint changes (assetIds query param is encoded) ## [4.8.0] - 2024-03-18 ### Changed - Improved maintainability in EdcSubmodelClientImpl by reduced method visibility and better naming (in context of #448). -- EdcPolicyDefinitionService, EdcContractDefinitionService and EdcAssetService return throw AlreadyExist exceptions when Conflict is returned from - EDC +- EdcPolicyDefinitionService, EdcContractDefinitionService and EdcAssetService return throw AlreadyExist exceptions when Conflict is returned from EDC - Added AssetAdministrationShellDescriptor specificAssetIds support for externalSubjectId required for data provisioning - Registering a job - aspects array is now accepting full urn of aspect model instead of name only, eg. 'urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt' instead 'SingleLevelBomAsBuilt'. #439 - Changed the version of irs-registry-client from 1.6.0-SNAPSHOT to 1.6.0 diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/IrsWireMockIntegrationTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/IrsWireMockIntegrationTest.java index 185d74a8b4..4ff1a14453 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/IrsWireMockIntegrationTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/IrsWireMockIntegrationTest.java @@ -20,12 +20,14 @@ package org.eclipse.tractusx.irs; import static com.github.tomakehurst.wiremock.client.WireMock.containing; +import static com.github.tomakehurst.wiremock.client.WireMock.equalTo; import static com.github.tomakehurst.wiremock.client.WireMock.postRequestedFor; import static com.github.tomakehurst.wiremock.client.WireMock.stubFor; import static com.github.tomakehurst.wiremock.client.WireMock.urlPathEqualTo; import static com.github.tomakehurst.wiremock.client.WireMock.verify; import static org.assertj.core.api.Assertions.assertThat; import static org.eclipse.tractusx.irs.WiremockSupport.createEndpointDataReference; +import static org.eclipse.tractusx.irs.WiremockSupport.encodedAssetIds; import static org.eclipse.tractusx.irs.WiremockSupport.randomUUID; import static org.eclipse.tractusx.irs.testing.wiremock.DiscoveryServiceWiremockSupport.DISCOVERY_FINDER_PATH; import static org.eclipse.tractusx.irs.testing.wiremock.DiscoveryServiceWiremockSupport.DISCOVERY_FINDER_URL; @@ -158,7 +160,7 @@ void shouldStartApplicationAndCollectSemanticModels() throws SchemaNotFoundExcep void shouldStopJobAfterDepthIsReached() { // Arrange final String globalAssetIdLevel1 = "globalAssetId"; - final String globalAssetIdLevel2 = "urn:uuid:6d505432-8b31-4966-9514-4b753372683f"; + final String globalAssetIdLevel2 = "urn:uuid:7e4541ea-bb0f-464c-8cb3-021abccbfaf5"; WiremockSupport.successfulSemanticModelRequest(); WiremockSupport.successfulSemanticHubRequests(); @@ -297,7 +299,7 @@ private void successfulRegistryAndDataRequest(final String globalAssetId, final final String registryEdcAssetId = "registry-asset"; successfulNegotiation(registryEdcAssetId); stubFor(getLookupShells200(PUBLIC_LOOKUP_SHELLS_PATH, List.of(shellId)).withQueryParam("assetIds", - containing(globalAssetId))); + equalTo(encodedAssetIds(globalAssetId)))); stubFor(getShellDescriptor200(PUBLIC_SHELL_DESCRIPTORS_PATH + WiremockSupport.encodedId(shellId), bpn, submodelDescriptors, globalAssetId, shellId, idShort)); successfulNegotiation(edcAssetId); diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/WiremockSupport.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/WiremockSupport.java index 5146e44de5..cd65821189 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/WiremockSupport.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/WiremockSupport.java @@ -34,15 +34,21 @@ import static org.eclipse.tractusx.irs.util.TestMother.batchAspectName; import static org.eclipse.tractusx.irs.util.TestMother.singleLevelBomAsBuiltAspectName; +import java.io.ByteArrayOutputStream; +import java.io.IOException; import java.nio.charset.StandardCharsets; import java.util.Base64; import java.util.List; import java.util.Map; import java.util.UUID; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.SerializationFeature; import org.eclipse.edc.spi.types.domain.edr.EndpointDataReference; import org.eclipse.tractusx.irs.component.PartChainIdentificationKey; import org.eclipse.tractusx.irs.component.RegisterJob; +import org.eclipse.tractusx.irs.component.assetadministrationshell.IdentifierKeyValuePair; import org.eclipse.tractusx.irs.component.enums.Direction; import org.eclipse.tractusx.irs.data.StringMapper; import org.eclipse.tractusx.irs.edc.client.configuration.JsonLdConfiguration; @@ -97,6 +103,27 @@ static String encodedId(final String shellId) { return encodeBase64String(shellId.getBytes(StandardCharsets.UTF_8)); } + static String encodedAssetIds(final String assetIds) { + final IdentifierKeyValuePair globalAssetId = IdentifierKeyValuePair.builder() + .name("globalAssetId") + .value(assetIds) + .build(); + return Base64.getEncoder().encodeToString(serialize(globalAssetId)); + } + + private static byte[] serialize(final IdentifierKeyValuePair assetIds) { + final ByteArrayOutputStream stream = new ByteArrayOutputStream(); + try { + final ObjectMapper mapper = new ObjectMapper(); + mapper.enable(SerializationFeature.INDENT_OUTPUT); + mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); + mapper.writeValue(stream, assetIds); + return stream.toByteArray(); + } catch (final IOException e) { + return new byte[0]; + } + } + static void verifyDiscoveryCalls(final int times) { verify(times, postRequestedFor(urlPathEqualTo(DiscoveryServiceWiremockSupport.DISCOVERY_FINDER_PATH))); verify(times, postRequestedFor(urlPathEqualTo(DiscoveryServiceWiremockSupport.EDC_DISCOVERY_PATH))); From 81cd1ffdda33a4fd0bd2c4c9665e49ce02b406b1 Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Wed, 27 Mar 2024 11:39:14 +0100 Subject: [PATCH 19/41] feat(impl):[#359] update changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fd8c5411e..2b5c235751 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ _**For better traceability add the corresponding GitHub issue number in each cha ## [Unreleased] ### Changed -- IRS now supports Asset Administration Shell v3.1 - adjusted lookup shells endpoint changes (assetIds query param is encoded) +- IRS now supports Asset Administration Shell v3.1 - adjusted lookup shells endpoint changes (assetIds query param is encoded). #359 ## [4.8.0] - 2024-03-18 ### Changed From ca34021981bc298b2fc8436800d899a2a37de0d0 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Wed, 27 Mar 2024 11:52:02 +0100 Subject: [PATCH 20/41] chore(changelog): [#359] Fixed sentence in CHANGELOG.md --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 09d085ef40..6b4e047183 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,8 @@ _**For better traceability add the corresponding GitHub issue number in each cha ## [4.8.0] - 2024-03-18 ### Changed - Improved maintainability in EdcSubmodelClientImpl by reduced method visibility and better naming (in context of #448). -- EdcPolicyDefinitionService, EdcContractDefinitionService and EdcAssetService return throw AlreadyExist exceptions when Conflict is returned from EDC +- EdcPolicyDefinitionService, EdcContractDefinitionService and EdcAssetService throw AlreadyExist exceptions when + conflict is returned from EDC - Added AssetAdministrationShellDescriptor specificAssetIds support for externalSubjectId required for data provisioning - Registering a job - aspects array is now accepting full urn of aspect model instead of name only, eg. 'urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt' instead 'SingleLevelBomAsBuilt'. #439 - Changed the version of irs-registry-client from 1.6.0-SNAPSHOT to 1.6.0 From 7a990b25ca696bf0f76e5a8ee3f3308bb3c53d6d Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Wed, 27 Mar 2024 13:12:02 +0100 Subject: [PATCH 21/41] feat(impl):[#359] add new helper class --- .../eclipse/tractusx/irs/WiremockSupport.java | 21 +------- .../DecentralDigitalTwinRegistryClient.java | 33 +++--------- .../util/SerializationHelper.java | 52 +++++++++++++++++++ 3 files changed, 60 insertions(+), 46 deletions(-) create mode 100644 irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/util/SerializationHelper.java diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/WiremockSupport.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/WiremockSupport.java index cd65821189..33fe3a36c4 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/WiremockSupport.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/WiremockSupport.java @@ -34,17 +34,12 @@ import static org.eclipse.tractusx.irs.util.TestMother.batchAspectName; import static org.eclipse.tractusx.irs.util.TestMother.singleLevelBomAsBuiltAspectName; -import java.io.ByteArrayOutputStream; -import java.io.IOException; import java.nio.charset.StandardCharsets; import java.util.Base64; import java.util.List; import java.util.Map; import java.util.UUID; -import com.fasterxml.jackson.annotation.JsonInclude; -import com.fasterxml.jackson.databind.ObjectMapper; -import com.fasterxml.jackson.databind.SerializationFeature; import org.eclipse.edc.spi.types.domain.edr.EndpointDataReference; import org.eclipse.tractusx.irs.component.PartChainIdentificationKey; import org.eclipse.tractusx.irs.component.RegisterJob; @@ -53,6 +48,7 @@ import org.eclipse.tractusx.irs.data.StringMapper; import org.eclipse.tractusx.irs.edc.client.configuration.JsonLdConfiguration; import org.eclipse.tractusx.irs.edc.client.model.EDRAuthCode; +import org.eclipse.tractusx.irs.registryclient.util.SerializationHelper; import org.eclipse.tractusx.irs.semanticshub.SemanticHubWireMockSupport; import org.eclipse.tractusx.irs.testing.wiremock.DiscoveryServiceWiremockSupport; import org.eclipse.tractusx.irs.testing.wiremock.DtrWiremockSupport; @@ -108,20 +104,7 @@ static String encodedAssetIds(final String assetIds) { .name("globalAssetId") .value(assetIds) .build(); - return Base64.getEncoder().encodeToString(serialize(globalAssetId)); - } - - private static byte[] serialize(final IdentifierKeyValuePair assetIds) { - final ByteArrayOutputStream stream = new ByteArrayOutputStream(); - try { - final ObjectMapper mapper = new ObjectMapper(); - mapper.enable(SerializationFeature.INDENT_OUTPUT); - mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); - mapper.writeValue(stream, assetIds); - return stream.toByteArray(); - } catch (final IOException e) { - return new byte[0]; - } + return Base64.getEncoder().encodeToString(new SerializationHelper().serialize(globalAssetId)); } static void verifyDiscoveryCalls(final int times) { diff --git a/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryClient.java b/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryClient.java index 6247c5e2be..2ee2e339f9 100644 --- a/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryClient.java +++ b/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/decentral/DecentralDigitalTwinRegistryClient.java @@ -23,21 +23,16 @@ ********************************************************************************/ package org.eclipse.tractusx.irs.registryclient.decentral; -import java.io.ByteArrayOutputStream; -import java.io.IOException; import java.nio.charset.StandardCharsets; import java.util.Base64; import java.util.List; import java.util.Map; -import com.fasterxml.jackson.annotation.JsonInclude; -import com.fasterxml.jackson.databind.ObjectMapper; -import com.fasterxml.jackson.databind.ObjectWriter; -import com.fasterxml.jackson.databind.SerializationFeature; import io.github.resilience4j.retry.annotation.Retry; import org.eclipse.edc.spi.types.domain.edr.EndpointDataReference; import org.eclipse.tractusx.irs.component.assetadministrationshell.AssetAdministrationShellDescriptor; import org.eclipse.tractusx.irs.component.assetadministrationshell.IdentifierKeyValuePair; +import org.eclipse.tractusx.irs.registryclient.util.SerializationHelper; import org.springframework.beans.factory.annotation.Value; import org.springframework.http.HttpEntity; import org.springframework.http.HttpHeaders; @@ -54,18 +49,12 @@ public class DecentralDigitalTwinRegistryClient { private static final String PLACEHOLDER_AAS_IDENTIFIER = "aasIdentifier"; private static final String PLACEHOLDER_ASSET_IDS = "assetIds"; - private static final ObjectWriter WRITER; - static { - final ObjectMapper mapper = new ObjectMapper(); - mapper.enable(SerializationFeature.INDENT_OUTPUT); - mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); - WRITER = mapper.writer(); - } - private final RestTemplate edcRestTemplate; private final String shellDescriptorTemplate; private final String lookupShellsTemplate; + private final SerializationHelper serializationHelper = new SerializationHelper(); + public DecentralDigitalTwinRegistryClient(final RestTemplate edcRestTemplate, @Value("${digitalTwinRegistry.shellDescriptorTemplate:}") final String shellDescriptorTemplate, @Value("${digitalTwinRegistry.lookupShellsTemplate:}") final String lookupShellsTemplate) { @@ -95,22 +84,12 @@ public LookupShellsResponse getAllAssetAdministrationShellIdsByAssetLink( new HttpEntity<>(null, headers(endpointDataReference)), LookupShellsResponse.class).getBody(); } - private static String encodeWithBase64(final String aasIdentifier) { + private String encodeWithBase64(final String aasIdentifier) { return Base64.getEncoder().encodeToString(aasIdentifier.getBytes(StandardCharsets.UTF_8)); } - private static String encodeWithBase64(final IdentifierKeyValuePair assetIds) { - return Base64.getEncoder().encodeToString(serialize(assetIds)); - } - - private static byte[] serialize(final IdentifierKeyValuePair assetIds) { - final ByteArrayOutputStream stream = new ByteArrayOutputStream(); - try { - WRITER.writeValue(stream, assetIds); - return stream.toByteArray(); - } catch (final IOException e) { - return new byte[0]; - } + private String encodeWithBase64(final IdentifierKeyValuePair assetIds) { + return Base64.getEncoder().encodeToString(serializationHelper.serialize(assetIds)); } private HttpHeaders headers(final EndpointDataReference dataReference) { diff --git a/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/util/SerializationHelper.java b/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/util/SerializationHelper.java new file mode 100644 index 0000000000..ee05e8593b --- /dev/null +++ b/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/util/SerializationHelper.java @@ -0,0 +1,52 @@ +/******************************************************************************** + * Copyright (c) 2022,2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) + * Copyright (c) 2021,2024 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Apache License, Version 2.0 which is available at + * https://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * SPDX-License-Identifier: Apache-2.0 + ********************************************************************************/ +package org.eclipse.tractusx.irs.registryclient.util; + +import java.io.ByteArrayOutputStream; +import java.io.IOException; + +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.ObjectWriter; +import com.fasterxml.jackson.databind.SerializationFeature; + +/** + * Serializer helper + */ +public class SerializationHelper { + + private static final ObjectWriter WRITER; + static { + final ObjectMapper mapper = new ObjectMapper(); + mapper.enable(SerializationFeature.INDENT_OUTPUT); + mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); + WRITER = mapper.writer(); + } + + public byte[] serialize(final Object object) { + final ByteArrayOutputStream stream = new ByteArrayOutputStream(); + try { + WRITER.writeValue(stream, object); + return stream.toByteArray(); + } catch (final IOException e) { + return new byte[0]; + } + } +} From f1053321f87eeb2aaaa21723c39c9161e7bef0cc Mon Sep 17 00:00:00 2001 From: ds-mwesener Date: Thu, 28 Mar 2024 07:32:20 +0000 Subject: [PATCH 22/41] chore(dependencies): Update DEPENDENCIES --- DEPENDENCIES | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/DEPENDENCIES b/DEPENDENCIES index 422feee65b..56bc53a9d5 100644 --- a/DEPENDENCIES +++ b/DEPENDENCIES @@ -226,7 +226,7 @@ maven/mavencentral/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.19, Apach maven/mavencentral/org.apiguardian/apiguardian-api/1.1.2, Apache-2.0, approved, clearlydefined maven/mavencentral/org.aspectj/aspectjweaver/1.9.21, Apache-2.0 AND BSD-3-Clause AND EPL-1.0 AND BSD-3-Clause AND Apache-1.1, approved, #7695 maven/mavencentral/org.assertj/assertj-core/3.24.2, Apache-2.0, approved, #6161 -maven/mavencentral/org.awaitility/awaitility/4.2.0, Apache-2.0, approved, clearlydefined +maven/mavencentral/org.awaitility/awaitility/4.2.0, Apache-2.0, approved, #14178 maven/mavencentral/org.bouncycastle/bcpkix-jdk18on/1.76, MIT, approved, #9825 maven/mavencentral/org.bouncycastle/bcprov-jdk18on/1.74, MIT AND CC0-1.0, approved, #9091 maven/mavencentral/org.bouncycastle/bcprov-jdk18on/1.76, MIT AND CC0-1.0, approved, #9827 @@ -370,11 +370,11 @@ maven/mavencentral/org.javassist/javassist/3.29.2-GA, Apache-2.0 AND LGPL-2.1-or maven/mavencentral/org.jboss.logging/jboss-logging/3.4.3.Final, Apache-2.0, approved, CQ21255 maven/mavencentral/org.jboss.logging/jboss-logging/3.5.3.Final, Apache-2.0, approved, #9471 maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib-common/1.8.22, Apache-2.0, approved, #8910 -maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib-common/1.9.0, Apache-2.0, approved, clearlydefined +maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib-common/1.9.0, Apache-2.0, approved, #14186 maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib-jdk7/1.8.22, Apache-2.0, approved, #8807 -maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib-jdk7/1.9.0, Apache-2.0, approved, clearlydefined +maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib-jdk7/1.9.0, None, restricted, #14188 maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib-jdk8/1.8.22, Apache-2.0, approved, #8875 -maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib-jdk8/1.9.0, Apache-2.0, approved, clearlydefined +maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib-jdk8/1.9.0, None, restricted, #14185 maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib/1.6.20, Apache-2.0, approved, clearlydefined maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib/1.8.22, Apache-2.0, approved, #8865 maven/mavencentral/org.jetbrains/annotations/13.0, Apache-2.0, approved, clearlydefined From 7d3f25f15f238b791c6f432972ae2022a093dad0 Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Thu, 28 Mar 2024 10:07:46 +0100 Subject: [PATCH 23/41] feat(impl):[#488] new datasets --- .../irs/semanticshub/SemanticsHubClient.java | 10 +- .../irs/IrsWireMockIntegrationTest.java | 5 +- .../SemanticHubWireMockSupport.java | 8 +- .../semanticshub/SemanticHubWiremockTest.java | 8 +- ...rsItemGraphQueryServiceSpringBootTest.java | 6 +- .../eclipse/tractusx/irs/util/TestMother.java | 20 +- .../singleLevelBomAsBuilt-1.json | 4 +- .../singleLevelBomAsBuilt-2.json | 2 +- .../semantichub/all-models-page-IT.json | 322 +- .../semantichub/batch-2.0.0-schema.json | 143 - .../semantichub/batch-3.0.0-schema.json | 216 + .../singleLevelBomAsBuilt-2.0.0-schema.json | 102 - .../singleLevelBomAsBuilt-3.0.0-schema.json | 151 + .../irs/edc/client/SingleLevelBomAsBuilt.java | 3 + .../irs/edc/client/EdcSubmodelClientTest.java | 23 +- .../client/SubmodelTestdataCreatorTest.java | 4 +- .../irs/data/CxTestDataContainer.java | 18 +- .../main/resources/test_data/CX_Testdata.json | 322243 ++++----------- ...setAdministrationShellTestdataCreator.java | 16 +- ...dministrationShellTestdataCreatorTest.java | 6 +- ...CentralDigitalTwinRegistryServiceTest.java | 8 +- ...a_v1.7.0_AsBuilt-not-accepted-policy.json} | 246 +- ...v1.7.0_AsBuilt-reduced-with-Specified.json | 185016 +++++++++ 23 files changed, 273443 insertions(+), 235137 deletions(-) delete mode 100644 irs-api/src/test/resources/__files/semantichub/batch-2.0.0-schema.json create mode 100644 irs-api/src/test/resources/__files/semantichub/batch-3.0.0-schema.json delete mode 100644 irs-api/src/test/resources/__files/semantichub/singleLevelBomAsBuilt-2.0.0-schema.json create mode 100644 irs-api/src/test/resources/__files/semantichub/singleLevelBomAsBuilt-3.0.0-schema.json rename local/testing/testdata/{CX_Testdata_v1.6.2_AsBuilt-not-accepted-policy.json => CX_Testdata_v1.7.0_AsBuilt-not-accepted-policy.json} (68%) create mode 100644 local/testing/testdata/CX_Testdata_v1.7.0_AsBuilt-reduced-with-Specified.json diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/semanticshub/SemanticsHubClient.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/semanticshub/SemanticsHubClient.java index c284e3a68e..f376a6e7ac 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/semanticshub/SemanticsHubClient.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/semanticshub/SemanticsHubClient.java @@ -90,13 +90,11 @@ public String getModelJsonSchema(final String urn) { @Override public List getAllAspectModels() { return List.of( - new AspectModel("urn:bamm:io.catenax.serial_part:1.0.1#SerialPart", "1.0.1", + new AspectModel("urn:samm:io.catenax.serial_part:3.0.0#SerialPart", "3.0.0", "SerialPart", MODEL_TYPE, MODEL_STATUS), - new AspectModel("urn:bamm:io.catenax.esr_certificates.esr_certificate:1.0.0#EsrCertificate", "1.0.0", - "EsrCertificate", MODEL_TYPE, MODEL_STATUS), - new AspectModel("urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt", - "2.0.0", "SingleLevelBomAsBuilt", MODEL_TYPE, MODEL_STATUS), - new AspectModel("urn:bamm:io.catenax.part_as_specified:2.0.0#PartAsSpecified", + new AspectModel("urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt", + "3.0.0", "SingleLevelBomAsBuilt", MODEL_TYPE, MODEL_STATUS), + new AspectModel("urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified", "2.0.0", "PartAsSpecified", MODEL_TYPE, MODEL_STATUS), new AspectModel("urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", "1.0.1", "PartAsPlanned", MODEL_TYPE, MODEL_STATUS)); diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/IrsWireMockIntegrationTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/IrsWireMockIntegrationTest.java index 4ff1a14453..efadf045c0 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/IrsWireMockIntegrationTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/IrsWireMockIntegrationTest.java @@ -46,6 +46,7 @@ import static org.eclipse.tractusx.irs.testing.wiremock.SubmodelFacadeWiremockSupport.PATH_NEGOTIATE; import static org.eclipse.tractusx.irs.testing.wiremock.SubmodelFacadeWiremockSupport.PATH_STATE; import static org.eclipse.tractusx.irs.testing.wiremock.SubmodelFacadeWiremockSupport.PATH_TRANSFER; +import static org.eclipse.tractusx.irs.util.TestMother.batchAspectName; import static org.eclipse.tractusx.irs.util.TestMother.singleLevelBomAsBuiltAspectName; import java.time.Duration; @@ -153,7 +154,7 @@ void shouldStartApplicationAndCollectSemanticModels() throws SchemaNotFoundExcep final AspectModels allAspectModels = semanticHubService.getAllAspectModels(); // Assert - assertThat(allAspectModels.models()).hasSize(79); + assertThat(allAspectModels.models()).hasSize(99); } @Test @@ -288,7 +289,7 @@ private void successfulRegistryAndDataRequest(final String globalAssetId, final final String edcAssetId = WiremockSupport.randomUUIDwithPrefix(); final String batch = WiremockSupport.submodelRequest(edcAssetId, "Batch", - "urn:samm:io.catenax.batch:2.0.0#Batch", batchFileName); + batchAspectName, batchFileName); final String singleLevelBomAsBuilt = WiremockSupport.submodelRequest(edcAssetId, "SingleLevelBomAsBuilt", singleLevelBomAsBuiltAspectName, sbomFileName); diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/semanticshub/SemanticHubWireMockSupport.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/semanticshub/SemanticHubWireMockSupport.java index 640755a10e..37f2317ae1 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/semanticshub/SemanticHubWireMockSupport.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/semanticshub/SemanticHubWireMockSupport.java @@ -33,8 +33,8 @@ * WireMock configurations and requests used for testing Semantic Hub fLow. */ public final class SemanticHubWireMockSupport { - public static final String BATCH_URN = "urn:samm:io.catenax.batch:2.0.0%23Batch"; - private static final String SINGLE_LEVEL_BOM_AS_BUILT_URN = "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0%23SingleLevelBomAsBuilt"; + public static final String BATCH_URN = "urn:samm:io.catenax.batch:3.0.0%23Batch"; + private static final String SINGLE_LEVEL_BOM_AS_BUILT_URN = "urn:samm:io.catenax.single_level_bom_as_built:3.0.0%23SingleLevelBomAsBuilt"; public static final String SCHEMA_PATH_PLACEHOLDER = "/models/%s/json-schema"; public static final String SEMANTIC_HUB_SCHEMA_URL = "http://semantic.hub" + SCHEMA_PATH_PLACEHOLDER.formatted("{urn}"); @@ -44,12 +44,12 @@ private SemanticHubWireMockSupport() { } public static void semanticHubWillReturnBatchSchema() { - schemaResponse200(SCHEMA_PATH_PLACEHOLDER.formatted(BATCH_URN), "semantichub/batch-2.0.0-schema.json"); + schemaResponse200(SCHEMA_PATH_PLACEHOLDER.formatted(BATCH_URN), "semantichub/batch-3.0.0-schema.json"); } public static void semanticHubWillReturnSingleLevelBomAsBuiltSchema() { schemaResponse200(SCHEMA_PATH_PLACEHOLDER.formatted(SINGLE_LEVEL_BOM_AS_BUILT_URN), - "semantichub/singleLevelBomAsBuilt-2.0.0-schema.json"); + "semantichub/singleLevelBomAsBuilt-3.0.0-schema.json"); } private static void schemaResponse200(final String urlRegex, final String fileName) { diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/semanticshub/SemanticHubWiremockTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/semanticshub/SemanticHubWiremockTest.java index 6558c3d523..24eb0a734e 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/semanticshub/SemanticHubWiremockTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/semanticshub/SemanticHubWiremockTest.java @@ -84,12 +84,12 @@ void shouldReturnJsonSchema() throws SchemaNotFoundException { semanticHubWillReturnBatchSchema(); // Act - final String modelJsonSchema = semanticsHubFacade.getModelJsonSchema("urn:samm:io.catenax.batch:2.0.0#Batch"); + final String modelJsonSchema = semanticsHubFacade.getModelJsonSchema("urn:samm:io.catenax.batch:3.0.0#Batch"); // Assert - assertThat(modelJsonSchema).contains("urn_samm_io.catenax.batch_2.0.0_CatenaXIdTrait") - .contains("A batch is a quantity of (semi-) finished products or (raw) material"); - SemanticHubWireMockSupport.verifySemanticHubWasCalledForModel("urn:samm:io.catenax.batch:2.0.0%23Batch", 1); + assertThat(modelJsonSchema).contains("urn_samm_io.catenax.shared.uuid_2.0.0_UuidV4Trait") + .contains("A batch is a quantity of(semi-)finished products or(raw)material"); + SemanticHubWireMockSupport.verifySemanticHubWasCalledForModel("urn:samm:io.catenax.batch:3.0.0%23Batch", 1); } @Test diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceSpringBootTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceSpringBootTest.java index 3e287de5b4..582ff5902e 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceSpringBootTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceSpringBootTest.java @@ -134,7 +134,7 @@ void registerJobWithCollectAspectsShouldIncludeSubmodels() throws InvalidSchemaE when(jsonValidatorService.validate(any(), any())).thenReturn(ValidationResult.builder().valid(true).build()); when(connectorEndpointsService.fetchConnectorEndpoints(any())).thenReturn( List.of("https://connector.endpoint.nl")); - final RegisterJob registerJob = registerJob("urn:uuid:8ddd8fe0-1b4f-44b4-90f3-a8f68e551ac7", 100, + final RegisterJob registerJob = registerJob("urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", 100, List.of(serialPartAspectName, productDescriptionAspectName, singleLevelBomAsBuiltAspectName), true, false, Direction.DOWNWARD); when(connectorEndpointsService.fetchConnectorEndpoints(registerJob.getKey().getBpn())).thenReturn( @@ -146,7 +146,7 @@ void registerJobWithCollectAspectsShouldIncludeSubmodels() throws InvalidSchemaE // then given().ignoreException(ResponseStatusException.class) .await() - .atMost(10, TimeUnit.SECONDS) + .atMost(10, TimeUnit.MINUTES) .until(() -> getSubmodelsSize(registeredJob.getId()), greaterThan(0)); } @@ -192,7 +192,7 @@ void registerJobWithDepthShouldBuildTreeUntilGivenDepth() { @Test void registerJobWithUpwardDirectionShouldBuildRelationships() { // given - final RegisterJob registerJob = registerJobWithDirection("urn:uuid:819816fe-7346-49a5-b528-cec5b5367a71", + final RegisterJob registerJob = registerJobWithDirection("urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", Direction.UPWARD); when(connectorEndpointsService.fetchConnectorEndpoints(any())).thenReturn( List.of("http://localhost/discovery")); diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/util/TestMother.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/util/TestMother.java index cb612a7ee7..ebf62140b5 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/util/TestMother.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/util/TestMother.java @@ -71,12 +71,12 @@ */ public class TestMother { - public static final String singleLevelBomAsBuiltAspectName = "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt"; - public static final String singleLevelUsageAsBuiltAspectName = "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt"; - public static final String serialPartAspectName = "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart"; - public static final String batchAspectName = "urn:samm:io.catenax.batch:2.0.0#Batch"; - public static final String materialForRecyclingAspectName = "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling"; - public static final String productDescriptionAspectName = "urn:bamm:io.catenax.vehicle.product_description:2.0.0#ProductDescription"; + public static final String singleLevelBomAsBuiltAspectName = "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt"; + public static final String singleLevelUsageAsBuiltAspectName = "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt"; + public static final String serialPartAspectName = "urn:samm:io.catenax.serial_part:3.0.0#SerialPart"; + public static final String batchAspectName = "urn:samm:io.catenax.batch:3.0.0#Batch"; + public static final String materialForRecyclingAspectName = "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling"; + public static final String productDescriptionAspectName = "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription"; Faker faker = new Faker(); @@ -89,7 +89,7 @@ public static RegisterJob registerJobWithoutDepth() { } public static RegisterJob registerJobWithDepthAndAspect(final Integer depth, final List aspectTypes) { - return registerJob("urn:uuid:8ddd8fe0-1b4f-44b4-90f3-a8f68e551ac7", depth, aspectTypes, false, false, + return registerJob("urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", depth, aspectTypes, false, false, Direction.DOWNWARD); } @@ -98,7 +98,7 @@ public static RegisterJob registerJobWithDirection(final String globalAssetId, f } public static RegisterJob registerJobWithUrl(final String callbackUrl) { - final RegisterJob registerJob = registerJob("urn:uuid:8ddd8fe0-1b4f-44b4-90f3-a8f68e551ac7", 100, List.of(), + final RegisterJob registerJob = registerJob("urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", 100, List.of(), false, false, Direction.DOWNWARD); registerJob.setCallbackUrl(callbackUrl); return registerJob; @@ -106,12 +106,12 @@ public static RegisterJob registerJobWithUrl(final String callbackUrl) { public static RegisterJob registerJobWithDepthAndAspectAndCollectAspects(final Integer depth, final List aspectTypes) { - return registerJob("urn:uuid:8ddd8fe0-1b4f-44b4-90f3-a8f68e551ac7", depth, aspectTypes, true, false, + return registerJob("urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", depth, aspectTypes, true, false, Direction.DOWNWARD); } public static RegisterJob registerJobWithLookupBPNs() { - return registerJob("urn:uuid:8ddd8fe0-1b4f-44b4-90f3-a8f68e551ac7", null, + return registerJob("urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", null, List.of(singleLevelBomAsBuiltAspectName), false, true, Direction.DOWNWARD); } diff --git a/irs-api/src/test/resources/__files/integrationtesting/singleLevelBomAsBuilt-1.json b/irs-api/src/test/resources/__files/integrationtesting/singleLevelBomAsBuilt-1.json index 167a940ce7..c09a93ce25 100644 --- a/irs-api/src/test/resources/__files/integrationtesting/singleLevelBomAsBuilt-1.json +++ b/irs-api/src/test/resources/__files/integrationtesting/singleLevelBomAsBuilt-1.json @@ -4,8 +4,8 @@ { "catenaXId": "urn:uuid:7e4541ea-bb0f-464c-8cb3-021abccbfaf5", "quantity": { - "quantityNumber": 0.2014, - "measurementUnit": "unit:kilogram" + "value": 0.2014, + "unit": "unit:kilogram" }, "hasAlternatives": true, "businessPartner": "BPNL00000000TEST", diff --git a/irs-api/src/test/resources/__files/integrationtesting/singleLevelBomAsBuilt-2.json b/irs-api/src/test/resources/__files/integrationtesting/singleLevelBomAsBuilt-2.json index 594e51a4f2..9889be9e15 100644 --- a/irs-api/src/test/resources/__files/integrationtesting/singleLevelBomAsBuilt-2.json +++ b/irs-api/src/test/resources/__files/integrationtesting/singleLevelBomAsBuilt-2.json @@ -4,7 +4,7 @@ { "catenaXId": "urn:uuid:a314ad6b-77ea-417e-ae2d-193b3e249e99", "quantity": { - "quantityNumber": 0.2014, + "quantityNumber": 0.4014, "measurementUnit": "unit:kilogram" }, "hasAlternatives": true, diff --git a/irs-api/src/test/resources/__files/semantichub/all-models-page-IT.json b/irs-api/src/test/resources/__files/semantichub/all-models-page-IT.json index 482990f61a..de80a4d7ec 100644 --- a/irs-api/src/test/resources/__files/semantichub/all-models-page-IT.json +++ b/irs-api/src/test/resources/__files/semantichub/all-models-page-IT.json @@ -1,12 +1,5 @@ { "items": [ - { - "urn": "urn:bamm:io.catenax.asset_tracker_links:1.0.0#AssetTrackerLinks", - "version": "1.0.0", - "name": "AssetTrackerLinks", - "type": "BAMM", - "status": "RELEASED" - }, { "urn": "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass", "version": "3.0.1", @@ -14,13 +7,6 @@ "type": "BAMM", "status": "RELEASED" }, - { - "urn": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "version": "1.0.1", - "name": "ProductDescription", - "type": "BAMM", - "status": "RELEASED" - }, { "urn": "urn:bamm:io.catenax.bom_as_specified:1.0.0#BomAsSpecified", "version": "1.0.0", @@ -91,20 +77,6 @@ "type": "BAMM", "status": "RELEASED" }, - { - "urn": "urn:bamm:io.catenax.iot_sensor_data:1.0.0#IotSensorData", - "version": "1.0.0", - "name": "IotSensorData", - "type": "BAMM", - "status": "RELEASED" - }, - { - "urn": "urn:bamm:io.catenax.iot_sensor_device_definition:1.0.0#IotSensorDeviceDefinition", - "version": "1.0.0", - "name": "IotSensorDeviceDefinition", - "type": "BAMM", - "status": "RELEASED" - }, { "urn": "urn:bamm:io.catenax.manufactured_parts_quality_information:1.0.0#ManufacturedPartsQualityInformation", "version": "1.0.0", @@ -112,13 +84,6 @@ "type": "BAMM", "status": "RELEASED" }, - { - "urn": "urn:bamm:io.catenax.manufacturing_capability:1.0.0#ManufacturingCapability", - "version": "1.0.0", - "name": "ManufacturingCapability", - "type": "BAMM", - "status": "RELEASED" - }, { "urn": "urn:bamm:io.catenax.market_place_offer:1.2.0#MarketplaceOffer", "version": "1.2.0", @@ -252,13 +217,6 @@ "type": "BAMM", "status": "RELEASED" }, - { - "urn": "urn:bamm:io.catenax.sealant.sealant_pass:1.0.0#SealantPass", - "version": "1.0.0", - "name": "SealantPass", - "type": "BAMM", - "status": "RELEASED" - }, { "urn": "urn:bamm:io.catenax.shared.address_characteristic:1.0.1#AddressAspect", "version": "1.0.1", @@ -322,20 +280,6 @@ "type": "BAMM", "status": "RELEASED" }, - { - "urn": "urn:bamm:io.catenax.time_series_reference:1.0.0#TimeSeriesReference", - "version": "1.0.0", - "name": "TimeSeriesReference", - "type": "BAMM", - "status": "RELEASED" - }, - { - "urn": "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode", - "version": "1.0.0", - "name": "TractionBatteryCode", - "type": "BAMM", - "status": "RELEASED" - }, { "urn": "urn:bamm:io.catenax.user_estimated_loading:1.0.0#UserEstimatedLoading", "version": "1.0.0", @@ -378,6 +322,48 @@ "type": "BAMM", "status": "RELEASED" }, + { + "urn": "urn:samm:io.catenax.asset_tracker_links:2.0.0#AssetTrackerLinks", + "version": "2.0.0", + "name": "AssetTrackerLinks", + "type": "SAMM", + "status": "RELEASED" + }, + { + "urn": "urn:samm:io.catenax.batch:2.0.1#Batch", + "version": "2.0.1", + "name": "Batch", + "type": "SAMM", + "status": "RELEASED" + }, + { + "urn": "urn:samm:io.catenax.batch:3.0.0#Batch", + "version": "3.0.0", + "name": "Batch", + "type": "SAMM", + "status": "RELEASED" + }, + { + "urn": "urn:samm:io.catenax.demand_and_capacity_notification:1.0.0#DemandAndCapacityNotification", + "version": "1.0.0", + "name": "DemandAndCapacityNotification", + "type": "SAMM", + "status": "RELEASED" + }, + { + "urn": "urn:samm:io.catenax.demand_and_capacity_notification:2.0.0#DemandAndCapacityNotification", + "version": "2.0.0", + "name": "DemandAndCapacityNotification", + "type": "SAMM", + "status": "RELEASED" + }, + { + "urn": "urn:samm:io.catenax.early_warning_notification:1.0.0#EarlyWarningNotification", + "version": "1.0.0", + "name": "EarlyWarningNotification", + "type": "SAMM", + "status": "RELEASED" + }, { "urn": "urn:samm:io.catenax.essincident:2.0.0#EssIncident", "version": "2.0.0", @@ -385,6 +371,13 @@ "type": "SAMM", "status": "RELEASED" }, + { + "urn": "urn:samm:io.catenax.failure_pattern:1.0.0#FailurePattern", + "version": "1.0.0", + "name": "FailurePattern", + "type": "SAMM", + "status": "RELEASED" + }, { "urn": "urn:samm:io.catenax.fleet.vehicles:1.0.0#Vehicles", "version": "1.0.0", @@ -392,6 +385,13 @@ "type": "SAMM", "status": "RELEASED" }, + { + "urn": "urn:samm:io.catenax.fleet.vehicles:2.1.0#Vehicles", + "version": "2.1.0", + "name": "Vehicles", + "type": "SAMM", + "status": "RELEASED" + }, { "urn": "urn:samm:io.catenax.id_based_comment:1.0.0#IdBasedComment", "version": "1.0.0", @@ -414,9 +414,30 @@ "status": "RELEASED" }, { - "urn": "urn:samm:io.catenax.manufacturing_capability:2.0.0#ManufacturingCapability", - "version": "2.0.0", - "name": "ManufacturingCapability", + "urn": "urn:samm:io.catenax.id_based_request_for_update:3.0.0#IdBasedRequestForUpdate", + "version": "3.0.0", + "name": "IdBasedRequestForUpdate", + "type": "SAMM", + "status": "RELEASED" + }, + { + "urn": "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart", + "version": "3.0.0", + "name": "JustInSequencePart", + "type": "SAMM", + "status": "RELEASED" + }, + { + "urn": "urn:samm:io.catenax.mandatory_dismantling:1.0.0#MandatoryDismantling", + "version": "1.0.0", + "name": "MandatoryDismantling", + "type": "SAMM", + "status": "RELEASED" + }, + { + "urn": "urn:samm:io.catenax.manufactured_parts_quality_information:2.1.0#ManufacturedPartsQualityInformation", + "version": "2.1.0", + "name": "ManufacturedPartsQualityInformation", "type": "SAMM", "status": "RELEASED" }, @@ -427,6 +448,20 @@ "type": "SAMM", "status": "RELEASED" }, + { + "urn": "urn:samm:io.catenax.packing_list:1.0.0#PackingList", + "version": "1.0.0", + "name": "PackingList", + "type": "SAMM", + "status": "RELEASED" + }, + { + "urn": "urn:samm:io.catenax.part_type_information:1.0.0#PartTypeInformation", + "version": "1.0.0", + "name": "PartTypeInformation", + "type": "SAMM", + "status": "RELEASED" + }, { "urn": "urn:samm:io.catenax.parts_analyses:2.0.0#PartsAnalyses", "version": "2.0.0", @@ -441,6 +476,48 @@ "type": "SAMM", "status": "RELEASED" }, + { + "urn": "urn:samm:io.catenax.planned_production_output:2.0.0#PlannedProductionOutput", + "version": "2.0.0", + "name": "PlannedProductionOutput", + "type": "SAMM", + "status": "RELEASED" + }, + { + "urn": "urn:samm:io.catenax.quality_task_attachment:2.0.0#QualityTaskAttachment", + "version": "2.0.0", + "name": "QualityTaskAttachment", + "type": "SAMM", + "status": "RELEASED" + }, + { + "urn": "urn:samm:io.catenax.refurbishing_certificate:3.0.0#RefurbishingCertificate", + "version": "3.0.0", + "name": "RefurbishingCertificate", + "type": "SAMM", + "status": "RELEASED" + }, + { + "urn": "urn:samm:io.catenax.remanufacturing_certificate:3.0.0#RemanufacturingCertificate", + "version": "3.0.0", + "name": "RemanufacturingCertificate", + "type": "SAMM", + "status": "RELEASED" + }, + { + "urn": "urn:samm:io.catenax.repair_certificate:1.0.0#RepairCertificate", + "version": "1.0.0", + "name": "RepairCertificate", + "type": "SAMM", + "status": "RELEASED" + }, + { + "urn": "urn:samm:io.catenax.reuse_certificate:3.0.0#ReuseCertificate", + "version": "3.0.0", + "name": "ReuseCertificate", + "type": "SAMM", + "status": "RELEASED" + }, { "urn": "urn:samm:io.catenax.secondary_material_content:1.0.0#SecondaryMaterialContent", "version": "1.0.0", @@ -448,6 +525,13 @@ "type": "SAMM", "status": "RELEASED" }, + { + "urn": "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", + "version": "3.0.0", + "name": "SerialPart", + "type": "SAMM", + "status": "RELEASED" + }, { "urn": "urn:samm:io.catenax.shared.address_characteristic:3.0.0#AddressAspect", "version": "3.0.0", @@ -455,6 +539,13 @@ "type": "SAMM", "status": "RELEASED" }, + { + "urn": "urn:samm:io.catenax.shared.address_characteristic:4.0.0#AddressAspect", + "version": "4.0.0", + "name": "AddressAspect", + "type": "SAMM", + "status": "RELEASED" + }, { "urn": "urn:samm:io.catenax.shared.business_partner_number:1.0.0#BusinessPartnerNumber", "version": "1.0.0", @@ -462,6 +553,13 @@ "type": "SAMM", "status": "RELEASED" }, + { + "urn": "urn:samm:io.catenax.shared.business_partner_number:2.0.0#BusinessPartnerNumber", + "version": "2.0.0", + "name": "BusinessPartnerNumber", + "type": "SAMM", + "status": "RELEASED" + }, { "urn": "urn:samm:io.catenax.shared.contact_information:3.0.0#ContactInformation", "version": "3.0.0", @@ -469,6 +567,34 @@ "type": "SAMM", "status": "RELEASED" }, + { + "urn": "urn:samm:io.catenax.shared.contact_information:4.0.0#ContactInformation", + "version": "4.0.0", + "name": "ContactInformation", + "type": "SAMM", + "status": "RELEASED" + }, + { + "urn": "urn:samm:io.catenax.shared.message_header:2.0.0#MessageHeaderAspect", + "version": "2.0.0", + "name": "MessageHeaderAspect", + "type": "SAMM", + "status": "RELEASED" + }, + { + "urn": "urn:samm:io.catenax.shared.message_header:3.0.0#MessageHeaderAspect", + "version": "3.0.0", + "name": "MessageHeaderAspect", + "type": "SAMM", + "status": "RELEASED" + }, + { + "urn": "urn:samm:io.catenax.shared.part_classification:1.0.0#PartClassification", + "version": "1.0.0", + "name": "PartClassification", + "type": "SAMM", + "status": "RELEASED" + }, { "urn": "urn:samm:io.catenax.shared.part_site_information_as_built:1.0.0#PartSiteInformationAsBuilt", "version": "1.0.0", @@ -476,6 +602,20 @@ "type": "SAMM", "status": "RELEASED" }, + { + "urn": "urn:samm:io.catenax.shared.part_site_information_as_built:2.0.0#PartSiteInformationAsBuilt", + "version": "2.0.0", + "name": "PartSiteInformationAsBuilt", + "type": "SAMM", + "status": "RELEASED" + }, + { + "urn": "urn:samm:io.catenax.shared.physical_dimension:3.0.0#PhysicalDimensions", + "version": "3.0.0", + "name": "PhysicalDimensions", + "type": "SAMM", + "status": "RELEASED" + }, { "urn": "urn:samm:io.catenax.shared.quantity:1.0.0#Quantity", "version": "1.0.0", @@ -483,6 +623,13 @@ "type": "SAMM", "status": "RELEASED" }, + { + "urn": "urn:samm:io.catenax.shared.quantity:2.0.0#Quantity", + "version": "2.0.0", + "name": "Quantity", + "type": "SAMM", + "status": "RELEASED" + }, { "urn": "urn:samm:io.catenax.shared.recycling_strategy_certificate:2.0.0#RecyclingStrategyCertificate", "version": "2.0.0", @@ -491,23 +638,30 @@ "status": "RELEASED" }, { - "urn": "urn:samm:io.catenax.shared.secondary_material_content:1.0.0#SecondaryMaterialContent", - "version": "1.0.0", - "name": "SecondaryMaterialContent", + "urn": "urn:samm:io.catenax.shared.recycling_strategy_certificate:3.0.0#RecyclingStrategyCertificate", + "version": "3.0.0", + "name": "RecyclingStrategyCertificate", "type": "SAMM", "status": "RELEASED" }, { - "urn": "urn:samm:io.catenax.shared.shopfloor_information_types:1.0.0#ShopfloorInformationTypes", - "version": "1.0.0", + "urn": "urn:samm:io.catenax.shared.shopfloor_information_types:2.0.0#ShopfloorInformationTypes", + "version": "2.0.0", "name": "ShopfloorInformationTypes", "type": "SAMM", "status": "RELEASED" }, { - "urn": "urn:samm:io.catenax.shared.uuid:1.0.0#Uuid", - "version": "1.0.0", - "name": "Uuid", + "urn": "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt", + "version": "3.0.0", + "name": "SingleLevelBomAsBuilt", + "type": "SAMM", + "status": "RELEASED" + }, + { + "urn": "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned", + "version": "3.0.0", + "name": "SingleLevelBomAsPlanned", "type": "SAMM", "status": "RELEASED" }, @@ -519,43 +673,29 @@ "status": "RELEASED" }, { - "urn": "urn:samm:io.catenax.vehicle.product_description:3.0.0#ProductDescription", + "urn": "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt", "version": "3.0.0", - "name": "ProductDescription", + "name": "SingleLevelUsageAsBuilt", "type": "SAMM", "status": "RELEASED" }, { - "urn": "urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt", - "version": "1.0.0", - "name": "SingleLevelBomAsBuilt", - "type": "BAMM", - "status": "DEPRECATED" - }, - { - "urn": "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt", + "urn": "urn:samm:io.catenax.single_level_usage_as_planned:2.0.0#SingleLevelUsageAsPlanned", "version": "2.0.0", - "name": "SingleLevelBomAsBuilt", - "type": "BAMM", + "name": "SingleLevelUsageAsPlanned", + "type": "SAMM", "status": "RELEASED" }, { - "urn": "urn:samm:io.catenax.batch:2.0.0#Batch", + "urn": "urn:samm:io.catenax.traction_battery_code:2.0.0#TractionBatteryCode", "version": "2.0.0", - "name": "Batch", + "name": "TractionBatteryCode", "type": "SAMM", - "status": "DEPRECATED" - }, - { - "urn": "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart", - "version": "1.0.1", - "name": "SerialPart", - "type": "BAMM", - "status": "DEPRECATED" + "status": "RELEASED" } ], - "totalItems": 78, + "totalItems": 99, "currentPage": 0, "totalPages": 1, - "itemCount": 78 + "itemCount": 99 } \ No newline at end of file diff --git a/irs-api/src/test/resources/__files/semantichub/batch-2.0.0-schema.json b/irs-api/src/test/resources/__files/semantichub/batch-2.0.0-schema.json deleted file mode 100644 index 4ff694cd76..0000000000 --- a/irs-api/src/test/resources/__files/semantichub/batch-2.0.0-schema.json +++ /dev/null @@ -1,143 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-04/schema", - "description": "A batch is a quantity of (semi-) finished products or (raw) material product that have been produced under the same circumstances (e.g. same production location), as specified groups or amounts, within a certain time frame. Every batch can differ in the number or amount of products. Different batches can have varied specifications, e.g., different colors. A batch is identified via a Batch ID.", - "type": "object", - "components": { - "schemas": { - "urn_samm_io.catenax.batch_2.0.0_CatenaXIdTrait": { - "type": "string", - "description": "The provided regular expression ensures that the UUID is composed of five groups of characters separated by hyphens, in the form 8-4-4-4-12 for a total of 36 characters (32 hexadecimal characters and 4 hyphens), optionally prefixed by \"urn:uuid:\" to make it an IRI.", - "pattern": "(^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$)|(^urn:uuid:[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$)" - }, - "urn_samm_io.catenax.batch_2.0.0_KeyTrait": { - "type": "string", - "description": "Constraint that ensures that the predefined keys are used.", - "pattern": "^(manufacturerId|batchId)$" - }, - "urn_samm_io.catenax.batch_2.0.0_ValueCharacteristic": { - "type": "string", - "description": "The value of an identifier." - }, - "urn_samm_io.catenax.batch_2.0.0_KeyValueList": { - "description": "A list of key value pairs for local identifiers, which are composed of a key and a corresponding value.", - "type": "object", - "properties": { - "key": { - "description": "The key of a local identifier.", - "$ref": "#/components/schemas/urn_samm_io.catenax.batch_2.0.0_KeyTrait" - }, - "value": { - "description": "The value of an identifier.", - "$ref": "#/components/schemas/urn_samm_io.catenax.batch_2.0.0_ValueCharacteristic" - } - }, - "required": [ - "key", - "value" - ] - }, - "urn_samm_io.catenax.batch_2.0.0_LocalIdentifierCharacteristic": { - "description": "A batch may have multiple attributes, which uniquely identify that batch in a specific dataspace (e.g. the manufacturer`s dataspace)", - "type": "array", - "items": { - "$ref": "#/components/schemas/urn_samm_io.catenax.batch_2.0.0_KeyValueList" - }, - "uniqueItems": true - }, - "urn_samm_org.eclipse.esmf.samm_characteristic_2.1.0_Timestamp": { - "type": "string", - "pattern": "-?([1-9][0-9]{3,}|0[0-9]{3})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])T(([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9](\\.[0-9]+)?|(24:00:00(\\.0+)?))(Z|(\\+|-)((0[0-9]|1[0-3]):[0-5][0-9]|14:00))?", - "description": "Describes a Property which contains the date and time with an optional timezone." - }, - "urn_samm_io.catenax.batch_2.0.0_ProductionCountryCodeTrait": { - "type": "string", - "description": "Regular Expression that ensures a three-letter code", - "pattern": "^[A-Z]{3}$" - }, - "urn_samm_io.catenax.batch_2.0.0_ManufacturingCharacteristic": { - "description": "Characteristic to describe manufacturing related data", - "type": "object", - "properties": { - "date": { - "description": "Timestamp of the manufacturing date as the final step in production process (e.g. final quality check, ready-for-shipment event)", - "$ref": "#/components/schemas/urn_samm_org.eclipse.esmf.samm_characteristic_2.1.0_Timestamp" - }, - "country": { - "description": "Country code where the part was manufactured", - "$ref": "#/components/schemas/urn_samm_io.catenax.batch_2.0.0_ProductionCountryCodeTrait" - } - }, - "required": [ - "date" - ] - }, - "urn_samm_io.catenax.batch_2.0.0_PartIdCharacteristic": { - "type": "string", - "description": "The part ID is a multi-character string, ususally assigned by an ERP system" - }, - "urn_samm_io.catenax.batch_2.0.0_PartNameCharacteristic": { - "type": "string", - "description": "Part Name in string format from the respective system in the value chain" - }, - "urn_samm_io.catenax.batch_2.0.0_ClassificationCharacteristic": { - "type": "string", - "description": "A part type must be placed into one of the following classes: 'component', 'product', 'software', 'assembly', 'tool', or 'raw material'.", - "enum": [ - "product", - "raw material", - "software", - "assembly", - "tool", - "component" - ] - }, - "urn_samm_io.catenax.batch_2.0.0_PartTypeInformationCharacteristic": { - "description": "The characteristics of the part type", - "type": "object", - "properties": { - "manufacturerPartId": { - "description": "Part ID as assigned by the manufacturer of the part. The Part ID identifies the part (as designed) in the manufacturer`s dataspace. The Part ID does not reference a specific instance of a part and thus should not be confused with the serial number or batch number.", - "$ref": "#/components/schemas/urn_samm_io.catenax.batch_2.0.0_PartIdCharacteristic" - }, - "nameAtManufacturer": { - "description": "Name of the part as assigned by the manufacturer", - "$ref": "#/components/schemas/urn_samm_io.catenax.batch_2.0.0_PartNameCharacteristic" - }, - "classification": { - "description": "The classification of the part type according to STEP standard definition", - "$ref": "#/components/schemas/urn_samm_io.catenax.batch_2.0.0_ClassificationCharacteristic" - } - }, - "required": [ - "manufacturerPartId", - "nameAtManufacturer", - "classification" - ] - } - } - }, - "properties": { - "catenaXId": { - "description": "The fully anonymous Catena-X ID of the batch, valid for the Catena-X dataspace.", - "$ref": "#/components/schemas/urn_samm_io.catenax.batch_2.0.0_CatenaXIdTrait" - }, - "localIdentifiers": { - "description": "A local identifier enables identification of a part in a specific dataspace, but is not unique in Catena-X dataspace. Multiple local identifiers may exist.", - "$ref": "#/components/schemas/urn_samm_io.catenax.batch_2.0.0_LocalIdentifierCharacteristic" - }, - "manufacturingInformation": { - "description": "Information from manufacturing process, such as manufacturing date and manufacturing country", - "$ref": "#/components/schemas/urn_samm_io.catenax.batch_2.0.0_ManufacturingCharacteristic" - }, - "partTypeInformation": { - "description": "The part type of which the batch has been instantiated of.", - "$ref": "#/components/schemas/urn_samm_io.catenax.batch_2.0.0_PartTypeInformationCharacteristic" - } - }, - "required": [ - "catenaXId", - "localIdentifiers", - "manufacturingInformation", - "partTypeInformation" - ] -} \ No newline at end of file diff --git a/irs-api/src/test/resources/__files/semantichub/batch-3.0.0-schema.json b/irs-api/src/test/resources/__files/semantichub/batch-3.0.0-schema.json new file mode 100644 index 0000000000..bc821b0413 --- /dev/null +++ b/irs-api/src/test/resources/__files/semantichub/batch-3.0.0-schema.json @@ -0,0 +1,216 @@ +{ + "$schema": "http://json-schema.org/draft-04/schema", + "description": "A batch is a quantity of(semi-)finished products or(raw)material product that have been produced under the same circumstances(e.g. same production location), as specified groups or amounts, within a certain time frame. Every batch can differ in the number or amount of products. Different batches can have varied specifications, e.g., different colors. A batch is identified via a Batch ID.", + "type": "object", + "components": { + "schemas": { + "urn_samm_io.catenax.shared.uuid_2.0.0_UuidV4Trait": { + "type": "string", + "description": "The provided regular expression ensures that the UUID is composed of five groups of characters separated by hyphens, in the form 8-4-4-4-12 for a total of 36 characters (32 hexadecimal characters and 4 hyphens), optionally prefixed by \"urn:uuid:\" to make it an IRI.", + "pattern": "(^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$)|(^urn:uuid:[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$)" + }, + "urn_samm_io.catenax.batch_3.0.0_KeyTrait": { + "type": "string", + "description": "Constraint that ensures that the predefined keys are used.", + "pattern": "^(manufacturerId|batchId|customKey:\\w+)$" + }, + "urn_samm_io.catenax.batch_3.0.0_ValueCharacteristic": { + "type": "string", + "description": "The value of an identifier." + }, + "urn_samm_io.catenax.batch_3.0.0_KeyValueList": { + "description": "A list of key value pairs for local identifiers, which are composed of a key and a corresponding value.", + "type": "object", + "properties": { + "key": { + "description": "The key of a local identifier.", + "$ref": "#/components/schemas/urn_samm_io.catenax.batch_3.0.0_KeyTrait" + }, + "value": { + "description": "The value of an identifier.", + "$ref": "#/components/schemas/urn_samm_io.catenax.batch_3.0.0_ValueCharacteristic" + } + }, + "required": [ + "key", + "value" + ] + }, + "urn_samm_io.catenax.batch_3.0.0_LocalIdentifierCharacteristic": { + "description": "A batch may have multiple attributes, which uniquely identify that batch in a specific dataspace(e.g. the manufacturer`s dataspace)", + "type": "array", + "items": { + "$ref": "#/components/schemas/urn_samm_io.catenax.batch_3.0.0_KeyValueList" + }, + "uniqueItems": true + }, + "urn_samm_io.catenax.batch_3.0.0_DateTrait": { + "type": "string", + "description": "Regular Expression to enable UTC and Timezone formats and the possibility to exclude time information.", + "pattern": "^(?:[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}(?:[.][0-9]+)?Z|[0-9]{4}-[0-9]{2}-[0-9]{2}(?:T[0-9]{2}:[0-9]{2}:[0-9]{2}(?:[.][0-9]+)?(?:Z|[+-][0-9]{2}:[0-9]{2}))?)$" + }, + "urn_samm_io.catenax.batch_3.0.0_ProductionCountryCodeTrait": { + "type": "string", + "description": "Regular Expression that ensures a three-letter code", + "pattern": "^[A-Z]{3}$" + }, + "urn_samm_io.catenax.shared.business_partner_number_2.0.0_BpnsTrait": { + "type": "string", + "description": "The provided regular expression ensures that the BPNS is composed of prefix 'BPNS', 10 digits and two alphanumeric letters.", + "pattern": "^BPNS[a-zA-Z0-9]{12}$" + }, + "urn_samm_io.catenax.shared.part_site_information_as_built_2.0.0_FunctionCharacteristic": { + "type": "string", + "description": "Describes the characteristics of the function for a site related to the respective part.", + "enum": [ + "production", + "warehouse", + "spare part warehouse" + ] + }, + "urn_samm_io.catenax.shared.part_site_information_as_built_2.0.0_SitesEntity": { + "description": "Describes the ID and function of a site for the associated part in the AsBuilt context(e.g. SerialPart, Batch, jIS).", + "type": "object", + "properties": { + "catenaXsiteId": { + "description": "The identifier of the site according to Catena-X BPDM. The catenaXsiteId must be a valid Catena-X BPN. The BPN is a unique, unchangeable identifier for Business Partners / company locations from foundation to closure, regardless of the different business relationships / structures between or within the Business Partners or company locations.", + "$ref": "#/components/schemas/urn_samm_io.catenax.shared.business_partner_number_2.0.0_BpnsTrait" + }, + "function": { + "description": "The function of the site in relation to the part(i.e. the activity within the value chain of the part that is performed at the site)", + "$ref": "#/components/schemas/urn_samm_io.catenax.shared.part_site_information_as_built_2.0.0_FunctionCharacteristic" + } + }, + "required": [ + "catenaXsiteId", + "function" + ] + }, + "urn_samm_io.catenax.shared.part_site_information_as_built_2.0.0_SitesCharacteristic": { + "description": "Sites Characteristic", + "type": "array", + "items": { + "$ref": "#/components/schemas/urn_samm_io.catenax.shared.part_site_information_as_built_2.0.0_SitesEntity" + }, + "uniqueItems": true + }, + "urn_samm_io.catenax.batch_3.0.0_ManufacturingCharacteristic": { + "description": "Characteristic to describe manufacturing related data", + "type": "object", + "properties": { + "date": { + "description": "Timestamp of the manufacturing date as the final step in production process(e.g. final quality check, ready-for-shipment event)", + "$ref": "#/components/schemas/urn_samm_io.catenax.batch_3.0.0_DateTrait" + }, + "country": { + "description": "Country code where the part was manufactured", + "$ref": "#/components/schemas/urn_samm_io.catenax.batch_3.0.0_ProductionCountryCodeTrait" + }, + "sites": { + "description": "A site is a delimited geographical area where a legal entity does business(geographical address with geo coordinates).A site always has a primary physical address. It is possible that further physical addresses are specified for the site. P.O. box details are only possible in addition to the physical address. A site has a 1:n relation to addresses, means at least 1 address is necessary and multiple addresses are possible.", + "$ref": "#/components/schemas/urn_samm_io.catenax.shared.part_site_information_as_built_2.0.0_SitesCharacteristic" + } + }, + "required": [ + "date" + ] + }, + "urn_samm_io.catenax.batch_3.0.0_PartIdCharacteristic": { + "type": "string", + "description": "The part ID is a multi-character string, usually assigned by an ERP system" + }, + "urn_samm_io.catenax.batch_3.0.0_PartNameCharacteristic": { + "type": "string", + "description": "Part Name in string format from the respective system in the value chain" + }, + "urn_samm_io.catenax.shared.part_classification_1.0.0_ClassificationStandardCharacteristic": { + "type": "string", + "description": "Identified classification standards that align to the Catena-X needs." + }, + "urn_samm_io.catenax.shared.part_classification_1.0.0_ClassificationIDCharacteristic": { + "type": "string", + "description": "It can be numeric or a string, depending on the chosen classification standard." + }, + "urn_samm_org.eclipse.esmf.samm_characteristic_2.1.0_Text": { + "type": "string", + "description": "Describes a Property which contains plain text. This is intended exclusively for human readable strings, not for identifiers, measurement values, etc." + }, + "urn_samm_io.catenax.shared.part_classification_1.0.0_ClassificationEntity": { + "description": "Encapsulates data related to the classification of the part.", + "type": "object", + "properties": { + "classificationStandard": { + "description": "Identified classification standards that align to the Catena-X needs.", + "$ref": "#/components/schemas/urn_samm_io.catenax.shared.part_classification_1.0.0_ClassificationStandardCharacteristic" + }, + "classificationID": { + "description": "The classification ID of the part type according to the corresponding standard definition mentioned in the key value pair.", + "$ref": "#/components/schemas/urn_samm_io.catenax.shared.part_classification_1.0.0_ClassificationIDCharacteristic" + }, + "classificationDescription": { + "description": "Optional property describing the classification standard.", + "$ref": "#/components/schemas/urn_samm_org.eclipse.esmf.samm_characteristic_2.1.0_Text" + } + }, + "required": [ + "classificationStandard", + "classificationID" + ] + }, + "urn_samm_io.catenax.shared.part_classification_1.0.0_ClassificationCharacteristic": { + "description": "Classification characteristic enabling a set of further properties.", + "type": "array", + "items": { + "$ref": "#/components/schemas/urn_samm_io.catenax.shared.part_classification_1.0.0_ClassificationEntity" + }, + "uniqueItems": true + }, + "urn_samm_io.catenax.batch_3.0.0_PartTypeInformationCharacteristic": { + "description": "The characteristics of the part type", + "type": "object", + "properties": { + "manufacturerPartId": { + "description": "Part ID as assigned by the manufacturer of the part. The Part ID identifies the part(as designed)in the manufacturer`s dataspace. The Part ID does not reference a specific instance of a part and thus should not be confused with the serial number or batch number.", + "$ref": "#/components/schemas/urn_samm_io.catenax.batch_3.0.0_PartIdCharacteristic" + }, + "nameAtManufacturer": { + "description": "Name of the part as assigned by the manufacturer", + "$ref": "#/components/schemas/urn_samm_io.catenax.batch_3.0.0_PartNameCharacteristic" + }, + "partClassification": { + "description": "Property describing the classification of a part.", + "$ref": "#/components/schemas/urn_samm_io.catenax.shared.part_classification_1.0.0_ClassificationCharacteristic" + } + }, + "required": [ + "manufacturerPartId", + "nameAtManufacturer" + ] + } + } + }, + "properties": { + "catenaXId": { + "description": "The fully anonymous Catena-X ID of the batch, valid for the Catena-X dataspace.", + "$ref": "#/components/schemas/urn_samm_io.catenax.shared.uuid_2.0.0_UuidV4Trait" + }, + "localIdentifiers": { + "description": "A local identifier enables identification of a part in a specific dataspace, but is not unique in Catena-X dataspace. Multiple local identifiers may exist.", + "$ref": "#/components/schemas/urn_samm_io.catenax.batch_3.0.0_LocalIdentifierCharacteristic" + }, + "manufacturingInformation": { + "description": "Information from manufacturing process, such as manufacturing date and manufacturing country", + "$ref": "#/components/schemas/urn_samm_io.catenax.batch_3.0.0_ManufacturingCharacteristic" + }, + "partTypeInformation": { + "description": "The part type of which the batch has been instantiated of.", + "$ref": "#/components/schemas/urn_samm_io.catenax.batch_3.0.0_PartTypeInformationCharacteristic" + } + }, + "required": [ + "catenaXId", + "localIdentifiers", + "manufacturingInformation", + "partTypeInformation" + ] +} \ No newline at end of file diff --git a/irs-api/src/test/resources/__files/semantichub/singleLevelBomAsBuilt-2.0.0-schema.json b/irs-api/src/test/resources/__files/semantichub/singleLevelBomAsBuilt-2.0.0-schema.json deleted file mode 100644 index 70fbf22bb0..0000000000 --- a/irs-api/src/test/resources/__files/semantichub/singleLevelBomAsBuilt-2.0.0-schema.json +++ /dev/null @@ -1,102 +0,0 @@ -{ - "$schema" : "http://json-schema.org/draft-04/schema", - "description" : "The single-level bill of material represents one sub-level of an assembly and does not include any lower-level subassemblies. The as-built lifecycle references all child items as manufactured by the manufacturer referencing only child items in an as-built lifecycle themselves (e.g. serial parts or batches), unless parts can only be tracked by an part ID (on a type level).\n\nIf it is unclear which item has been built-in into the parent item, all potential parts must be listed. This is the case when, e.g. the same item is supplied by two suppliers and the item is only tracked by a customer part ID during assembly, these items can not be differentiated from each other.\n", - "type" : "object", - "components" : { - "schemas" : { - "urn_samm_io.catenax.single_level_bom_as_built_2.0.0_CatenaXIdTraitCharacteristic" : { - "type" : "string", - "description" : "The provided regular expression ensures that the UUID is composed of five groups of characters separated by hyphens, in the form 8-4-4-4-12 for a total of 36 characters (32 hexadecimal characters and 4 hyphens), optionally prefixed by \"urn:uuid:\" to make it an IRI.", - "pattern" : "(^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$)|(^urn:uuid:[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$)" - }, - "urn_samm_org.eclipse.esmf.samm_characteristic_2.1.0_Timestamp" : { - "type" : "string", - "pattern" : "-?([1-9][0-9]{3,}|0[0-9]{3})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])T(([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9](\\.[0-9]+)?|(24:00:00(\\.0+)?))(Z|(\\+|-)((0[0-9]|1[0-3]):[0-5][0-9]|14:00))?", - "description" : "Describes a Property which contains the date and time with an optional timezone." - }, - "urn_samm_io.catenax.single_level_bom_as_built_2.0.0_NumberOfObjects" : { - "type" : "number", - "description" : "Quantifiable number of objects in reference to the measurementUnit" - }, - "urn_samm_org.eclipse.esmf.samm_characteristic_2.1.0_UnitReference" : { - "type" : "string", - "pattern" : "[a-zA-Z]*:[a-zA-Z]+", - "description" : "Describes a Property containing a reference to one of the units in the Unit Catalog." - }, - "urn_samm_io.catenax.single_level_bom_as_built_2.0.0_QuantityCharacteristic" : { - "description" : "Describes the quantity in which the child item is assembled in the given parent item by providing a quantity value and the measurement unit in which the quantity is measured.", - "type" : "object", - "properties" : { - "quantityNumber" : { - "description" : "The number of objects related to the measurement unit", - "$ref" : "#/components/schemas/urn_samm_io.catenax.single_level_bom_as_built_2.0.0_NumberOfObjects" - }, - "measurementUnit" : { - "description" : "Unit of Measurement for the quantity of serialized objects", - "$ref" : "#/components/schemas/urn_samm_org.eclipse.esmf.samm_characteristic_2.1.0_UnitReference" - } - }, - "required" : [ "quantityNumber", "measurementUnit" ] - }, - "urn_samm_io.catenax.single_level_bom_as_built_2.0.0_BpnTrait" : { - "type" : "string", - "description" : "Business Partner Number Regular Expression allowing only BPNL which stands for a legal entity.", - "pattern" : "^(BPNL)([0-9]{8})([a-zA-Z0-9]{4})$" - }, - "urn_samm_io.catenax.single_level_bom_as_built_2.0.0_HasAlternativesCharacteristic" : { - "type" : "boolean", - "description" : "Describes the value whether the child data has alternatives." - }, - "urn_samm_io.catenax.single_level_bom_as_built_2.0.0_ChildData" : { - "description" : "Catena-X ID and meta data of the assembled child item.", - "type" : "object", - "properties" : { - "createdOn" : { - "description" : "Timestamp when the relation between the parent item and the child item was created, e.g. when the serialized child part was assembled into the given part.", - "$ref" : "#/components/schemas/urn_samm_org.eclipse.esmf.samm_characteristic_2.1.0_Timestamp" - }, - "quantity" : { - "description" : "Quantity of which the child item is assembled into the parent item. In general it is '1' for serialized parts.", - "$ref" : "#/components/schemas/urn_samm_io.catenax.single_level_bom_as_built_2.0.0_QuantityCharacteristic" - }, - "lastModifiedOn" : { - "description" : "Timestamp when the assembly relationship between parent item and child item was last modified.", - "$ref" : "#/components/schemas/urn_samm_org.eclipse.esmf.samm_characteristic_2.1.0_Timestamp" - }, - "catenaXId" : { - "description" : "The Catena-X ID of the given part (e.g. the assembly), valid for the Catena-X dataspace.", - "$ref" : "#/components/schemas/urn_samm_io.catenax.single_level_bom_as_built_2.0.0_CatenaXIdTraitCharacteristic" - }, - "businessPartner" : { - "description" : "The supplier of the given child item.", - "$ref" : "#/components/schemas/urn_samm_io.catenax.single_level_bom_as_built_2.0.0_BpnTrait" - }, - "hasAlternatives" : { - "description" : "Expresses wether the part is built-in or wether it is one of several options. If the value is false, it can be assumend this exact item is built-in. If the value is true, it is unknown wether this or an alternative item is built-in.\nThis is the case when, e.g. the same item is supplied by two suppliers, the item is only tracked by a customer part ID during assembly. Thus, these items can not be differentiated from each other.\n\n", - "$ref" : "#/components/schemas/urn_samm_io.catenax.single_level_bom_as_built_2.0.0_HasAlternativesCharacteristic" - } - }, - "required" : [ "createdOn", "quantity", "catenaXId", "businessPartner", "hasAlternatives" ] - }, - "urn_samm_io.catenax.single_level_bom_as_built_2.0.0_SetOfChildItemsCharacteristic" : { - "description" : "Set of child items the parent item is assembled by (one structural level down).", - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/urn_samm_io.catenax.single_level_bom_as_built_2.0.0_ChildData" - }, - "uniqueItems" : true - } - } - }, - "properties" : { - "catenaXId" : { - "description" : "The Catena-X ID of the given part (e.g. the assembly), valid for the Catena-X dataspace.", - "$ref" : "#/components/schemas/urn_samm_io.catenax.single_level_bom_as_built_2.0.0_CatenaXIdTraitCharacteristic" - }, - "childItems" : { - "description" : "Set of child items, of which the given parent item is assembled by (one structural level down).", - "$ref" : "#/components/schemas/urn_samm_io.catenax.single_level_bom_as_built_2.0.0_SetOfChildItemsCharacteristic" - } - }, - "required" : [ "catenaXId", "childItems" ] -} \ No newline at end of file diff --git a/irs-api/src/test/resources/__files/semantichub/singleLevelBomAsBuilt-3.0.0-schema.json b/irs-api/src/test/resources/__files/semantichub/singleLevelBomAsBuilt-3.0.0-schema.json new file mode 100644 index 0000000000..6e716a2398 --- /dev/null +++ b/irs-api/src/test/resources/__files/semantichub/singleLevelBomAsBuilt-3.0.0-schema.json @@ -0,0 +1,151 @@ +{ + "$schema": "http://json-schema.org/draft-04/schema", + "description": "The single-level bill of material represents one sub-level of an assembly and does not include any lower-level subassemblies. The as-built lifecycle references all child items as manufactured by the manufacturer referencing only child items in an as-built lifecycle themselves (e.g. serial parts or batches), unless parts can only be tracked by an part ID (on a type level).\n\nIf it is unclear which item has been built-in into the parent item, all potential parts must be listed. This is the case when, e.g. the same item is supplied by two suppliers and the item is only tracked by a customer part ID during assembly, these items can not be differentiated from each other.\n", + "type": "object", + "components": { + "schemas": { + "urn_samm_io.catenax.shared.uuid_2.0.0_UuidV4Trait": { + "type": "string", + "description": "The provided regular expression ensures that the UUID is composed of five groups of characters separated by hyphens, in the form 8-4-4-4-12 for a total of 36 characters (32 hexadecimal characters and 4 hyphens), optionally prefixed by \"urn:uuid:\" to make it an IRI.", + "pattern": "(^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$)|(^urn:uuid:[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$)" + }, + "urn_samm_io.catenax.single_level_bom_as_built_3.0.0_DateTimeTrait": { + "type": "string", + "description": "Regular Expression to enable UTC and Timezone formats and the possibility to exclude time information.", + "pattern": "^-?([1-9][0-9]{3,}|0[0-9]{3})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])(T(([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9](\\.[0-9]+)?|(24:00:00(\\.0+)?))(Z|(\\+|-)((0[0-9]|1[0-3]):[0-5][0-9]|14:00))?)?$" + }, + "urn_samm_io.catenax.shared.quantity_2.0.0_QuantityValueCharacteristic": { + "type": "number", + "description": "The quantity value associated with the unit expressed as float." + }, + "urn_samm_io.catenax.shared.quantity_2.0.0_ItemUnitEnumeration": { + "type": "string", + "pattern": "[a-zA-Z]*:[a-zA-Z]+", + "description": "Enumeration for common item units.", + "enum": [ + "unit:piece", + "unit:set", + "unit:pair", + "unit:page", + "unit:cycle", + "unit:kilowattHour", + "unit:gram", + "unit:kilogram", + "unit:tonneMetricTon", + "unit:tonUsOrShortTonUkorus", + "unit:ounceAvoirdupois", + "unit:pound", + "unit:metre", + "unit:centimetre", + "unit:kilometre", + "unit:inch", + "unit:foot", + "unit:yard", + "unit:squareCentimetre", + "unit:squareMetre", + "unit:squareInch", + "unit:squareFoot", + "unit:squareYard", + "unit:cubicCentimetre", + "unit:cubicMetre", + "unit:cubicInch", + "unit:cubicFoot", + "unit:cubicYard", + "unit:litre", + "unit:millilitre", + "unit:hectolitre", + "unit:secondUnitOfTime", + "unit:minuteUnitOfTime", + "unit:hourUnitOfTime", + "unit:day" + ] + }, + "urn_samm_io.catenax.shared.quantity_2.0.0_ItemQuantityCharacteristic": { + "description": "Characteristic for measurements of an item (mass, count, linear, area, volume, misc).", + "type": "object", + "properties": { + "value": { + "description": "The quantity value associated with the unit.", + "$ref": "#/components/schemas/urn_samm_io.catenax.shared.quantity_2.0.0_QuantityValueCharacteristic" + }, + "unit": { + "description": "The unit of an item. Common units may be related to mass, count, linear, area, volume or misc.", + "$ref": "#/components/schemas/urn_samm_io.catenax.shared.quantity_2.0.0_ItemUnitEnumeration" + } + }, + "required": [ + "value", + "unit" + ] + }, + "urn_samm_io.catenax.shared.business_partner_number_2.0.0_BpnlTrait": { + "type": "string", + "description": "The provided regular expression ensures that the BPNL is composed of prefix 'BPNL', 10 digits and two alphanumeric letters.", + "pattern": "^BPNL[a-zA-Z0-9]{12}$" + }, + "urn_samm_org.eclipse.esmf.samm_characteristic_2.1.0_Boolean": { + "type": "boolean", + "description": "Represents a boolean value (i.e. a \"flag\")." + }, + "urn_samm_io.catenax.single_level_bom_as_built_3.0.0_ChildData": { + "description": "Catena-X ID and meta data of the assembled child item.", + "type": "object", + "properties": { + "createdOn": { + "description": "Timestamp when the relation between the parent item and the child item was created, e.g. when the serialized child part was assembled into the given part.", + "$ref": "#/components/schemas/urn_samm_io.catenax.single_level_bom_as_built_3.0.0_DateTimeTrait" + }, + "quantity": { + "description": "Quantity of which the child item is assembled into the parent item. In general it is '1' for serialized parts.", + "$ref": "#/components/schemas/urn_samm_io.catenax.shared.quantity_2.0.0_ItemQuantityCharacteristic" + }, + "lastModifiedOn": { + "description": "Timestamp when the assembly relationship between parent item and child item was last modified.", + "$ref": "#/components/schemas/urn_samm_io.catenax.single_level_bom_as_built_3.0.0_DateTimeTrait" + }, + "businessPartner": { + "description": "The supplier of the given child item.", + "$ref": "#/components/schemas/urn_samm_io.catenax.shared.business_partner_number_2.0.0_BpnlTrait" + }, + "hasAlternatives": { + "description": "Expresses whether the part is built-in or wether it is one of several options. If the value is false, it can be assumed this exact item is built-in. If the value is true, it is unknown wether this or an alternative item is built-in.\nThis is the case when, e.g. the same item is supplied by two suppliers, the item is only tracked by a customer part ID during assembly. Thus, these items can not be differentiated from each other.\n\n", + "$ref": "#/components/schemas/urn_samm_org.eclipse.esmf.samm_characteristic_2.1.0_Boolean" + }, + "catenaXId": { + "description": "The Catena-X ID of the given part (e.g. the component), valid for the Catena-X dataspace.", + "$ref": "#/components/schemas/urn_samm_io.catenax.shared.uuid_2.0.0_UuidV4Trait" + } + }, + "required": [ + "createdOn", + "quantity", + "businessPartner", + "hasAlternatives", + "catenaXId" + ] + }, + "urn_samm_io.catenax.single_level_bom_as_built_3.0.0_SetOfChildItemsCharacteristic": { + "description": "Set of child items the parent item was assembled by (one structural level down).", + "type": "array", + "items": { + "$ref": "#/components/schemas/urn_samm_io.catenax.single_level_bom_as_built_3.0.0_ChildData" + }, + "uniqueItems": true + } + } + }, + "properties": { + "catenaXId": { + "description": "The Catena-X ID of the given part (e.g. the component), valid for the Catena-X dataspace.", + "$ref": "#/components/schemas/urn_samm_io.catenax.shared.uuid_2.0.0_UuidV4Trait" + }, + "childItems": { + "description": "Set of child items, of which the given parent item was assembled by (one structural level down).", + "$ref": "#/components/schemas/urn_samm_io.catenax.single_level_bom_as_built_3.0.0_SetOfChildItemsCharacteristic" + } + }, + "required": [ + "catenaXId", + "childItems" + ] +} \ No newline at end of file diff --git a/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelBomAsBuilt.java b/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelBomAsBuilt.java index a77229463f..ff0f2c07b4 100644 --- a/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelBomAsBuilt.java +++ b/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelBomAsBuilt.java @@ -30,6 +30,7 @@ import java.util.Optional; import java.util.Set; +import com.fasterxml.jackson.annotation.JsonAlias; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; @@ -122,7 +123,9 @@ private boolean thereIsQuantity() { @Jacksonized /* package */ static class Quantity { + @JsonAlias({ "quantityNumber", "value" }) private Double quantityNumber; + @JsonAlias({ "measurementUnit", "unit" }) private Object measurementUnit; /** diff --git a/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/EdcSubmodelClientTest.java b/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/EdcSubmodelClientTest.java index f800bc7a5a..60e6295d4a 100644 --- a/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/EdcSubmodelClientTest.java +++ b/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/EdcSubmodelClientTest.java @@ -90,6 +90,7 @@ class EdcSubmodelClientTest extends LocalTestDataConfigurationAware { private static final String ASSET_ID = "d46b51ae-08b6-42d7-a30d-0f8d118c8e0d-ce85f148-e3cf-42fe-9381-d1f276333fc4"; private static final String PROVIDER_SUFFIX = "/test"; private static final String CONNECTOR_ENDPOINT = "https://connector.endpoint.com"; + private static final String existingCatenaXId = "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f"; private final ScheduledExecutorService scheduler = Executors.newSingleThreadScheduledExecutor(); private final TimeMachine clock = new TimeMachine(); @@ -196,7 +197,6 @@ void shouldReturnRelationshipsWhenRequestingWithCatenaXIdAndSingleLevelBomAsBuil // arrange when(config.getControlplane().getProviderSuffix()).thenReturn(PROVIDER_SUFFIX); - final String existingCatenaXId = "urn:uuid:b00df8b5-7826-4b87-b0f6-7c1e4cc7b444"; when(catalogFacade.fetchCatalogByFilter(any(), any(), any())).thenReturn( List.of(CatalogItem.builder().itemId(existingCatenaXId).build())); prepareTestdata(existingCatenaXId, "_singleLevelBomAsBuilt"); @@ -238,10 +238,9 @@ void shouldReturnRelationshipsWhenRequestingWithCatenaXIdAndSingleLevelBomAsSpec // arrange when(config.getControlplane().getProviderSuffix()).thenReturn(PROVIDER_SUFFIX); - final String catenaXId = "urn:uuid:644c0988-6949-4586-b304-7f46f412a5cc"; when(catalogFacade.fetchCatalogByFilter(any(), any(), any())).thenReturn( - List.of(CatalogItem.builder().itemId(catenaXId).build())); - prepareTestdata(catenaXId, "_singleLevelBomAsSpecified"); + List.of(CatalogItem.builder().itemId(existingCatenaXId).build())); + prepareTestdata(existingCatenaXId, "_singleLevelBomAsSpecified"); when(endpointDataReferenceCacheService.getEndpointDataReference(any())).thenReturn( new EndpointDataReferenceStatus(null, TokenStatus.REQUIRED_NEW)); @@ -251,7 +250,7 @@ void shouldReturnRelationshipsWhenRequestingWithCatenaXIdAndSingleLevelBomAsSpec .getPayload(); // assert - assertThat(submodelResponse).contains("urn:uuid:2afbac90-a662-4f16-9058-4f030e692631"); + assertThat(submodelResponse).contains("urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860"); } @Test @@ -281,10 +280,10 @@ void shouldReturnEmptyRelationshipsWhenRequestingWithNotExistingCatenaXIdAndSing // arrange when(config.getControlplane().getProviderSuffix()).thenReturn(PROVIDER_SUFFIX); - final String catenaXId = "urn:uuid:8a61c8db-561e-4db0-84ec-a693fc5ffdf6"; + final String notExistingCatenaXId = "urn:uuid:8a61c8db-561e-4db0-84ec-a693fc5ffdf6"; when(catalogFacade.fetchCatalogByFilter(any(), any(), any())).thenReturn( - List.of(CatalogItem.builder().itemId(catenaXId).build())); - prepareTestdata(catenaXId, "_singleLevelBomAsBuilt"); + List.of(CatalogItem.builder().itemId(notExistingCatenaXId).build())); + prepareTestdata(notExistingCatenaXId, "_singleLevelBomAsBuilt"); when(endpointDataReferenceCacheService.getEndpointDataReference(ASSET_ID)).thenReturn( new EndpointDataReferenceStatus(null, TokenStatus.REQUIRED_NEW)); @@ -302,7 +301,6 @@ void shouldReturnRawSerialPartWhenExisting() throws Exception { // arrange when(config.getControlplane().getProviderSuffix()).thenReturn(PROVIDER_SUFFIX); - final String existingCatenaXId = "urn:uuid:b00df8b5-7826-4b87-b0f6-7c1e4cc7b444"; when(catalogFacade.fetchCatalogByFilter("https://connector.endpoint.com" + PROVIDER_SUFFIX, "https://w3id.org/edc/v0.0.1/ns/id", ASSET_ID)).thenReturn(createCatalog(ASSET_ID, 3)); prepareTestdata(existingCatenaXId, "_serialPart"); @@ -317,7 +315,7 @@ void shouldReturnRawSerialPartWhenExisting() throws Exception { // assert assertThat(submodelResponse).startsWith( - "{\"localIdentifiers\":[{\"value\":\"BPNL00000003AVTH\",\"key\":\"manufacturerId\"}"); + "{\"localIdentifiers\":[{\"value\":\"BPNL00000003AYRE\",\"key\":\"manufacturerId\"}"); } @Test @@ -325,7 +323,6 @@ void shouldUseDecodedTargetId() throws Exception { // arrange when(config.getControlplane().getProviderSuffix()).thenReturn(PROVIDER_SUFFIX); - final String existingCatenaXId = "urn:uuid:b00df8b5-7826-4b87-b0f6-7c1e4cc7b444"; prepareTestdata(existingCatenaXId, "_serialPart"); final String target = URLEncoder.encode(ASSET_ID, StandardCharsets.UTF_8); when(catalogFacade.fetchCatalogByFilter("https://connector.endpoint.com" + PROVIDER_SUFFIX, @@ -341,7 +338,7 @@ void shouldUseDecodedTargetId() throws Exception { // assert assertThat(submodelResponse).startsWith( - "{\"localIdentifiers\":[{\"value\":\"BPNL00000003AVTH\",\"key\":\"manufacturerId\"}"); + "{\"localIdentifiers\":[{\"value\":\"BPNL00000003AYRE\",\"key\":\"manufacturerId\"}"); } @Test @@ -349,7 +346,7 @@ void shouldReturnSameRelationshipsForDifferentDirections() throws Exception { // arrange when(config.getControlplane().getProviderSuffix()).thenReturn(PROVIDER_SUFFIX); - final String parentCatenaXId = "urn:uuid:a65c35a8-8d31-4a86-899b-57912de33675"; + final String parentCatenaXId = "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9"; final BomLifecycle asBuilt = BomLifecycle.AS_BUILT; when(catalogFacade.fetchCatalogByFilter(any(), any(), any())).thenReturn( List.of(CatalogItem.builder().itemId(parentCatenaXId).build())); diff --git a/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/SubmodelTestdataCreatorTest.java b/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/SubmodelTestdataCreatorTest.java index 5550392c84..ad4b44a8b5 100644 --- a/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/SubmodelTestdataCreatorTest.java +++ b/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/SubmodelTestdataCreatorTest.java @@ -52,13 +52,13 @@ void shouldReturnSingleLevelBomAsBuiltWithoutChildrenWhenRequestingWithTestId() @Test void shouldReturnSingleLevelBomAsBuiltWithPreDefinedChildrenWhenRequestingWithCatenaXId() { - final String catenaXId = "urn:uuid:9da45c9a-9052-494c-8328-28e474ee8ae2"; + final String catenaXId = "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f"; final SingleLevelBomAsBuilt singleLevelBomAsBuilt = submodelTestdataCreator.createSubmodelForId( catenaXId + "_singleLevelBomAsBuilt", SingleLevelBomAsBuilt.class); final Set childItems = singleLevelBomAsBuilt.getChildItems(); assertThat(childItems).isNotEmpty(); - final List childIDs = List.of("urn:uuid:abd54850-bd69-434e-b357-d121a9e0874b"); + final List childIDs = List.of("urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860"); childItems.forEach(childData -> assertThat(childIDs).contains(childData.getCatenaXId())); } diff --git a/irs-models/src/main/java/org/eclipse/tractusx/irs/data/CxTestDataContainer.java b/irs-models/src/main/java/org/eclipse/tractusx/irs/data/CxTestDataContainer.java index 9f1ed616f5..8b69fa469e 100644 --- a/irs-models/src/main/java/org/eclipse/tractusx/irs/data/CxTestDataContainer.java +++ b/irs-models/src/main/java/org/eclipse/tractusx/irs/data/CxTestDataContainer.java @@ -54,17 +54,17 @@ public Optional getByCatenaXId(final String catenaXId) { @Data public static class CxTestData { - public static final String SERIAL_PART_ASPECT_TYPE = "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart"; - public static final String SINGLE_LEVEL_BOM_AS_BUILT_ASPECT_TYPE = "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt"; - public static final String SINGLE_LEVEL_USAGE_BUILT_ASPECT_TYPE = "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt"; - public static final String SINGLE_LEVEL_BOM_AS_SPECIFIED_ASPECT_TYPE = "urn:bamm:io.catenax.single_level_bom_as_specified:1.0.0#SingleLevelBomAsSpecified"; + public static final String SERIAL_PART_ASPECT_TYPE = "urn:samm:io.catenax.serial_part:3.0.0#SerialPart"; + public static final String SINGLE_LEVEL_BOM_AS_BUILT_ASPECT_TYPE = "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt"; + public static final String SINGLE_LEVEL_USAGE_BUILT_ASPECT_TYPE = "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt"; + public static final String SINGLE_LEVEL_BOM_AS_SPECIFIED_ASPECT_TYPE = "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified"; public static final String PART_AS_PLANNED_ASPECT_TYPE = "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned"; public static final String SINGLE_LEVEL_BOM_AS_PLANNED_ASPECT_TYPE = "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned"; - public static final String BATCH_ASPECT_TYPE = "urn:bamm:io.catenax.batch:2.0.0#Batch"; - public static final String MATERIAL_FOR_RECYCLING_ASPECT_TYPE = "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling"; - public static final String PRODUCT_DESCRIPTION_ASPECT_TYPE = "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription"; - public static final String PHYSICAL_DIMENSION_ASPECT_TYPE = "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension"; - public static final String PART_AS_SPECIFIED_ASPECT_TYPE = "urn:bamm:io.catenax.part_as_specified:2.0.0#PartAsSpecified"; + public static final String BATCH_ASPECT_TYPE = "urn:samm:io.catenax.batch:3.0.0#Batch"; + public static final String MATERIAL_FOR_RECYCLING_ASPECT_TYPE = "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling"; + public static final String PRODUCT_DESCRIPTION_ASPECT_TYPE = "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription"; + public static final String PHYSICAL_DIMENSION_ASPECT_TYPE = "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension"; + public static final String PART_AS_SPECIFIED_ASPECT_TYPE = "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified"; private String catenaXId; @JsonProperty(SERIAL_PART_ASPECT_TYPE) diff --git a/irs-models/src/main/resources/test_data/CX_Testdata.json b/irs-models/src/main/resources/test_data/CX_Testdata.json index 0f2b22a773..a1ed35f8a7 100644 --- a/irs-models/src/main/resources/test_data/CX_Testdata.json +++ b/irs-models/src/main/resources/test_data/CX_Testdata.json @@ -1,6 +1,6 @@ { "https://catenax.io/schema/TestDataContainer/1.0.0" : [ { - "catenaXId" : "urn:uuid:3405849e-e3bb-4999-8488-baba23311559", + "catenaXId" : "urn:uuid:76e07e0b-15e9-4279-9d19-8bee67260ce4", "bpnl" : "null", "PlainObject" : [ { "BPN_OEM_C" : "BPNL00000003AZQP", @@ -8,11 +8,16 @@ "BPN_OEM_B" : "BPNL00000003AVTH", "BPN_IRS_TEST" : "BPNL00000003AWSS", "BPN_N_TIER_A" : "BPNL00000003B0Q0", - "BATCH_SEALANT_1" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "BATCH_SEALANT_2" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", + "BPN_NATURAL_RUBBER_SITE_A" : "BPNS000000000001", + "BATCH_SEALANT_1" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "BATCH_SEALANT_2" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", "AUTHOR" : "T-Systems", - "BATCH_GLUE_2" : "urn:uuid:fadbd933-35d4-41f4-a63a-d21b719d3c4d", - "BATCH_GLUE_1" : "urn:uuid:26c7ebe7-4885-4070-bbf3-2efed92b529c", + "BPN_NATURAL_RUBBER" : "BPNL00000007OR16", + "BATCH_GLUE_2" : "urn:uuid:70e850fd-c1cb-4418-964e-cd3ba0bb6459", + "BATCH_GLUE_1" : "urn:uuid:8d75a647-b003-46d9-9ed2-d3577cb1a171", + "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", @@ -20,84 +25,31 @@ "BPN_TRACEX_B_SITE_A" : "BPNS00000008BDFH", "BPN_TIER_A" : "BPNL00000003B2OM", "BPN_TIER_C" : "BPNL00000003CSGV", - "SPT_MPO_LINK" : "urn:uuid:22a4bd0e-a2a5-4265-b7b1-c8daed783e06", + "BPN_FARM_A" : "BPNL00000003CSGV", + "SPT_MPO_LINK" : "urn:uuid:13752e97-e42f-4cd8-89b5-333615d4de5c", "BPN_TIER_B" : "BPNL00000003B5MJ", "BPN_SUB_TIER_B" : "BPNL00000003AXS3", "BPN_SUB_TIER_A" : "BPNL00000003B3NX", - "BATCH_CATHODE_1" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "BATCH_CATHODE_2" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "BATCH_CATHODE_1" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "BATCH_CATHODE_2" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "BPN_SUB_TIER_C" : "BPNL00000000BJTL", - "CREATION_DATE" : "2023-09-15T10:17:55.732Z", - "BATCH_POLYAMID_1" : "urn:uuid:91de8b0d-fee4-4955-b83a-4ab432d34044", - "BATCH_POLYAMID_2" : "urn:uuid:4b7d53e2-edbb-488c-aab2-970071d9427b" - } ] - }, { - "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Limousine", - "catenaXId" : "urn:uuid:db0bf27c-74df-4162-a162-607042ff1a9f", - "engine" : { - "size" : 2998, - "power" : 143 - }, - "emptyWeight" : 1.73, - "fuel" : "Elektro", - "vehicleModel" : "Vehicle Fully Electric", - "productionDateGMT" : "2010-01-01", - "equipmentVariants" : [ { - "code" : "S388C", - "description" : "security plus", - "group" : "special equipment" - }, { - "code" : "S218A", - "description" : "sport automatic transmission", - "group" : "special equipment" - }, { - "code" : "S378B", - "description" : "integrated child seats", - "group" : "special equipment" - }, { - "code" : "C247R", - "description" : "trailer hitch", - "group" : "special equipment" - } ], - "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", - "mileage" : [ { - "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2023-03-16", - "mileageDistance" : 120000 - } ] - } ], - "catenaXId" : "urn:uuid:db0bf27c-74df-4162-a162-607042ff1a9f", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "LX-61", - "key" : "manufacturerPartId" - }, { - "value" : "OMCBNUSQZHMVYGWAQ", - "key" : "partInstanceId" - }, { - "value" : "OMCBNUSQZHMVYGWAQ", - "key" : "van" - } ], - "manufacturingInformation" : { - "date" : "2020-08-25T16:47:40.000Z", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:db0bf27c-74df-4162-a162-607042ff1a9f", - "partTypeInformation" : { - "manufacturerPartId" : "LX-61", - "classification" : "product", - "nameAtManufacturer" : "Vehicle Fully Electric" - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "CREATION_DATE" : "2024-03-15T06:19:40.513Z", + "BPN_TIER_C_SITE_A" : "BPNS00000003CSGV", + "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", + "BATCH_POLYAMID_1" : "urn:uuid:a87b4573-048a-42e0-a0a6-86c4680c28b1", + "BATCH_POLYAMID_2" : "urn:uuid:cd81204d-f7ac-4673-833b-799ea6da60d7" + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Iron", - "recycledContent" : 63, + "recycledContent" : 48, "materialClass" : "1.1", "quantity" : { "unit" : "unit:kilogram", @@ -107,7 +59,7 @@ "materialAbbreviation" : "IR334" }, { "materialName" : "Polyethylen", - "recycledContent" : 76, + "recycledContent" : 31, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -117,7 +69,7 @@ "materialAbbreviation" : "PE221" }, { "materialName" : "Polyamid6", - "recycledContent" : 25, + "recycledContent" : 53, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -127,7 +79,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Aluminium", - "recycledContent" : 8, + "recycledContent" : 31, "materialClass" : "2.1", "quantity" : { "unit" : "unit:kilogram", @@ -137,7 +89,7 @@ "materialAbbreviation" : "ALU331" }, { "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", - "recycledContent" : 82, + "recycledContent" : 1, "materialClass" : "0.7", "quantity" : { "unit" : "unit:kilogram", @@ -147,7 +99,7 @@ "materialAbbreviation" : "W123" }, { "materialName" : "Glue", - "recycledContent" : 76, + "recycledContent" : 86, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -157,7 +109,7 @@ "materialAbbreviation" : "GL338" }, { "materialName" : "Carbon Steel", - "recycledContent" : 59, + "recycledContent" : 66, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -167,7 +119,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Cooper", - "recycledContent" : 37, + "recycledContent" : 17, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -177,7 +129,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Rubber", - "recycledContent" : 72, + "recycledContent" : 39, "materialClass" : "5.3", "quantity" : { "unit" : "unit:kilogram", @@ -187,7 +139,7 @@ "materialAbbreviation" : "R22" }, { "materialName" : "Textiles", - "recycledContent" : 67, + "recycledContent" : 7, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:kilogram", @@ -197,359 +149,496 @@ "materialAbbreviation" : "TEX1" } ] } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:db0bf27c-74df-4162-a162-607042ff1a9f", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "childItems" : [ { - "catenaXId" : "urn:uuid:bcf4efd1-8dec-4eca-a169-41699c3a1748", + "catenaXId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a65c35a8-8d31-4a86-899b-57912de33675", + "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5212f21c-e077-4e51-9f20-40592bfb7a95", + "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ce3c1b5d-e1bc-40e9-b0e7-e3f4f60af8f3", + "catenaXId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3f3670fc-0f93-48dc-adbe-e264c19f0f76", + "catenaXId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9fb5d578-90ea-4fb6-8f9b-9fc76664bdca", + "catenaXId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e099bcac-765c-4099-85aa-fc33820cb11b", + "catenaXId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8fc4157a-9e89-415c-863b-d4b003a7589e", + "catenaXId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0cf05553-9f38-496b-8956-68c05cf3c923", + "catenaXId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7c01cefd-a95d-41a1-b926-1899f716fa5d", + "catenaXId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:df6cf91d-8786-4ded-8ca6-164188a88973", + "catenaXId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:85d2cecd-b929-48f2-ac4e-8d231dc3b8e5", + "catenaXId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2d4e9c61-5a62-4b9d-bb85-b3f4e89b4551", + "catenaXId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:50d7bee6-12f8-48cd-943b-a0cb83085d30", + "catenaXId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:80f8a7c0-b401-47e0-bee0-ed1e69537a27", + "catenaXId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f8b0853d-f8a5-4f83-ab3d-250c6293cd1e", + "catenaXId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9c16c833-e997-46d3-bc5e-2163214b88dc", + "catenaXId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:61ff5847-7990-46e6-aacd-003e7fcaf4ad", + "catenaXId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1f8bd4b2-cb06-4b33-b4b1-09f271bdf0af", + "catenaXId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e4293081-e903-490f-95da-5d709eeb167b", + "catenaXId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8cb3893a-1f6a-4e1b-92a4-7f7810de2579", + "catenaXId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:46f2fde5-9b00-408b-b9cc-8f45828023a5", + "catenaXId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2f208edc-a2fd-4354-8241-13b3a09cda76", + "catenaXId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:73ada111-3f96-449f-91dc-3d2148b75dd2", + "catenaXId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1797817c-a4bc-4454-ab39-e217fa2e61a6", + "catenaXId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3dc3a03a-1d4b-4cca-b3ae-10eb2a360f4c", + "catenaXId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:15e5cfb0-eaf2-4f8f-9cc0-ab418ad84e8c", + "catenaXId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d8bb09a2-c58d-4712-b1ac-f52bde8fd870", + "catenaXId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:371bbc66-500d-4d65-978d-10606e09663f", + "catenaXId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8ddd8fe0-1b4f-44b4-90f3-a8f68e551ac7", + "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:86e8f522-abc9-4b06-a5cc-58c11aeece5f", + "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B5MJ", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c6611117-6278-4988-ba5e-90439204a20c", + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ], + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "NK-28", + "key" : "manufacturerPartId" + }, { + "value" : "OMBOCDCFHZXMZBJZC", + "key" : "partInstanceId" + }, { + "value" : "OMBOCDCFHZXMZBJZC", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2020-08-19T11:21:15.000Z", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "partTypeInformation" : { + "manufacturerPartId" : "NK-28", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Vehicle Fully Electric" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Kombilimousine", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "engine" : { + "size" : 2998, + "power" : 143 + }, + "emptyWeight" : 1.73, + "fuel" : "Elektro", + "vehicleModel" : "Vehicle Fully Electric", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "S2AVB", + "description" : "adaptive drive", + "group" : "special equipment" + }, { + "code" : "S763C", + "description" : "sport package", + "group" : "special equipment" + }, { + "code" : "A01CR", + "description" : "remote engine start", + "group" : "special equipment" + }, { + "code" : "S378B", + "description" : "integrated child seats", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2014-11-14", + "mileageDistance" : 120000 + } ] } ] }, { - "catenaXId" : "urn:uuid:bcf4efd1-8dec-4eca-a169-41699c3a1748", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bcf4efd1-8dec-4eca-a169-41699c3a1748", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "catenaXId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "84513", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "6226", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "73849201-61", "key" : "manufacturerPartId" }, { - "value" : "NO-159849952198796506359500", + "value" : "NO-066647475705439133590731", "key" : "partInstanceId" }, { "value" : "Company 10", @@ -560,25 +649,55 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:bcf4efd1-8dec-4eca-a169-41699c3a1748", + "catenaXId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", "partTypeInformation" : { "manufacturerPartId" : "73849201-61", "customerPartId" : "73849201-61", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Catalysator", "nameAtCustomer" : "Catalysator" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", + "partTypeInformation" : { + "ownerPartId" : "73849201-61", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Catalysator", + "partClassification" : [ { + "value" : "Catalysator", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Catalysator" } - } ] - }, { - "catenaXId" : "urn:uuid:a65c35a8-8d31-4a86-899b-57912de33675", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a65c35a8-8d31-4a86-899b-57912de33675", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -589,9 +708,90 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "childItems" : [ { + "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000000BJTL", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "493373", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "4467", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003CSGV", "key" : "manufacturerId" @@ -599,7 +799,7 @@ "value" : "22782277-50", "key" : "manufacturerPartId" }, { - "value" : "NO-589947841646719529526992", + "value" : "NO-070860464145139398402631", "key" : "partInstanceId" }, { "value" : "Company 3", @@ -610,39 +810,74 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a65c35a8-8d31-4a86-899b-57912de33675", + "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", "partTypeInformation" : { "manufacturerPartId" : "22782277-50", "customerPartId" : "22782277-50", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door f-l", "nameAtCustomer" : "Door front-left" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a65c35a8-8d31-4a86-899b-57912de33675", + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { - "catenaXId" : "urn:uuid:568a0bc7-1ffb-482d-a99d-8d6d89088b08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "item" : [ { + "itemClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ca454f06-e3ac-4908-8632-0fece3946e62", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] - } ] - }, { - "catenaXId" : "urn:uuid:568a0bc7-1ffb-482d-a99d-8d6d89088b08", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:568a0bc7-1ffb-482d-a99d-8d6d89088b08", + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "partTypeInformation" : { + "ownerPartId" : "22782277-50", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Door front-left", + "partClassification" : [ { + "value" : "Door front-left", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "nameAtOwner" : "Door front-left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003CSGV", "parentItems" : [ { - "catenaXId" : "urn:uuid:a65c35a8-8d31-4a86-899b-57912de33675", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -653,9 +888,102 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { + "localIdentifiers" : [ { + "value" : "86681316RUO", + "key" : "jisNumber" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000000BJTL", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-3434-A", + "customerPartId" : "PRT-12345", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "side element A" + } } ], + "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "358518", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "5674", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000000BJTL", "key" : "manufacturerId" @@ -663,48 +991,60 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-694681464660826265186780", + "value" : "NO-747120479071756798529531", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:568a0bc7-1ffb-482d-a99d-8d6d89088b08", + "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door Key", "nameAtCustomer" : "Door Key" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "58013362AZQ", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "manufacturerId" : "BPNL00000000BJTL", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:568a0bc7-1ffb-482d-a99d-8d6d89088b08", + "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" + "ownerPartId" : "95657762-59", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Door Key", + "partClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000000BJTL:PartFamily" + } ], + "nameAtOwner" : "Door Key" } - } ] - }, { - "catenaXId" : "urn:uuid:5212f21c-e077-4e51-9f20-40592bfb7a95", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5212f21c-e077-4e51-9f20-40592bfb7a95", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000000BJTL", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -715,9 +1055,90 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "childItems" : [ { + "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000000BJTL", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "909852", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "6025", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003CSGV", "key" : "manufacturerId" @@ -725,7 +1146,7 @@ "value" : "95657362-64", "key" : "manufacturerPartId" }, { - "value" : "NO-056066008999716189871665", + "value" : "NO-717125314697526511835089", "key" : "partInstanceId" }, { "value" : "Company 4", @@ -736,39 +1157,74 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:5212f21c-e077-4e51-9f20-40592bfb7a95", + "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", "partTypeInformation" : { "manufacturerPartId" : "33740332-54", "customerPartId" : "33740332-54", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door f-r", "nameAtCustomer" : "Door front-right" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5212f21c-e077-4e51-9f20-40592bfb7a95", + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { - "catenaXId" : "urn:uuid:8e794d25-436a-4533-aff3-3b0da5f6650b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "item" : [ { + "itemClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5bec6e30-f1be-49b1-9a80-d6d6da5780fe", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] - } ] - }, { - "catenaXId" : "urn:uuid:8e794d25-436a-4533-aff3-3b0da5f6650b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8e794d25-436a-4533-aff3-3b0da5f6650b", + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "partTypeInformation" : { + "ownerPartId" : "33740332-54", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Door front-right", + "partClassification" : [ { + "value" : "Door front-right", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "nameAtOwner" : "Door front-right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003CSGV", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -779,9 +1235,102 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { + "localIdentifiers" : [ { + "value" : "50695399XFB", + "key" : "jisNumber" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000000BJTL", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-3434-A", + "customerPartId" : "PRT-12345", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "side element A" + } } ], + "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "820213", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "3619", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000000BJTL", "key" : "manufacturerId" @@ -789,48 +1338,60 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-751659396355998454900314", + "value" : "NO-933249529973009274367708", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:8e794d25-436a-4533-aff3-3b0da5f6650b", + "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door Key", "nameAtCustomer" : "Door Key" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "78773418BUJ", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "manufacturerId" : "BPNL00000000BJTL", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:8e794d25-436a-4533-aff3-3b0da5f6650b", + "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" + "ownerPartId" : "95657762-59", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Door Key", + "partClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000000BJTL:PartFamily" + } ], + "nameAtOwner" : "Door Key" } - } ] - }, { - "catenaXId" : "urn:uuid:ce3c1b5d-e1bc-40e9-b0e7-e3f4f60af8f3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ce3c1b5d-e1bc-40e9-b0e7-e3f4f60af8f3", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", "customers" : [ { - "businessPartner" : false, + "businessPartner" : "BPNL00000000BJTL", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -841,40 +1402,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "866717", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "4399", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "15635759-16", "key" : "manufacturerPartId" }, { - "value" : "NO-855213802484775534142627", + "value" : "NO-935348299524699268826561", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:ce3c1b5d-e1bc-40e9-b0e7-e3f4f60af8f3", + "catenaXId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", "partTypeInformation" : { "manufacturerPartId" : "15635759-16", "customerPartId" : "15635759-16", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door r-l", "nameAtCustomer" : "Door rear-left" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", + "partTypeInformation" : { + "ownerPartId" : "15635759-16", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Door rear-left", + "partClassification" : [ { + "value" : "Door rear-left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Door rear-left" } - } ] - }, { - "catenaXId" : "urn:uuid:3f3670fc-0f93-48dc-adbe-e264c19f0f76", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3f3670fc-0f93-48dc-adbe-e264c19f0f76", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -885,17 +1543,84 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "829696", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "4314", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "28673126-98", "key" : "manufacturerPartId" }, { - "value" : "NO-271967539341892181490227", + "value" : "NO-312287171739061318684731", "key" : "partInstanceId" }, { "value" : "Company 5", @@ -906,25 +1631,55 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:3f3670fc-0f93-48dc-adbe-e264c19f0f76", + "catenaXId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", "partTypeInformation" : { "manufacturerPartId" : "28673126-98", "customerPartId" : "28673126-98", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door r-r", "nameAtCustomer" : "Door rear-right" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", + "partTypeInformation" : { + "ownerPartId" : "28673126-98", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Door rear-right", + "partClassification" : [ { + "value" : "Door rear-right", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Door rear-right" } - } ] - }, { - "catenaXId" : "urn:uuid:9fb5d578-90ea-4fb6-8f9b-9fc76664bdca", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9fb5d578-90ea-4fb6-8f9b-9fc76664bdca", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -935,17 +1690,84 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "853381", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "3642", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "94421589-82", "key" : "manufacturerPartId" }, { - "value" : "NO-389111283172169982597449", + "value" : "NO-512057047299506284822846", "key" : "partInstanceId" }, { "value" : "Company 6", @@ -956,25 +1778,55 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:9fb5d578-90ea-4fb6-8f9b-9fc76664bdca", + "catenaXId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", "partTypeInformation" : { "manufacturerPartId" : "94421589-82", "customerPartId" : "94421589-82", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Engine hood", "nameAtCustomer" : "Engine hood" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", + "partTypeInformation" : { + "ownerPartId" : "94421589-82", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Engine hood", + "partClassification" : [ { + "value" : "Engine hood", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Engine hood" } - } ] - }, { - "catenaXId" : "urn:uuid:e099bcac-765c-4099-85aa-fc33820cb11b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e099bcac-765c-4099-85aa-fc33820cb11b", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -985,40 +1837,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "998741", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9870", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "85023955-75", "key" : "manufacturerPartId" }, { - "value" : "NO-074029923486154522516476", + "value" : "NO-935241026522592720471442", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:e099bcac-765c-4099-85aa-fc33820cb11b", + "catenaXId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", "partTypeInformation" : { "manufacturerPartId" : "85023955-75", "customerPartId" : "85023955-75", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Tailgate", "nameAtCustomer" : "Tailgate" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", + "partTypeInformation" : { + "ownerPartId" : "85023955-75", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Tailgate", + "partClassification" : [ { + "value" : "Tailgate", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Tailgate" } - } ] - }, { - "catenaXId" : "urn:uuid:8fc4157a-9e89-415c-863b-d4b003a7589e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8fc4157a-9e89-415c-863b-d4b003a7589e", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1029,40 +1978,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "712288", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "2045", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "13769860-47", "key" : "manufacturerPartId" }, { - "value" : "NO-862880098699227631303075", + "value" : "NO-797225775878072083424960", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:8fc4157a-9e89-415c-863b-d4b003a7589e", + "catenaXId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", "partTypeInformation" : { "manufacturerPartId" : "13769860-47", "customerPartId" : "13769860-47", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Fender left", "nameAtCustomer" : "Fender right" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", + "partTypeInformation" : { + "ownerPartId" : "13769860-47", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Fender right", + "partClassification" : [ { + "value" : "Fender right", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Fender right" } - } ] - }, { - "catenaXId" : "urn:uuid:0cf05553-9f38-496b-8956-68c05cf3c923", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0cf05553-9f38-496b-8956-68c05cf3c923", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1073,40 +2119,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "966218", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 8 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "3912", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "36643162-35", "key" : "manufacturerPartId" }, { - "value" : "NO-888977383302306825670562", + "value" : "NO-448918216597975248405544", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:0cf05553-9f38-496b-8956-68c05cf3c923", + "catenaXId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", "partTypeInformation" : { "manufacturerPartId" : "36643162-35", "customerPartId" : "36643162-35", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Fender right", "nameAtCustomer" : "Fender right" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", + "partTypeInformation" : { + "ownerPartId" : "36643162-35", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Fender right", + "partClassification" : [ { + "value" : "Fender right", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Fender right" } - } ] - }, { - "catenaXId" : "urn:uuid:7c01cefd-a95d-41a1-b926-1899f716fa5d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7c01cefd-a95d-41a1-b926-1899f716fa5d", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1117,40 +2260,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "164297", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 7 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "7329", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "54165444-59", "key" : "manufacturerPartId" }, { - "value" : "NO-879224686206079695395745", + "value" : "NO-234316605230590922467140", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:7c01cefd-a95d-41a1-b926-1899f716fa5d", + "catenaXId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", "partTypeInformation" : { "manufacturerPartId" : "54165444-59", "customerPartId" : "54165444-59", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Bumper front", "nameAtCustomer" : "Bumper front" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", + "partTypeInformation" : { + "ownerPartId" : "54165444-59", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Bumper front", + "partClassification" : [ { + "value" : "Bumper front", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Bumper front" } - } ] - }, { - "catenaXId" : "urn:uuid:df6cf91d-8786-4ded-8ca6-164188a88973", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:df6cf91d-8786-4ded-8ca6-164188a88973", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1161,40 +2401,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "698262", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "6642", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "22768257-25", "key" : "manufacturerPartId" }, { - "value" : "NO-590664601231771658820494", + "value" : "NO-561770140107022421469955", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:df6cf91d-8786-4ded-8ca6-164188a88973", + "catenaXId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", "partTypeInformation" : { "manufacturerPartId" : "22768257-25", "customerPartId" : "22768257-25", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Bumper rear", "nameAtCustomer" : "Bumper rear" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", + "partTypeInformation" : { + "ownerPartId" : "22768257-25", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Bumper rear", + "partClassification" : [ { + "value" : "Bumper rear", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Bumper rear" } - } ] - }, { - "catenaXId" : "urn:uuid:85d2cecd-b929-48f2-ac4e-8d231dc3b8e5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:85d2cecd-b929-48f2-ac4e-8d231dc3b8e5", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1205,40 +2542,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "685035", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "5253", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "65529521-37", "key" : "manufacturerPartId" }, { - "value" : "NO-060109064320059440067372", + "value" : "NO-472963873349845436443693", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:85d2cecd-b929-48f2-ac4e-8d231dc3b8e5", + "catenaXId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", "partTypeInformation" : { "manufacturerPartId" : "65529521-37", "customerPartId" : "65529521-37", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Exterior mirror left", "nameAtCustomer" : "Exterior mirror left" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", + "partTypeInformation" : { + "ownerPartId" : "65529521-37", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Exterior mirror left", + "partClassification" : [ { + "value" : "Exterior mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Exterior mirror left" } - } ] - }, { - "catenaXId" : "urn:uuid:2d4e9c61-5a62-4b9d-bb85-b3f4e89b4551", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2d4e9c61-5a62-4b9d-bb85-b3f4e89b4551", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1249,40 +2683,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "762163", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "3630", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "58471477-24", "key" : "manufacturerPartId" }, { - "value" : "NO-989585735679851490938818", + "value" : "NO-498373680403428328935294", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:2d4e9c61-5a62-4b9d-bb85-b3f4e89b4551", + "catenaXId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", "partTypeInformation" : { "manufacturerPartId" : "58471477-24", "customerPartId" : "58471477-24", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Exterior mirror right", "nameAtCustomer" : "Exterior mirror right" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", + "partTypeInformation" : { + "ownerPartId" : "58471477-24", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Exterior mirror right", + "partClassification" : [ { + "value" : "Exterior mirror right", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Exterior mirror right" } - } ] - }, { - "catenaXId" : "urn:uuid:50d7bee6-12f8-48cd-943b-a0cb83085d30", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:50d7bee6-12f8-48cd-943b-a0cb83085d30", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1293,40 +2824,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "430687", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "8728", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "09002013-68", "key" : "manufacturerPartId" }, { - "value" : "NO-659982750056251197070056", + "value" : "NO-814540334583663330747432", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:50d7bee6-12f8-48cd-943b-a0cb83085d30", + "catenaXId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", "partTypeInformation" : { "manufacturerPartId" : "09002013-68", "customerPartId" : "09002013-68", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Trailer coupling", "nameAtCustomer" : "Tailer coupling" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", + "partTypeInformation" : { + "ownerPartId" : "09002013-68", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Tailer coupling", + "partClassification" : [ { + "value" : "Tailer coupling", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Tailer coupling" } - } ] - }, { - "catenaXId" : "urn:uuid:80f8a7c0-b401-47e0-bee0-ed1e69537a27", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:80f8a7c0-b401-47e0-bee0-ed1e69537a27", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1337,40 +2965,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "313504", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "1917", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "43501996-98", "key" : "manufacturerPartId" }, { - "value" : "NO-327245581119007310736413", + "value" : "NO-909562885178693699037440", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:80f8a7c0-b401-47e0-bee0-ed1e69537a27", + "catenaXId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", "partTypeInformation" : { "manufacturerPartId" : "43501996-98", "customerPartId" : "43501996-98", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Dashboard", "nameAtCustomer" : "Dashboard" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", + "partTypeInformation" : { + "ownerPartId" : "43501996-98", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Dashboard", + "partClassification" : [ { + "value" : "Dashboard", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Dashboard" } - } ] - }, { - "catenaXId" : "urn:uuid:f8b0853d-f8a5-4f83-ab3d-250c6293cd1e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f8b0853d-f8a5-4f83-ab3d-250c6293cd1e", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1381,40 +3106,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "511397", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2060", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "77795937-13", "key" : "manufacturerPartId" }, { - "value" : "NO-154719395121650994469425", + "value" : "NO-859483763601915613763162", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:f8b0853d-f8a5-4f83-ab3d-250c6293cd1e", + "catenaXId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", "partTypeInformation" : { "manufacturerPartId" : "77795937-13", "customerPartId" : "77795937-13", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Steering wheel", "nameAtCustomer" : "Steering wheel" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", + "partTypeInformation" : { + "ownerPartId" : "77795937-13", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Steering wheel", + "partClassification" : [ { + "value" : "Steering wheel", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Steering wheel" } - } ] - }, { - "catenaXId" : "urn:uuid:9c16c833-e997-46d3-bc5e-2163214b88dc", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9c16c833-e997-46d3-bc5e-2163214b88dc", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1425,40 +3247,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "618145", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 26 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "9419", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "20125432-59", "key" : "manufacturerPartId" }, { - "value" : "NO-181750821611027214108041", + "value" : "NO-381058856694394911749515", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:9c16c833-e997-46d3-bc5e-2163214b88dc", + "catenaXId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", "partTypeInformation" : { "manufacturerPartId" : "20125432-59", "customerPartId" : "20125432-59", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Indicator left", "nameAtCustomer" : "Indicator left" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", + "partTypeInformation" : { + "ownerPartId" : "20125432-59", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Indicator left", + "partClassification" : [ { + "value" : "Indicator left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Indicator left" } - } ] - }, { - "catenaXId" : "urn:uuid:61ff5847-7990-46e6-aacd-003e7fcaf4ad", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:61ff5847-7990-46e6-aacd-003e7fcaf4ad", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1469,40 +3388,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "878250", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 23 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "4207", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "19073706-76", "key" : "manufacturerPartId" }, { - "value" : "NO-587897487047974658338504", + "value" : "NO-738810714196805495613608", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:61ff5847-7990-46e6-aacd-003e7fcaf4ad", + "catenaXId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", "partTypeInformation" : { "manufacturerPartId" : "19073706-76", "customerPartId" : "19073706-76", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Indicator right", "nameAtCustomer" : "Indicator right" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", + "partTypeInformation" : { + "ownerPartId" : "19073706-76", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Indicator right", + "partClassification" : [ { + "value" : "Indicator right", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Indicator right" } - } ] - }, { - "catenaXId" : "urn:uuid:1f8bd4b2-cb06-4b33-b4b1-09f271bdf0af", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1f8bd4b2-cb06-4b33-b4b1-09f271bdf0af", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1513,40 +3529,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "970830", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "7314", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "45415162-57", "key" : "manufacturerPartId" }, { - "value" : "NO-106187872320460336908042", + "value" : "NO-706869576108504911888487", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:1f8bd4b2-cb06-4b33-b4b1-09f271bdf0af", + "catenaXId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", "partTypeInformation" : { "manufacturerPartId" : "45415162-57", "customerPartId" : "45415162-57", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Led headlight", "nameAtCustomer" : "Led headlight" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", + "partTypeInformation" : { + "ownerPartId" : "45415162-57", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Led headlight", + "partClassification" : [ { + "value" : "Led headlight", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Led headlight" } - } ] - }, { - "catenaXId" : "urn:uuid:e4293081-e903-490f-95da-5d709eeb167b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e4293081-e903-490f-95da-5d709eeb167b", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1557,40 +3670,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "190425", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "6691", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "78141846-87", "key" : "manufacturerPartId" }, { - "value" : "NO-393972812624229658262629", + "value" : "NO-302124803790642780585327", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:e4293081-e903-490f-95da-5d709eeb167b", + "catenaXId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", "partTypeInformation" : { "manufacturerPartId" : "78141846-87", "customerPartId" : "78141846-87", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Starter motor", "nameAtCustomer" : "Starter motor" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", + "partTypeInformation" : { + "ownerPartId" : "78141846-87", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Starter motor", + "partClassification" : [ { + "value" : "Starter motor", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Starter motor" } - } ] - }, { - "catenaXId" : "urn:uuid:8cb3893a-1f6a-4e1b-92a4-7f7810de2579", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8cb3893a-1f6a-4e1b-92a4-7f7810de2579", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1601,40 +3811,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "172988", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "7711", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "81324139-23", "key" : "manufacturerPartId" }, { - "value" : "NO-909939095900327693580174", + "value" : "NO-522630666682237918821842", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:8cb3893a-1f6a-4e1b-92a4-7f7810de2579", + "catenaXId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", "partTypeInformation" : { "manufacturerPartId" : "81324139-23", "customerPartId" : "81324139-23", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Alternator", "nameAtCustomer" : "Alternator" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", + "partTypeInformation" : { + "ownerPartId" : "81324139-23", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Alternator", + "partClassification" : [ { + "value" : "Alternator", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Alternator" } - } ] - }, { - "catenaXId" : "urn:uuid:46f2fde5-9b00-408b-b9cc-8f45828023a5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:46f2fde5-9b00-408b-b9cc-8f45828023a5", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1645,40 +3952,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "532019", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "2963", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "57929013-09", "key" : "manufacturerPartId" }, { - "value" : "NO-679241392832901493088472", + "value" : "NO-756871575834670298298957", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:46f2fde5-9b00-408b-b9cc-8f45828023a5", + "catenaXId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", "partTypeInformation" : { "manufacturerPartId" : "57929013-09", "customerPartId" : "57929013-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "AC compressor", "nameAtCustomer" : "Air conditioning compressor" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", + "partTypeInformation" : { + "ownerPartId" : "57929013-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Air conditioning compressor", + "partClassification" : [ { + "value" : "Air conditioning compressor", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Air conditioning compressor" } - } ] - }, { - "catenaXId" : "urn:uuid:2f208edc-a2fd-4354-8241-13b3a09cda76", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2f208edc-a2fd-4354-8241-13b3a09cda76", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1689,40 +4093,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "131076", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "5508", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "61184040-23", "key" : "manufacturerPartId" }, { - "value" : "NO-032233761088079996920030", + "value" : "NO-524620221933669424039127", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:2f208edc-a2fd-4354-8241-13b3a09cda76", + "catenaXId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", "partTypeInformation" : { "manufacturerPartId" : "61184040-23", "customerPartId" : "61184040-23", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Taillight rear", "nameAtCustomer" : "Taillight rear" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", + "partTypeInformation" : { + "ownerPartId" : "61184040-23", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Taillight rear", + "partClassification" : [ { + "value" : "Taillight rear", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Taillight rear" } - } ] - }, { - "catenaXId" : "urn:uuid:73ada111-3f96-449f-91dc-3d2148b75dd2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:73ada111-3f96-449f-91dc-3d2148b75dd2", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1733,40 +4234,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "696401", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "2883", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "78744126-74", "key" : "manufacturerPartId" }, { - "value" : "NO-097541816810965916186800", + "value" : "NO-613060820318211072608449", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:73ada111-3f96-449f-91dc-3d2148b75dd2", + "catenaXId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", "partTypeInformation" : { "manufacturerPartId" : "78744126-74", "customerPartId" : "78744126-74", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Taillight front", "nameAtCustomer" : "Taillight front" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", + "partTypeInformation" : { + "ownerPartId" : "78744126-74", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Taillight front", + "partClassification" : [ { + "value" : "Taillight front", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Taillight front" } - } ] - }, { - "catenaXId" : "urn:uuid:1797817c-a4bc-4454-ab39-e217fa2e61a6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1797817c-a4bc-4454-ab39-e217fa2e61a6", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1777,40 +4375,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "988355", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "6092", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "12093297-03", "key" : "manufacturerPartId" }, { - "value" : "NO-887127580723098533528050", + "value" : "NO-295509185072402053464558", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:1797817c-a4bc-4454-ab39-e217fa2e61a6", + "catenaXId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", "partTypeInformation" : { "manufacturerPartId" : "12093297-03", "customerPartId" : "12093297-03", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Axle part front", "nameAtCustomer" : "Axle part front" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", + "partTypeInformation" : { + "ownerPartId" : "12093297-03", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Axle part front", + "partClassification" : [ { + "value" : "Axle part front", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Axle part front" } - } ] - }, { - "catenaXId" : "urn:uuid:3dc3a03a-1d4b-4cca-b3ae-10eb2a360f4c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3dc3a03a-1d4b-4cca-b3ae-10eb2a360f4c", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1821,40 +4516,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "173380", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "5710", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "88111709-49", "key" : "manufacturerPartId" }, { - "value" : "NO-109012633803010342946533", + "value" : "NO-771993242485837410678109", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:3dc3a03a-1d4b-4cca-b3ae-10eb2a360f4c", + "catenaXId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", "partTypeInformation" : { "manufacturerPartId" : "88111709-49", "customerPartId" : "88111709-49", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Axle part rear", "nameAtCustomer" : "Axle part rear" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", + "partTypeInformation" : { + "ownerPartId" : "88111709-49", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Axle part rear", + "partClassification" : [ { + "value" : "Axle part rear", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Axle part rear" } - } ] - }, { - "catenaXId" : "urn:uuid:15e5cfb0-eaf2-4f8f-9cc0-ab418ad84e8c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:15e5cfb0-eaf2-4f8f-9cc0-ab418ad84e8c", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1865,40 +4657,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "510968", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "5089", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "00871379-44", "key" : "manufacturerPartId" }, { - "value" : "NO-331879966666731578208643", + "value" : "NO-403886949080884450587727", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:15e5cfb0-eaf2-4f8f-9cc0-ab418ad84e8c", + "catenaXId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", "partTypeInformation" : { "manufacturerPartId" : "00871379-44", "customerPartId" : "00871379-44", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Chassis", "nameAtCustomer" : "Chassis" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", + "partTypeInformation" : { + "ownerPartId" : "00871379-44", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Chassis", + "partClassification" : [ { + "value" : "Chassis", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Chassis" } - } ] - }, { - "catenaXId" : "urn:uuid:d8bb09a2-c58d-4712-b1ac-f52bde8fd870", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d8bb09a2-c58d-4712-b1ac-f52bde8fd870", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1909,40 +4798,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "632367", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6913", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "08901347-87", "key" : "manufacturerPartId" }, { - "value" : "NO-556982932707350623592331", + "value" : "NO-567537304722173805639181", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:d8bb09a2-c58d-4712-b1ac-f52bde8fd870", + "catenaXId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", "partTypeInformation" : { "manufacturerPartId" : "08901347-87", "customerPartId" : "08901347-87", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Rims", "nameAtCustomer" : "Rims" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", + "partTypeInformation" : { + "ownerPartId" : "08901347-87", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Rims", + "partClassification" : [ { + "value" : "Rims", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Rims" } - } ] - }, { - "catenaXId" : "urn:uuid:371bbc66-500d-4d65-978d-10606e09663f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:371bbc66-500d-4d65-978d-10606e09663f", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1953,40 +4939,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "449891", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "9043", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "45863316-60", "key" : "manufacturerPartId" }, { - "value" : "NO-957907093240562222194301", + "value" : "NO-754930692443785638020334", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:371bbc66-500d-4d65-978d-10606e09663f", + "catenaXId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", "partTypeInformation" : { "manufacturerPartId" : "45863316-60", "customerPartId" : "45863316-60", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Tires", "nameAtCustomer" : "Tires" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", + "partTypeInformation" : { + "ownerPartId" : "45863316-60", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Tires", + "partClassification" : [ { + "value" : "Tires", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Tires" } - } ] - }, { - "catenaXId" : "urn:uuid:8ddd8fe0-1b4f-44b4-90f3-a8f68e551ac7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8ddd8fe0-1b4f-44b4-90f3-a8f68e551ac7", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -1997,17 +5080,151 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 19, + "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" : 57, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "childItems" : [ { + "catenaXId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B3NX", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", "bpnl" : "BPNL00000003B2OM", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "514312", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1780", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003B2OM", "key" : "manufacturerId" }, { - "value" : "1O222E8-43", + "value" : "42555H1-52", "key" : "manufacturerPartId" }, { - "value" : "NO-109781613760321014950361", + "value" : "NO-971749365763688998182907", "key" : "partInstanceId" }, { "value" : "Company 2", @@ -2018,18 +5235,116 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B2OM", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:8ddd8fe0-1b4f-44b4-90f3-a8f68e551ac7", + "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", "partTypeInformation" : { - "manufacturerPartId" : "1O222E8-43", - "customerPartId" : "1O222E8-43", - "classification" : "component", + "manufacturerPartId" : "42555H1-52", + "customerPartId" : "42555H1-52", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Transmission", "nameAtCustomer" : "Transmission" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "manufacturerId" : "BPNL00000003B2OM", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:071a570c-7f67-441d-b6f5-7c9b8a54ac8e", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2ecd94b8-ca32-4e01-81be-58d0e8cba1e6", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4f3a4c9b-0ca3-440e-8ca0-650e2304dc91", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "partTypeInformation" : { + "ownerPartId" : "42555H1-52", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Transmission", + "partClassification" : [ { + "value" : "Transmission", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "nameAtOwner" : "Transmission" } } ], - "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "urn:samm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { "productSpecificParameters" : { "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], "driveType" : "combustion engine", @@ -2070,10 +5385,10 @@ "documentTitle" : "Title A" } ] }, - "catenaXId" : "urn:uuid:8ddd8fe0-1b4f-44b4-90f3-a8f68e551ac7", + "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", "identification" : { "localIdentifiers" : [ { - "value" : "NO-109781613760321014950361", + "value" : "NO-971749365763688998182907", "key" : "PartInstanceID" } ], "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", @@ -2139,109 +5454,12 @@ "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] } } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Carbon Steel", - "recycledContent" : 46, - "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" : 70, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8ddd8fe0-1b4f-44b4-90f3-a8f68e551ac7", - "childItems" : [ { - "catenaXId" : "urn:uuid:819816fe-7346-49a5-b528-cec5b5367a71", - "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9da45c9a-9052-494c-8328-28e474ee8ae2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e5cb42ff-4113-4e50-a1d0-6cd71b4feb4a", - "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:819816fe-7346-49a5-b528-cec5b5367a71", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:819816fe-7346-49a5-b528-cec5b5367a71", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:819816fe-7346-49a5-b528-cec5b5367a71", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003B2OM", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -2252,14 +5470,14 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "Engineering Plastics", "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 42, + "recycledContent" : 24, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -2269,7 +5487,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 52, + "recycledContent" : 40, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -2278,15 +5496,128 @@ "aggregateState" : "solid", "materialAbbreviation" : "GF30" } ] - } ] - }, { - "catenaXId" : "urn:uuid:9da45c9a-9052-494c-8328-28e474ee8ae2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9da45c9a-9052-494c-8328-28e474ee8ae2", + } ], + "catenaXId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "914874", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "9797", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "partTypeInformation" : { + "manufacturerPartId" : "IS-82", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", "customers" : [ { "businessPartner" : "BPNL00000003B0Q0", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -2297,74 +5628,188 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "childItems" : [ { + "catenaXId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "183972", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "5873", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "78201F7-85", + "value" : "18676V9-48", "key" : "manufacturerPartId" }, { - "value" : "NO-071438122085123779677407", + "value" : "NO-695360115480032480516118", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:9da45c9a-9052-494c-8328-28e474ee8ae2", + "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", "partTypeInformation" : { - "manufacturerPartId" : "78201F7-85", - "customerPartId" : "78201F7-85", - "classification" : "component", + "manufacturerPartId" : "18676V9-48", + "customerPartId" : "18676V9-48", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9da45c9a-9052-494c-8328-28e474ee8ae2", + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { - "catenaXId" : "urn:uuid:abd54850-bd69-434e-b357-d121a9e0874b", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4e7a7f9b-5acc-4bc6-a4f5-82b5dda8bc7d", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] - } ] - }, { - "catenaXId" : "urn:uuid:abd54850-bd69-434e-b357-d121a9e0874b", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:abd54850-bd69-434e-b357-d121a9e0874b", + "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "NTIER Product" + "ownerPartId" : "18676V9-48", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Sensor", + "partClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "nameAtOwner" : "Sensor" } } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "customers" : [ { + "businessPartner" : "BPNL00000003B3NX", + "parentItems" : [ { + "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "NTIER Product", "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 89, + "recycledContent" : 8, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -2374,7 +5819,7 @@ "materialAbbreviation" : "" }, { "materialName" : "Other", - "recycledContent" : 42, + "recycledContent" : 84, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -2383,34 +5828,128 @@ "aggregateState" : "solid", "materialAbbreviation" : "" } ] - } ] - }, { - "catenaXId" : "urn:uuid:e5cb42ff-4113-4e50-a1d0-6cd71b4feb4a", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { + } ], + "catenaXId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "864400", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "1916", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", + "value" : "BPNL00000003B0Q0", "key" : "batchId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:e5cb42ff-4113-4e50-a1d0-6cd71b4feb4a", + "catenaXId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" + "manufacturerPartId" : "RT-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" } } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e5cb42ff-4113-4e50-a1d0-6cd71b4feb4a", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003B0Q0", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -2421,9 +5960,13 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "childItems" : [ ] } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Glue", "materialClass" : "6.2", @@ -2435,18 +5978,127 @@ "materialAbbreviation" : "GL338" } ] } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e5cb42ff-4113-4e50-a1d0-6cd71b4feb4a", + "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "284458", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 23 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "4331", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] - } ] - }, { - "catenaXId" : "urn:uuid:86e8f522-abc9-4b06-a5cc-58c11aeece5f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:86e8f522-abc9-4b06-a5cc-58c11aeece5f", + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "partTypeInformation" : { + "manufacturerPartId" : "VP-89", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AXS3", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -2457,36 +6109,12 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003B5MJ", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", - "key" : "manufacturerId" - }, { - "value" : "57980J0-01", - "key" : "manufacturerPartId" - }, { - "value" : "NO-296816528114238523443674", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:86e8f522-abc9-4b06-a5cc-58c11aeece5f", - "partTypeInformation" : { - "manufacturerPartId" : "57980J0-01", - "customerPartId" : "57980J0-01", - "classification" : "component", - "nameAtManufacturer" : "ECU", - "nameAtCustomer" : "ECU" - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Glue", - "recycledContent" : 18, + "recycledContent" : 65, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -2496,67 +6124,226 @@ "materialAbbreviation" : "GL338" } ] } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:86e8f522-abc9-4b06-a5cc-58c11aeece5f", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", "childItems" : [ { - "catenaXId" : "urn:uuid:e3965839-1edc-47a2-845a-fdde4a3e48b2", + "catenaXId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", "quantity" : { "quantityNumber" : 0.3301, "measurementUnit" : "unit:kilogram" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b82d722c-6608-49c9-bf36-1f9da2924cfb", + "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7620efcc-ffc8-46de-958b-2dff3dc3dd9e", + "catenaXId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", "quantity" : { "quantityNumber" : 0.2001, "measurementUnit" : "unit:kilogram" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:e3965839-1edc-47a2-845a-fdde4a3e48b2", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { + } ], + "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "bpnl" : "BPNL00000003B5MJ", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "213226", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "5794", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", + "value" : "BPNL00000003B5MJ", "key" : "manufacturerId" }, { - "value" : "BID12345678", - "key" : "batchId" + "value" : "56278T7-12", + "key" : "manufacturerPartId" + }, { + "value" : "NO-014305725252821672580588", + "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B5MJ", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:e3965839-1edc-47a2-845a-fdde4a3e48b2", + "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" + "manufacturerPartId" : "56278T7-12", + "customerPartId" : "56278T7-12", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "manufacturerId" : "BPNL00000003B5MJ", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0ddcd695-9464-464a-b487-14a53f36023a", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:aa426b78-e61f-4c95-90c3-635f9ebc0233", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d33b687a-7663-42c5-98a4-39eddc9ff979", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "partTypeInformation" : { + "ownerPartId" : "56278T7-12", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ECU", + "partClassification" : [ { + "value" : "ECU", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "nameAtOwner" : "ECU" } } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e3965839-1edc-47a2-845a-fdde4a3e48b2", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", "customers" : [ { "businessPartner" : "BPNL00000003B5MJ", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -2567,14 +6354,14 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "Glue", "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 53, + "recycledContent" : 25, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -2584,7 +6371,7 @@ "materialAbbreviation" : "AL7" }, { "materialName" : "Other", - "recycledContent" : 17, + "recycledContent" : 77, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -2593,15 +6380,128 @@ "aggregateState" : "solid", "materialAbbreviation" : "" } ] - } ] - }, { - "catenaXId" : "urn:uuid:b82d722c-6608-49c9-bf36-1f9da2924cfb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b82d722c-6608-49c9-bf36-1f9da2924cfb", + } ], + "catenaXId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "540047", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "7664", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "manufacturerId" : "BPNL00000003AXS3", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "partTypeInformation" : { + "manufacturerPartId" : "ID-97", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AXS3", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -2612,74 +6512,188 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "childItems" : [ { + "catenaXId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "24984", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "7508", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "59074C0-19", + "value" : "80422J1-66", "key" : "manufacturerPartId" }, { - "value" : "NO-065303236977794616276558", + "value" : "NO-114299309749179970389865", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:b82d722c-6608-49c9-bf36-1f9da2924cfb", + "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", "partTypeInformation" : { - "manufacturerPartId" : "59074C0-19", - "customerPartId" : "59074C0-19", - "classification" : "component", + "manufacturerPartId" : "80422J1-66", + "customerPartId" : "80422J1-66", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b82d722c-6608-49c9-bf36-1f9da2924cfb", + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { - "catenaXId" : "urn:uuid:2196e5d8-75c5-4182-8d22-95ea5dc47712", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a66063b1-92d4-42f1-b551-b04f4bc4e8e9", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] - } ] - }, { - "catenaXId" : "urn:uuid:2196e5d8-75c5-4182-8d22-95ea5dc47712", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:2196e5d8-75c5-4182-8d22-95ea5dc47712", + "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" + "ownerPartId" : "80422J1-66", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Sensor", + "partClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "nameAtOwner" : "Sensor" } } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "customers" : [ { + "businessPartner" : "BPNL00000003B3NX", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "Engineering Plastics", "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 32, + "recycledContent" : 63, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -2689,7 +6703,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 31, + "recycledContent" : 16, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -2698,57 +6712,146 @@ "aggregateState" : "solid", "materialAbbreviation" : "GF30" } ] - } ] - }, { - "catenaXId" : "urn:uuid:7620efcc-ffc8-46de-958b-2dff3dc3dd9e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7620efcc-ffc8-46de-958b-2dff3dc3dd9e", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "631562", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "2022", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "81893D3-11", - "key" : "manufacturerPartId" - }, { - "value" : "NO-945817031513114552059270", - "key" : "partInstanceId" + "key" : "batchId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:7620efcc-ffc8-46de-958b-2dff3dc3dd9e", + "catenaXId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", "partTypeInformation" : { - "manufacturerPartId" : "81893D3-11", - "customerPartId" : "81893D3-11", - "classification" : "component", - "nameAtManufacturer" : "Engineering Plastics", - "nameAtCustomer" : "Engineering Plastics" + "manufacturerPartId" : "HP-63", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" } } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "Engineering Plastics", "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 28, + "recycledContent" : 19, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -2758,7 +6861,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 50, + "recycledContent" : 70, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -2767,26 +6870,136 @@ "aggregateState" : "solid", "materialAbbreviation" : "GF30" } ] - } ] - }, { - "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { - "productConditions" : "at least 1990 model", - "desiredPrice" : { - "cost" : 15340, - "currency" : "EUR" + } ], + "catenaXId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "744179", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9997", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "63678I1-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-265189266576051308905480", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] }, - "returnConditions" : "Wishes to buy", - "requestDate" : "2022-01-01", - "needsReturn" : true, - "latestReturnDate" : "2025-01-01" + "catenaXId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "partTypeInformation" : { + "manufacturerPartId" : "63678I1-57", + "customerPartId" : "63678I1-57", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "partTypeInformation" : { + "ownerPartId" : "63678I1-57", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Engineering Plastics", + "partClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "Engineering Plastics" + } } ], - "catenaXId" : "urn:uuid:c6611117-6278-4988-ba5e-90439204a20c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c6611117-6278-4988-ba5e-90439204a20c", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003B0Q0", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -2797,17 +7010,19 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + } ] + }, { + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "38049661-08", "key" : "manufacturerPartId" }, { - "value" : "NO-708542746750467428983983", + "value" : "NO-934355851064683759352825", "key" : "partInstanceId" }, { "value" : "Company 1", @@ -2818,26 +7033,571 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:c6611117-6278-4988-ba5e-90439204a20c", + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", "partTypeInformation" : { "manufacturerPartId" : "38049661-08", "customerPartId" : "38049661-08", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Battery", "nameAtCustomer" : "Battery" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "pack" + "urn:samm: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" : false, + "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" } ], - "productType" : "pack" + "discolored" : true, + "price" : { + "currency" : "EUR", + "value" : 250 + }, + "missingParts" : true, + "dismantled" : true, + "marketplaceProduct" : { + "manufacturerPartNumber" : "38049661-08", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "https://123", + "oeNumber" : "NO-934355851064683759352825", + "category" : { + "subCategory" : [ "Battery" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "Company 1", + "brand" : "Brand 1", + "productDescription" : "Battery" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e71d7b26-4f7a-4905-bf3e-0df598badc01", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5237a522-3fa1-4af1-a8d9-ab0aa82e13cc", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:01c089eb-b189-476a-9acb-323a7bc8e19a", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8aefd359-d90a-4c0f-abbb-e99faeeba771", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ca3056fe-a946-405b-9966-c4b930d7acdd", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7bb21073-8689-4939-b3b8-85d9fdbd2ae3", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "38049661-08", + "manufacturerPartId" : "38049661-08" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a Battery", + "class" : { + "code" : "27-05-02-91", + "definition" : "Traction battery, starter battery (parts)" + }, + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-04-15", + "version" : 1.3, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 1704.0408, + "width" : 1704, + "length" : 2025, + "weight" : 533, + "height" : 278 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 16 + } + }, + "commercial" : { + "placedOnMarket" : "2020-04-10", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-934355851064683759352825", + "key" : "PartInstanceID" + } ], + "gtin" : " 94050133", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "516138614" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Passport", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2023-06-09", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 2.9809 ] + }, + "id" : "PP9529" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Others" + } ], + "critical" : [ "Lithium" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 109 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AXS3", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 81, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 46, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 19, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "childItems" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "752234", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "8442", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "partTypeInformation" : { + "ownerPartId" : "38049661-08", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Battery", + "partClassification" : [ { + "value" : "Battery", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Battery" + } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -3062,7 +7822,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-708542746750467428983983", + "batteryIDDMCCode" : "NO-934355851064683759352825", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -3073,384 +7833,506 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "pack" + } ], + "productType" : "pack" + } ], + "urn:samm: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:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 24, + "recycledContent" : 35, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", - "value" : 5.4 + "value" : 1.2 }, "aggregateState" : "solid", "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 20, + "recycledContent" : 29, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", - "value" : 11.75 + "value" : 2.5 }, "aggregateState" : "solid", "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 21, + "recycledContent" : 36, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", - "value" : 1.23 + "value" : 0.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" : false, - "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" : "38049661-08", - "technicalSpecification" : [ { - "technicalValue" : "RYtGKbgicZaHCBRQDSx", - "key" : "JxkyvRnL" - } ], - "productLink" : "https://123", - "oeNumber" : "NO-708542746750467428983983", - "category" : { - "subCategory" : [ "Battery" ], - "mainCategory" : [ "Audio, video, navigation" ] - }, - "originalManufacturer" : "Company 1", - "brand" : "Brand 1", - "productDescription" : "Battery" - }, - "sku" : "1002090, xYz.09, ABcXYZ", - "mileage" : 120000.06 - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "childItems" : [ { + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", "quantity" : { - "unit" : "unit:piece", - "value" : 1 + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-708542746750467428983983", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c6611117-6278-4988-ba5e-90439204a20c", - "childItems" : [ { - "catenaXId" : "urn:uuid:bd014aa9-0700-43e8-a054-1cfab8cd2422", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3b58dfd1-da92-41f7-b075-d72b179100cb", + "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:44347dec-21d1-47aa-b2a7-f959bf9d424b", + "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2b626a2e-cff7-4005-a867-3dc13791ed5d", + "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fdac5598-41cc-4323-8068-92b5e9729ac6", + "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8e57925f-86b5-4d8c-ad9c-efb9c0a55503", + "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:bd014aa9-0700-43e8-a054-1cfab8cd2422", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bd014aa9-0700-43e8-a054-1cfab8cd2422", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "955212", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "5228", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-006060737324385030528643", + "value" : "NO-919179362377079580444521", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:bd014aa9-0700-43e8-a054-1cfab8cd2422", + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:673c28c2-708b-433f-82db-56e61f8f66ca", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9f534261-dfb6-4baa-b8a7-ae313aa5b3ce", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0f89bb5e-a93f-4fdc-87be-2abf0129cc33", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fac73553-c929-43c8-a4db-6a916522a098", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:796ea6f2-4b09-4674-87b0-ed3029417b95", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d8f61b46-569f-4d31-9641-e545b5622dac", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9dcd0291-a393-4234-b5e3-d4a9c275ac0b", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8a77c60e-723e-4d59-84ea-09144b28ff30", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:041a9a8b-b424-4f5d-8374-3f730d6313cf", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0c2bd490-f173-4531-ab58-4f7a9a9888f3", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ec6040d9-2a3c-46af-90d4-9644cc83bc9b", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -3675,7 +8557,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-006060737324385030528643", + "batteryIDDMCCode" : "NO-919179362377079580444521", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -3686,40 +8568,7 @@ }, "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" : 8, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", @@ -3730,99 +8579,99 @@ "value" : 1 }, "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" } }, "typology" : { "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", + "description" : "This is the product description of a module", "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" }, "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" + "issueDate" : "2023-03-14", + "version" : 1.4, + "status" : "Approved" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 + "diameter" : 229.6247, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 }, "lifespan" : { - "unit" : "unit:day", - "value" : 36 + "unit" : "unit:year", + "value" : 15 } }, "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 + "placedOnMarket" : "2022-01-16", + "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-006060737324385030528643", + "value" : "NO-919179362377079580444521", "key" : "PartInstanceID" } ], - "gtin" : "12345678", + "gtin" : " 45252906", "additionalCode" : [ { "name" : "TARIC", - "value" : "8703 24 10 00" + "value" : "696133927" } ] }, "sources" : { "optional" : [ { "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, - "name" : "other" + "name" : "sustainability" } ], "mandatory" : { "safetyTransportation" : { - "header" : "Sustainability Document Material XY", + "header" : "Shipping guidelines", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "SubstanceOfConcern", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", + "header" : "Laboratory test results HVB Module HV MODUL", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "safetyPackaging" : { - "header" : "Sustainability Document Material XY", + "header" : "Packaging instruction for HVB Module HV MODUL", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "declarationOfConformity" : [ { "document" : { "header" : "Sustainability Document Material XY", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "name" : "other" } ] @@ -3830,215 +8679,88 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2000-01-01", + "date" : "2023-03-29", "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" + "description" : "Battery test", + "title" : "Maintenance Service" } ], - "reusablePackaging" : true, + "reusablePackaging" : false, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", "producerId" : "BPNL1234567890ZZ" } ], "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", + "unit" : "unit:percent", "name" : "Lead", - "location" : "Housing", + "location" : "HvbCell", "concentration" : { - "left" : [ 3.592682E37 ] + "left" : [ 0.2175 ] }, - "id" : "RC0402" + "id" : "TH5675" } ] }, "additionalData" : [ { "data" : "23", "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", + "data" : "", + "description" : "", + "label" : "", "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" + "dataType" : "xsd:string", + "typeUnit" : "" } } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", + "description" : "", + "label" : "", "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" + "dataType" : "xsd:string", + "typeUnit" : "" } } ], "sustainability" : { "material" : [ { "recycled" : false, - "renewable" : true, + "renewable" : false, "percentage" : 5, - "name" : "Aluminium" + "name" : "Manganese" } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], + "critical" : [ "Nickel" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { "extWBCSD_otherOperatorName" : "NSF", "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { + "productOrSectorSpecificRules" : [ { "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } + } ] } ], - "carbonContentTotal" : 2.5 + "carbonContentTotal" : 118 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL1234567890ZZ", + "importer" : "BPNL00000003B2OM", "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AVTH" } } } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bd014aa9-0700-43e8-a054-1cfab8cd2422", - "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6ff64eb1-b204-43a4-9b82-b51c01a05be8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:957350e5-96c4-47fd-b1ef-cd01b4a12711", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:aecab39a-8084-44e4-ad43-ae410ebce53a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3adf5f22-8ec4-41b4-bdaa-966d80e9a165", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a1d46707-c691-4f5c-b8fa-de643c0ecae5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:008b317b-599e-40af-b3a7-1ec4d097212b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:68920ee8-b982-4e06-abca-a6bbc5dc4b5a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f29148a0-3c5c-4963-b3e7-d8b18080e0d1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:bcc80e05-e4cf-4dcb-b8c9-fe7cdaf767e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5a3e9995-2631-4683-b156-ed5db3ebc4b9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Sealant" - } + "productType" : "module" } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -4049,9 +8771,13 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItems" : [ ] } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Sealant", "materialClass" : "6.3", @@ -4601,151 +9327,128 @@ "weight" : "0.11", "materialAbbreviation" : "SEL3321" } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + } ], + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "439214", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "7990", + "materialNameStandardizedValue" : "PP-TD10" }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] - } ] - }, { - "catenaXId" : "urn:uuid:6ff64eb1-b204-43a4-9b82-b51c01a05be8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6ff64eb1-b204-43a4-9b82-b51c01a05be8", + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "partTypeInformation" : { + "manufacturerPartId" : "ZP-94", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AXS3", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:50a7db2d-2370-45db-99a0-1041c9f616fa", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -4756,9 +9459,111 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-09-23", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "825197", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "6699", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -4766,31 +9571,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-857995664479323901344849", + "value" : "NO-870119299818458530530204", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:6ff64eb1-b204-43a4-9b82-b51c01a05be8", + "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ff6d56f4-ba0a-41a7-9eac-644afb77c476", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -4799,7 +9629,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -5024,7 +9872,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-857995664479323901344849", + "batteryIDDMCCode" : "NO-870119299818458530530204", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -5035,32 +9883,206 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6ff64eb1-b204-43a4-9b82-b51c01a05be8", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 64, + "materialClass" : "8.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ] + } ], + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "284332", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "4702", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "partTypeInformation" : { + "manufacturerPartId" : "PB-87", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b857d83b-24ba-4011-8670-afa57caee306", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-05-23", + "currentStateOfHealthTimestamp" : "2018-07-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-19", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -5069,65 +10091,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Cathode Material" - } } ], - "bpnl" : "BPNL00000003B0Q0", - "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" : 49, - "materialClass" : "8.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:957350e5-96c4-47fd-b1ef-cd01b4a12711", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:957350e5-96c4-47fd-b1ef-cd01b4a12711", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "152028", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "3992", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -5135,31 +10167,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-853124883969667129445509", + "value" : "NO-935980723922638521184633", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:957350e5-96c4-47fd-b1ef-cd01b4a12711", + "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:090a652a-eb82-4bd2-b922-9552d0dc119a", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -5168,7 +10225,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -5393,7 +10468,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-853124883969667129445509", + "batteryIDDMCCode" : "NO-935980723922638521184633", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -5404,32 +10479,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:957350e5-96c4-47fd-b1ef-cd01b4a12711", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-03-13", + "currentStateOfHealthTimestamp" : "2023-12-23", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-22", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -5438,65 +10539,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Cathode Material" - } } ], - "bpnl" : "BPNL00000003B0Q0", - "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" : 43, - "materialClass" : "8.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:aecab39a-8084-44e4-ad43-ae410ebce53a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:aecab39a-8084-44e4-ad43-ae410ebce53a", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "139981", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "2416", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -5504,31 +10615,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-692875806316125826798428", + "value" : "NO-238580062345830034707563", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:aecab39a-8084-44e4-ad43-ae410ebce53a", + "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9b2a9d07-362d-4280-b197-7560f8b83466", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -5537,7 +10673,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -5762,7 +10916,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-692875806316125826798428", + "batteryIDDMCCode" : "NO-238580062345830034707563", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -5773,32 +10927,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:aecab39a-8084-44e4-ad43-ae410ebce53a", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-05-10", + "currentStateOfHealthTimestamp" : "2016-01-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-21", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -5807,28 +10987,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3adf5f22-8ec4-41b4-bdaa-966d80e9a165", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3adf5f22-8ec4-41b4-bdaa-966d80e9a165", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "595129", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "5497", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -5836,31 +11063,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-311566371175038172877649", + "value" : "NO-455702864631548437744445", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:3adf5f22-8ec4-41b4-bdaa-966d80e9a165", + "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:85e9413f-feb0-49ac-96eb-500434d4cd67", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -5869,7 +11121,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -6094,7 +11364,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-311566371175038172877649", + "batteryIDDMCCode" : "NO-455702864631548437744445", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -6105,32 +11375,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3adf5f22-8ec4-41b4-bdaa-966d80e9a165", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-04-01", + "currentStateOfHealthTimestamp" : "2015-10-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-12", + "currentStateOfHealthTimestamp" : "2024-03-09", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -6139,28 +11435,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a1d46707-c691-4f5c-b8fa-de643c0ecae5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a1d46707-c691-4f5c-b8fa-de643c0ecae5", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "585154", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "5298", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -6168,31 +11511,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-436207346879295345806767", + "value" : "NO-979377149851032251466611", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a1d46707-c691-4f5c-b8fa-de643c0ecae5", + "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7c569605-cb6f-4c8a-8eea-023f57a54b2f", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -6201,7 +11569,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -6426,7 +11812,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-436207346879295345806767", + "batteryIDDMCCode" : "NO-979377149851032251466611", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -6437,32 +11823,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a1d46707-c691-4f5c-b8fa-de643c0ecae5", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-11-26", + "currentStateOfHealthTimestamp" : "2022-06-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-15", + "currentStateOfHealthTimestamp" : "2024-02-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -6471,28 +11883,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:008b317b-599e-40af-b3a7-1ec4d097212b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:008b317b-599e-40af-b3a7-1ec4d097212b", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "659956", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "7569", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -6500,31 +11959,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-822495796742144823677755", + "value" : "NO-953337162480525054890231", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:008b317b-599e-40af-b3a7-1ec4d097212b", + "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6319ef3a-a750-460e-9dfb-11548c767ce3", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -6533,7 +12017,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -6758,7 +12260,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-822495796742144823677755", + "batteryIDDMCCode" : "NO-953337162480525054890231", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -6769,32 +12271,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:008b317b-599e-40af-b3a7-1ec4d097212b", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-03-28", + "currentStateOfHealthTimestamp" : "2015-09-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-17", + "currentStateOfHealthTimestamp" : "2024-02-16", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -6803,28 +12331,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:68920ee8-b982-4e06-abca-a6bbc5dc4b5a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:68920ee8-b982-4e06-abca-a6bbc5dc4b5a", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "350434", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "5076", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -6832,31 +12407,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-999408937089315271261388", + "value" : "NO-283025147867584842633737", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:68920ee8-b982-4e06-abca-a6bbc5dc4b5a", + "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:227fc68c-8fcb-470e-b4b2-7d2a4306119a", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -6865,7 +12465,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -7090,7 +12708,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-999408937089315271261388", + "batteryIDDMCCode" : "NO-283025147867584842633737", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -7101,32 +12719,206 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:68920ee8-b982-4e06-abca-a6bbc5dc4b5a", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 5, + "materialClass" : "8.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ] + } ], + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "367891", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "9726", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "partTypeInformation" : { + "manufacturerPartId" : "NF-25", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:01a26bc3-e056-462d-a140-18143ef35552", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-11-29", + "currentStateOfHealthTimestamp" : "2014-07-31", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-06", + "currentStateOfHealthTimestamp" : "2024-02-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -7135,28 +12927,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f29148a0-3c5c-4963-b3e7-d8b18080e0d1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f29148a0-3c5c-4963-b3e7-d8b18080e0d1", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "859856", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "5694", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -7164,31 +13003,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-685147455980327102937200", + "value" : "NO-409479289986597261873689", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:f29148a0-3c5c-4963-b3e7-d8b18080e0d1", + "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e33f4ea9-6b55-43ce-95c1-2114aa644a79", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -7197,7 +13061,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -7422,7 +13304,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-685147455980327102937200", + "batteryIDDMCCode" : "NO-409479289986597261873689", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -7433,32 +13315,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f29148a0-3c5c-4963-b3e7-d8b18080e0d1", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-11-09", + "currentStateOfHealthTimestamp" : "2018-04-13", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-29", + "currentStateOfHealthTimestamp" : "2024-02-22", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -7467,28 +13375,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:bcc80e05-e4cf-4dcb-b8c9-fe7cdaf767e0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bcc80e05-e4cf-4dcb-b8c9-fe7cdaf767e0", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "545341", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 9 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "4845", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -7496,31 +13451,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-910792529725896394167209", + "value" : "NO-927504595898056099855081", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:bcc80e05-e4cf-4dcb-b8c9-fe7cdaf767e0", + "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:23dcadc5-48a6-44c2-ab39-a0f7df4c3673", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -7529,7 +13509,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -7754,7 +13752,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-910792529725896394167209", + "batteryIDDMCCode" : "NO-927504595898056099855081", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -7765,32 +13763,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bcc80e05-e4cf-4dcb-b8c9-fe7cdaf767e0", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-01-07", + "currentStateOfHealthTimestamp" : "2023-11-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-06", + "currentStateOfHealthTimestamp" : "2024-02-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -7799,28 +13823,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5a3e9995-2631-4683-b156-ed5db3ebc4b9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5a3e9995-2631-4683-b156-ed5db3ebc4b9", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "953322", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "7532", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -7828,31 +13899,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-447916946967511659336907", + "value" : "NO-235015725608216527525071", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:5a3e9995-2631-4683-b156-ed5db3ebc4b9", + "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2992debd-b624-4e10-a8b0-14d75bacb06e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -7861,7 +13957,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -8086,7 +14200,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-447916946967511659336907", + "batteryIDDMCCode" : "NO-235015725608216527525071", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -8097,49 +14211,20 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5a3e9995-2631-4683-b156-ed5db3ebc4b9", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-11-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3b58dfd1-da92-41f7-b075-d72b179100cb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3b58dfd1-da92-41f7-b075-d72b179100cb", + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -8150,41 +14235,488 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 85, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 22, + "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:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "childItems" : [ { + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "257733", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "8201", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-018101300321963888807718", + "value" : "NO-838322959839811561036246", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:3b58dfd1-da92-41f7-b075-d72b179100cb", + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:237a08cc-a748-4328-a1a3-26fce5b741ec", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1a880c81-c570-4f23-86bd-dd1663ba5005", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8178eeef-1938-42bd-bae0-b36c1ef2955b", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0a095fba-2240-4a3e-99e8-2a131d955aa8", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e74b82c3-238d-4183-a09d-9aefe69ff2a1", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c4071f3c-ace8-422a-bb4d-24f525ec4205", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4637ad73-e6cb-4d46-9969-bb072fa94ce4", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0b3b77b9-bebb-4b19-9c57-ec03c29e084b", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c113691e-5a5b-4dd4-92f9-4770d88aa2ae", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:dc4d46c1-3254-4655-85df-ade73fdd2276", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4487104c-2670-48c8-821f-95bb06d457e4", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -8409,7 +14941,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-018101300321963888807718", + "batteryIDDMCCode" : "NO-838322959839811561036246", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -8420,40 +14952,7 @@ }, "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" : 36, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", @@ -8464,99 +14963,99 @@ "value" : 1 }, "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" } }, "typology" : { "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", + "description" : "This is the product description of a module", "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" }, "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" + "issueDate" : "2022-10-11", + "version" : 1.7, + "status" : "Approved" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 + "diameter" : 229.6942, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 }, "lifespan" : { - "unit" : "unit:day", - "value" : 36 + "unit" : "unit:year", + "value" : 16 } }, "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 + "placedOnMarket" : "2021-12-17", + "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-018101300321963888807718", + "value" : "NO-838322959839811561036246", "key" : "PartInstanceID" } ], - "gtin" : "12345678", + "gtin" : " 97227772", "additionalCode" : [ { "name" : "TARIC", - "value" : "8703 24 10 00" + "value" : "636715904" } ] }, "sources" : { "optional" : [ { "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, - "name" : "other" + "name" : "sustainability" } ], "mandatory" : { "safetyTransportation" : { - "header" : "Sustainability Document Material XY", + "header" : "Shipping guidelines", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Compliance", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", + "header" : "Laboratory test results HVB Module HV MODUL", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "safetyPackaging" : { - "header" : "Sustainability Document Material XY", + "header" : "Packaging instruction for HVB Module HV MODUL", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "declarationOfConformity" : [ { "document" : { "header" : "Sustainability Document Material XY", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "name" : "other" } ] @@ -8564,10 +15063,10 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2000-01-01", + "date" : "2023-04-26", "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" + "description" : "Battery test", + "title" : "Maintenance Service" } ], "reusablePackaging" : true, "spareParts" : [ { @@ -8576,197 +15075,191 @@ "producerId" : "BPNL1234567890ZZ" } ], "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", + "unit" : "unit:percent", "name" : "Lead", - "location" : "Housing", + "location" : "HvbCell", "concentration" : { - "left" : [ 3.592682E37 ] + "left" : [ 6.5069 ] }, - "id" : "RC0402" + "id" : "YQ8580" } ] }, "additionalData" : [ { "data" : "23", "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", + "data" : "", + "description" : "", + "label" : "", "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" + "dataType" : "xsd:string", + "typeUnit" : "" } } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", + "description" : "", + "label" : "", "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" + "dataType" : "xsd:string", + "typeUnit" : "" } } ], "sustainability" : { "material" : [ { - "recycled" : false, - "renewable" : true, + "recycled" : true, + "renewable" : false, "percentage" : 5, - "name" : "Aluminium" + "name" : "UV Varnish" } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], + "critical" : [ "Cobalt" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { "extWBCSD_otherOperatorName" : "NSF", "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { + "productOrSectorSpecificRules" : [ { "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } + } ] } ], - "carbonContentTotal" : 2.5 + "carbonContentTotal" : 118 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL1234567890ZZ", + "importer" : "BPNL00000003B3NX", "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" + "facilityId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AVTH" } } } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3b58dfd1-da92-41f7-b075-d72b179100cb", - "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ffdfc157-c96f-4e9e-a853-d2d6a5f40f0a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c2c71102-9173-418b-b8ae-8623e60afd5e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c65a4a50-cee7-4ac3-99ba-195911a9a3f8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a0f23ccb-5435-4072-8c14-45949d1213dd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d666a2f0-8a46-44e0-8175-4f715c514744", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9cbcbf19-a2ad-4003-8038-7ef7bfd193d5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:86996804-d0d3-4ae1-9c98-5e3aa17488e2", + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-01-16", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 }, { - "catenaXId" : "urn:uuid:54b318fc-d4c9-4ad5-aa70-46e54c852e4e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "currentStateOfHealthTimestamp" : "2024-02-17", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "904375", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 23 + } }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:bc271ef5-f024-434b-8c20-c2c61b6fd046", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:76eadb99-2b46-405a-8f93-60dbdb57ae08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "2364", + "materialNameStandardizedValue" : "PP-TD10" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:ffdfc157-c96f-4e9e-a853-d2d6a5f40f0a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ffdfc157-c96f-4e9e-a853-d2d6a5f40f0a", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -8774,31 +15267,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-342214621216577185615190", + "value" : "NO-663073156093039453892485", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:ffdfc157-c96f-4e9e-a853-d2d6a5f40f0a", + "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:30d3e983-f90e-4392-9d12-d30ba1b6c9ed", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -8807,7 +15325,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -9032,7 +15568,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-342214621216577185615190", + "batteryIDDMCCode" : "NO-663073156093039453892485", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -9043,32 +15579,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ffdfc157-c96f-4e9e-a853-d2d6a5f40f0a", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-01-19", + "currentStateOfHealthTimestamp" : "2015-02-07", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-08", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -9077,28 +15639,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c2c71102-9173-418b-b8ae-8623e60afd5e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c2c71102-9173-418b-b8ae-8623e60afd5e", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "421491", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "1098", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -9106,31 +15715,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-140923779637789651001170", + "value" : "NO-816234871234575434175023", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:c2c71102-9173-418b-b8ae-8623e60afd5e", + "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:adee468e-b4ac-449d-bd1d-af91c0ef97b8", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -9139,7 +15773,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -9364,7 +16016,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-140923779637789651001170", + "batteryIDDMCCode" : "NO-816234871234575434175023", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -9375,32 +16027,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c2c71102-9173-418b-b8ae-8623e60afd5e", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-11-15", + "currentStateOfHealthTimestamp" : "2022-04-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-31", + "currentStateOfHealthTimestamp" : "2024-03-06", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -9409,28 +16087,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c65a4a50-cee7-4ac3-99ba-195911a9a3f8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c65a4a50-cee7-4ac3-99ba-195911a9a3f8", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "779982", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "6142", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -9438,31 +16163,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-003280884514502319068733", + "value" : "NO-738268322111071992512022", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:c65a4a50-cee7-4ac3-99ba-195911a9a3f8", + "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b54255d5-26c1-439f-9fed-cc1234d85a7c", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -9471,7 +16221,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -9696,7 +16464,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-003280884514502319068733", + "batteryIDDMCCode" : "NO-738268322111071992512022", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -9707,32 +16475,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c65a4a50-cee7-4ac3-99ba-195911a9a3f8", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-11-12", + "currentStateOfHealthTimestamp" : "2021-12-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-25", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -9741,28 +16535,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a0f23ccb-5435-4072-8c14-45949d1213dd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a0f23ccb-5435-4072-8c14-45949d1213dd", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "873620", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "6215", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -9770,31 +16611,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-761648863554277451842624", + "value" : "NO-321442052139648020241062", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a0f23ccb-5435-4072-8c14-45949d1213dd", + "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6f120025-b053-4ce1-baad-62df174f0b12", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -9803,7 +16669,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -10028,7 +16912,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-761648863554277451842624", + "batteryIDDMCCode" : "NO-321442052139648020241062", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -10039,32 +16923,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a0f23ccb-5435-4072-8c14-45949d1213dd", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-12", + "currentStateOfHealthTimestamp" : "2018-10-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-29", + "currentStateOfHealthTimestamp" : "2024-02-16", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -10073,28 +16983,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d666a2f0-8a46-44e0-8175-4f715c514744", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d666a2f0-8a46-44e0-8175-4f715c514744", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "175377", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "9620", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -10102,31 +17059,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-869167328528610974210798", + "value" : "NO-114516443320856885894272", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:d666a2f0-8a46-44e0-8175-4f715c514744", + "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f7fb4221-398c-4445-8392-1f52a7bf6263", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -10135,7 +17117,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -10360,7 +17360,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-869167328528610974210798", + "batteryIDDMCCode" : "NO-114516443320856885894272", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -10371,32 +17371,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d666a2f0-8a46-44e0-8175-4f715c514744", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-10-18", + "currentStateOfHealthTimestamp" : "2019-02-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-08", + "currentStateOfHealthTimestamp" : "2024-02-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -10405,28 +17431,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9cbcbf19-a2ad-4003-8038-7ef7bfd193d5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9cbcbf19-a2ad-4003-8038-7ef7bfd193d5", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "968582", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "2601", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -10434,31 +17507,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-009082843985647997897050", + "value" : "NO-202860084166978430348394", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:9cbcbf19-a2ad-4003-8038-7ef7bfd193d5", + "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:11a35756-0df2-4e6f-8360-a615062cd546", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -10467,7 +17565,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -10692,7 +17808,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-009082843985647997897050", + "batteryIDDMCCode" : "NO-202860084166978430348394", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -10703,32 +17819,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9cbcbf19-a2ad-4003-8038-7ef7bfd193d5", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-07-05", + "currentStateOfHealthTimestamp" : "2021-05-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-20", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -10737,28 +17879,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:86996804-d0d3-4ae1-9c98-5e3aa17488e2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:86996804-d0d3-4ae1-9c98-5e3aa17488e2", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "745299", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "3571", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -10766,31 +17955,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-116195406851036540903025", + "value" : "NO-494374901619716039791371", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:86996804-d0d3-4ae1-9c98-5e3aa17488e2", + "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:34462397-5903-4a4a-9c39-257ac4d690e6", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -10799,7 +18013,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -11024,7 +18256,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-116195406851036540903025", + "batteryIDDMCCode" : "NO-494374901619716039791371", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -11035,32 +18267,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:86996804-d0d3-4ae1-9c98-5e3aa17488e2", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-12-16", + "currentStateOfHealthTimestamp" : "2019-10-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-06", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -11069,28 +18327,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:54b318fc-d4c9-4ad5-aa70-46e54c852e4e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:54b318fc-d4c9-4ad5-aa70-46e54c852e4e", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "429296", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1645", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -11098,31 +18403,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-297518813939198349484510", + "value" : "NO-794467681195929992255435", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:54b318fc-d4c9-4ad5-aa70-46e54c852e4e", + "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8e862982-2150-453e-8229-654d52d3cd65", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -11131,7 +18461,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -11356,7 +18704,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-297518813939198349484510", + "batteryIDDMCCode" : "NO-794467681195929992255435", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -11367,32 +18715,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:54b318fc-d4c9-4ad5-aa70-46e54c852e4e", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-11-12", + "currentStateOfHealthTimestamp" : "2019-04-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-26", + "currentStateOfHealthTimestamp" : "2024-02-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -11401,28 +18775,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:bc271ef5-f024-434b-8c20-c2c61b6fd046", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bc271ef5-f024-434b-8c20-c2c61b6fd046", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "144745", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "7152", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -11430,31 +18851,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-500809446482002974193847", + "value" : "NO-034590603053687442399458", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:bc271ef5-f024-434b-8c20-c2c61b6fd046", + "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4283681d-1881-4219-ba87-e2bc0caa933b", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -11463,7 +18909,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -11688,7 +19152,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-500809446482002974193847", + "batteryIDDMCCode" : "NO-034590603053687442399458", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -11699,32 +19163,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bc271ef5-f024-434b-8c20-c2c61b6fd046", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-09-14", + "currentStateOfHealthTimestamp" : "2021-03-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-26", + "currentStateOfHealthTimestamp" : "2024-02-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -11733,28 +19223,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:76eadb99-2b46-405a-8f93-60dbdb57ae08", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:76eadb99-2b46-405a-8f93-60dbdb57ae08", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "876397", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "9888", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -11762,31 +19299,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-443379837739172050361883", + "value" : "NO-616535750451374596363638", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:76eadb99-2b46-405a-8f93-60dbdb57ae08", + "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:dd9de3f8-aa2d-4cf6-b047-fd58b7327057", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -11795,7 +19357,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -12020,7 +19600,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-443379837739172050361883", + "batteryIDDMCCode" : "NO-616535750451374596363638", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -12031,49 +19611,20 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:76eadb99-2b46-405a-8f93-60dbdb57ae08", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-03-31", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:44347dec-21d1-47aa-b2a7-f959bf9d424b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:44347dec-21d1-47aa-b2a7-f959bf9d424b", + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -12084,280 +19635,12 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-282209222605524629600815", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:44347dec-21d1-47aa-b2a7-f959bf9d424b", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-282209222605524629600815", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : [ { + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 37, + "recycledContent" : 47, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -12367,7 +19650,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 22, + "recycledContent" : 47, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -12377,7 +19660,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 76, + "recycledContent" : 22, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -12387,693 +19670,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-282209222605524629600815", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:44347dec-21d1-47aa-b2a7-f959bf9d424b", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b0acf3e1-3fbe-46c0-aa0b-0724caae7772", + "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:03c34e44-31e6-44ab-b332-17df555ffc13", + "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1233b405-5ac8-4867-93f8-6fdf37733737", + "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:00f8ad92-9039-4641-a29c-7eca44cdee97", + "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:31b3ec2f-f830-48e2-96fb-942fee29f4ed", + "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4ac82c91-1296-40c4-8d14-ff667491a8a3", + "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:19260319-e0db-4725-8b8c-fe3174fa8f9b", + "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3c607def-69a0-4161-851e-0b1c7aab3320", + "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9516f093-f698-4236-80c3-8a4e218762f8", + "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:cc992291-6d91-4b9a-b206-5f9edb37b7ce", + "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:b0acf3e1-3fbe-46c0-aa0b-0724caae7772", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b0acf3e1-3fbe-46c0-aa0b-0724caae7772", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "45913", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "1869", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-917923082133064161014067", + "value" : "NO-757418965725956072308711", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b0acf3e1-3fbe-46c0-aa0b-0724caae7772", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" } ] }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" + "ownerItemId" : "urn:uuid:80223f49-7d96-423f-b359-43ca533684f3", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" + "ownerItemId" : "urn:uuid:d0b73988-05f1-4457-98da-cd5afc4bcdaa", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "ownerItemId" : "urn:uuid:dfeddda1-3f79-46dc-97d1-165cf02ed355", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } + "ownerItemId" : "urn:uuid:7ac77862-aeea-4613-9a60-a44ee96a2de6", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d767f979-c2ff-4609-bc6c-0504129a99cc", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" + "childassetId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" + "ownerItemId" : "urn:uuid:84c058c5-83fb-4b6d-b971-ae9c9efc9995", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" + "ownerItemId" : "urn:uuid:d3f548b3-47cd-42e1-9972-b64deb3f5ae2", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" + "ownerItemId" : "urn:uuid:7011d5bc-bbfb-4d22-981a-2f90607db71c", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "ownerItemId" : "urn:uuid:b4a3840e-e9cf-42f8-8d08-49010ad2e780", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-917923082133064161014067", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b0acf3e1-3fbe-46c0-aa0b-0724caae7772", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-04-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 + "ownerItemId" : "urn:uuid:a000e83f-e975-4979-919c-bd75199d653e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { - "currentStateOfHealthTimestamp" : "2023-08-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:03c34e44-31e6-44ab-b332-17df555ffc13", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:03c34e44-31e6-44ab-b332-17df555ffc13", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, "measurementUnit" : "unit:litre" }, + "ownerItemId" : "urn:uuid:c31a4a71-f96a-4e58-9ad6-462dc39a9be0", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "childassetId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-890395265988603562877676", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:03c34e44-31e6-44ab-b332-17df555ffc13", + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -13298,7 +20341,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-890395265988603562877676", + "batteryIDDMCCode" : "NO-757418965725956072308711", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -13309,49 +20352,199 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:03c34e44-31e6-44ab-b332-17df555ffc13", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 1 }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-10-24", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2022-07-01", + "version" : 1.6, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6343, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 19 + } + }, + "commercial" : { + "placedOnMarket" : "2021-07-24", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-757418965725956072308711", + "key" : "PartInstanceID" + } ], + "gtin" : " 14004109", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "263852104" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-02-04", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 6.181 ] + }, + "id" : "GB2917" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Cobalt" + } ], + "critical" : [ "Graphite" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 109 + }, + "state" : "first life" }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1233b405-5ac8-4867-93f8-6fdf37733737", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1233b405-5ac8-4867-93f8-6fdf37733737", + "operation" : { + "importer" : "BPNL00000003B3NX", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -13362,61 +20555,1114 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItems" : [ ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-135342108157438763234738", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1233b405-5ac8-4867-93f8-6fdf37733737", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + } ], + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "478965", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "9356", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "manufacturerId" : "BPNL00000003AXS3", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "partTypeInformation" : { + "manufacturerPartId" : "LV-64", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "customers" : [ { + "businessPartner" : "BPNL00000003AXS3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:77d765dc-1725-4fa0-850f-14ff4d221640", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-10-10", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "187290", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "5718", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-196750260355920905784672", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6975d17d-ad2e-4f27-a09a-7a8c146b67ef", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, "minVoltage" : 2.04 }, "internalResistance" : { @@ -13630,7 +21876,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-135342108157438763234738", + "batteryIDDMCCode" : "NO-196750260355920905784672", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -13641,32 +21887,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1233b405-5ac8-4867-93f8-6fdf37733737", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-02-06", + "currentStateOfHealthTimestamp" : "2014-06-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-20", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -13675,28 +21947,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:00f8ad92-9039-4641-a29c-7eca44cdee97", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:00f8ad92-9039-4641-a29c-7eca44cdee97", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "52305", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "7544", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -13704,31 +22023,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-560082534190710015695641", + "value" : "NO-851192230441246681631253", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:00f8ad92-9039-4641-a29c-7eca44cdee97", + "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:15dbcdd6-dd2d-45ad-aac1-734e616a03bf", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -13737,7 +22081,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -13962,7 +22324,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-560082534190710015695641", + "batteryIDDMCCode" : "NO-851192230441246681631253", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -13973,32 +22335,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:00f8ad92-9039-4641-a29c-7eca44cdee97", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-10-24", + "currentStateOfHealthTimestamp" : "2018-09-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-15", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -14007,28 +22395,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:31b3ec2f-f830-48e2-96fb-942fee29f4ed", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:31b3ec2f-f830-48e2-96fb-942fee29f4ed", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "564965", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "3263", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -14036,31 +22471,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-025845701099293236003901", + "value" : "NO-561731599817906783111770", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:31b3ec2f-f830-48e2-96fb-942fee29f4ed", + "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:129f667e-3c6f-401c-88cc-2ba08ba8e90f", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -14069,7 +22529,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -14294,7 +22772,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-025845701099293236003901", + "batteryIDDMCCode" : "NO-561731599817906783111770", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -14305,32 +22783,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:31b3ec2f-f830-48e2-96fb-942fee29f4ed", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-08-18", + "currentStateOfHealthTimestamp" : "2017-04-15", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-27", + "currentStateOfHealthTimestamp" : "2024-02-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -14339,28 +22843,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4ac82c91-1296-40c4-8d14-ff667491a8a3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4ac82c91-1296-40c4-8d14-ff667491a8a3", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "429757", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "8870", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -14368,31 +22919,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-766073109157573922681145", + "value" : "NO-601684402916676295378875", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:4ac82c91-1296-40c4-8d14-ff667491a8a3", + "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2b3628a7-4249-484d-bc58-666402b64cbe", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -14401,7 +22977,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -14626,7 +23220,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-766073109157573922681145", + "batteryIDDMCCode" : "NO-601684402916676295378875", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -14637,32 +23231,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4ac82c91-1296-40c4-8d14-ff667491a8a3", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-10-08", + "currentStateOfHealthTimestamp" : "2014-12-13", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-11", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -14671,28 +23291,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:19260319-e0db-4725-8b8c-fe3174fa8f9b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:19260319-e0db-4725-8b8c-fe3174fa8f9b", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "106891", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "7770", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -14700,31 +23367,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-302197416077889268774501", + "value" : "NO-220579398527605828592786", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:19260319-e0db-4725-8b8c-fe3174fa8f9b", + "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2c866b62-ebb6-441f-abb8-2e5a48f094a2", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -14733,7 +23425,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -14958,7 +23668,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-302197416077889268774501", + "batteryIDDMCCode" : "NO-220579398527605828592786", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -14969,32 +23679,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:19260319-e0db-4725-8b8c-fe3174fa8f9b", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-08-28", + "currentStateOfHealthTimestamp" : "2015-08-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-11", + "currentStateOfHealthTimestamp" : "2024-03-01", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -15003,28 +23739,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3c607def-69a0-4161-851e-0b1c7aab3320", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3c607def-69a0-4161-851e-0b1c7aab3320", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "970794", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "3631", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -15032,31 +23815,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-277339104534065291023852", + "value" : "NO-989896312164316486011352", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:3c607def-69a0-4161-851e-0b1c7aab3320", + "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:20916d3d-c2e1-472b-83ba-7a22b30ff252", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -15065,7 +23873,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -15290,7 +24116,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-277339104534065291023852", + "batteryIDDMCCode" : "NO-989896312164316486011352", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -15301,32 +24127,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3c607def-69a0-4161-851e-0b1c7aab3320", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-04-15", + "currentStateOfHealthTimestamp" : "2019-09-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-22", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -15335,28 +24187,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9516f093-f698-4236-80c3-8a4e218762f8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9516f093-f698-4236-80c3-8a4e218762f8", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "603324", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "4498", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -15364,31 +24263,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-314232966820566941989020", + "value" : "NO-668413753586612912737466", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:9516f093-f698-4236-80c3-8a4e218762f8", + "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:18550a52-d54c-49e1-b977-2f8a33051998", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -15397,7 +24321,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -15622,7 +24564,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-314232966820566941989020", + "batteryIDDMCCode" : "NO-668413753586612912737466", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -15633,32 +24575,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9516f093-f698-4236-80c3-8a4e218762f8", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-06-20", + "currentStateOfHealthTimestamp" : "2015-06-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-02", + "currentStateOfHealthTimestamp" : "2024-02-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -15667,15 +24635,408 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:cc992291-6d91-4b9a-b206-5f9edb37b7ce", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cc992291-6d91-4b9a-b206-5f9edb37b7ce", + } ], + "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "533786", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "7404", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-573889269137330790927065", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b4fd6b8c-9210-49ad-9633-86dea8229898", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-573889269137330790927065", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -15686,9 +25047,111 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-03-27", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" } ], + "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "288513", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "9298", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -15696,31 +25159,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-258054302819613241370099", + "value" : "NO-548985088263485891029251", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:cc992291-6d91-4b9a-b206-5f9edb37b7ce", + "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:88cd2bda-e15b-4b2f-ac30-7d1f734f22fc", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -15729,7 +25217,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -15954,7 +25460,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-258054302819613241370099", + "batteryIDDMCCode" : "NO-548985088263485891029251", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -15965,32 +25471,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cc992291-6d91-4b9a-b206-5f9edb37b7ce", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-07-05", + "currentStateOfHealthTimestamp" : "2015-02-23", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-28", + "currentStateOfHealthTimestamp" : "2024-02-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -15999,60 +25531,159 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2b626a2e-cff7-4005-a867-3dc13791ed5d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2b626a2e-cff7-4005-a867-3dc13791ed5d", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "117589", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "4089", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840837-48", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-606166361192012067196156", + "value" : "NO-905223916160251431905990", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:2b626a2e-cff7-4005-a867-3dc13791ed5d", + "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5f1b604b-bfce-4875-9577-5ea764d1e380", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -16277,7 +25908,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-606166361192012067196156", + "batteryIDDMCCode" : "NO-905223916160251431905990", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -16288,10 +25919,36 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 17, + "recycledContent" : 72, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -16301,7 +25958,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 7, + "recycledContent" : 47, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -16311,7 +25968,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 49, + "recycledContent" : 24, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -16321,1069 +25978,479 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-606166361192012067196156", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2b626a2e-cff7-4005-a867-3dc13791ed5d", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3ad7b19a-f6af-4b1a-ad37-572233a496b2", + "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ec4f892e-d841-40a8-851c-af509495a7f0", + "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d4659bad-ccfd-4f2a-92d8-683a44876e50", + "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2775fa60-c8a7-4136-a08f-58a817671885", + "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0673fee1-a309-4b34-aaa6-ee292debb10a", + "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d0d76f17-10ea-482e-abb1-98f3453e1c40", + "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:22045d86-e744-4899-947b-0d49ef256644", + "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:19e5af87-f3f3-48ef-b1d0-507a06365a73", + "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4b3157ed-775e-482f-8060-dd0da04c7ef7", + "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:09f6f96a-fb6b-4c77-bf3b-2b1bc023b1fa", + "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { + } ], + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "948584", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "4179", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { - "value" : "BID12345678", - "key" : "batchId" + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-883610489267919397198041", + "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Sealant" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, "measurementUnit" : "unit:litre" }, + "ownerItemId" : "urn:uuid:964a163a-2bf0-4777-8155-79c675c4c576", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:804f7b43-0ad9-47ec-bab9-4c16a3097999", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:16da91d1-50f8-491f-972b-b678de36973d", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f24fd8bc-8e8c-4ded-af59-71001eda2efd", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a144cf41-dace-416d-a063-312c148fbb00", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:78fac256-ef9b-4c39-9731-1d23972dbf7e", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4b8c898d-96a2-4c77-83f3-15eaa25e9c56", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2f9907f8-8d78-4c98-b627-14d40b90f64a", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:71ca0891-49a6-4095-9eec-1512a1e32a01", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:26705c57-e946-4965-b203-1ca0e893edf5", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:de2242ff-f394-425d-90fb-519986cc0f9e", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "childItems" : [ ] - } ] - }, { - "catenaXId" : "urn:uuid:3ad7b19a-f6af-4b1a-ad37-572233a496b2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3ad7b19a-f6af-4b1a-ad37-572233a496b2", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-720198548585373600513532", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3ad7b19a-f6af-4b1a-ad37-572233a496b2", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 }, "capacityFade" : 34 }, @@ -17582,7 +26649,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-720198548585373600513532", + "batteryIDDMCCode" : "NO-883610489267919397198041", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -17593,32 +26660,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3ad7b19a-f6af-4b1a-ad37-572233a496b2", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2022-05-31", + "version" : 2.9, + "status" : "Approved" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.658, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 19 + } + }, + "commercial" : { + "placedOnMarket" : "2020-05-21", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-883610489267919397198041", + "key" : "PartInstanceID" + } ], + "gtin" : " 78139498", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "567980732" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2023-04-24", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 1.2616 ] + }, + "id" : "HP4995" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Aluminium" + } ], + "critical" : [ "Nickel" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 118 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B2OM", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-10-24", + "currentStateOfHealthTimestamp" : "2019-06-23", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-03", + "currentStateOfHealthTimestamp" : "2024-02-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -17627,28 +26899,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:ec4f892e-d841-40a8-851c-af509495a7f0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ec4f892e-d841-40a8-851c-af509495a7f0", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "466131", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "8863", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -17656,31 +26975,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-456542208514403652986787", + "value" : "NO-864415204672012382995251", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:ec4f892e-d841-40a8-851c-af509495a7f0", + "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:072bb6c2-1eb4-4e56-abee-b9fb5bc1abb3", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -17689,7 +27033,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -17914,7 +27276,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-456542208514403652986787", + "batteryIDDMCCode" : "NO-864415204672012382995251", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -17925,32 +27287,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ec4f892e-d841-40a8-851c-af509495a7f0", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-09-06", + "currentStateOfHealthTimestamp" : "2015-05-05", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-10", + "currentStateOfHealthTimestamp" : "2024-02-22", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -17959,28 +27347,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d4659bad-ccfd-4f2a-92d8-683a44876e50", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d4659bad-ccfd-4f2a-92d8-683a44876e50", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "661427", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "8111", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -17988,31 +27423,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-352662420944071686875521", + "value" : "NO-493676181103178298845139", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:d4659bad-ccfd-4f2a-92d8-683a44876e50", + "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5e37e292-0127-4167-9f4f-cb99076b0b4d", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -18021,7 +27481,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -18246,7 +27724,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-352662420944071686875521", + "batteryIDDMCCode" : "NO-493676181103178298845139", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -18257,32 +27735,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d4659bad-ccfd-4f2a-92d8-683a44876e50", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-08-11", + "currentStateOfHealthTimestamp" : "2015-09-22", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-17", + "currentStateOfHealthTimestamp" : "2024-02-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -18291,28 +27795,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2775fa60-c8a7-4136-a08f-58a817671885", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2775fa60-c8a7-4136-a08f-58a817671885", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "366897", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "1132", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -18320,31 +27871,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-937189107885524687146952", + "value" : "NO-791018505140292878166021", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:2775fa60-c8a7-4136-a08f-58a817671885", + "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:75b068da-aa67-4e6a-b520-481221293bc6", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -18353,7 +27929,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -18578,7 +28172,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-937189107885524687146952", + "batteryIDDMCCode" : "NO-791018505140292878166021", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -18589,32 +28183,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2775fa60-c8a7-4136-a08f-58a817671885", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-10-14", + "currentStateOfHealthTimestamp" : "2022-12-22", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-16", + "currentStateOfHealthTimestamp" : "2024-02-16", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -18623,28 +28243,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0673fee1-a309-4b34-aaa6-ee292debb10a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0673fee1-a309-4b34-aaa6-ee292debb10a", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "815598", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "8846", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -18652,31 +28319,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-629318352947024898734412", + "value" : "NO-136928786987253017532224", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:0673fee1-a309-4b34-aaa6-ee292debb10a", + "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2ddf726b-1c8d-4254-8b95-f2382d10158a", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -18685,7 +28377,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -18910,7 +28620,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-629318352947024898734412", + "batteryIDDMCCode" : "NO-136928786987253017532224", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -18921,32 +28631,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0673fee1-a309-4b34-aaa6-ee292debb10a", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-02-04", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-15", + "currentStateOfHealthTimestamp" : "2024-03-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -18955,60 +28691,132 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d0d76f17-10ea-482e-abb1-98f3453e1c40", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d0d76f17-10ea-482e-abb1-98f3453e1c40", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] } ], + "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-731616585701520938463924", - "key" : "partInstanceId" - } ], + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "267061", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "4880", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-823948286883766869040317", + "key" : "partInstanceId" + } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:d0d76f17-10ea-482e-abb1-98f3453e1c40", + "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:296d4b41-5468-48c4-9c08-b016c8ecf54f", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -19017,7 +28825,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -19242,7 +29068,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-731616585701520938463924", + "batteryIDDMCCode" : "NO-823948286883766869040317", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -19253,32 +29079,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d0d76f17-10ea-482e-abb1-98f3453e1c40", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-10-24", + "currentStateOfHealthTimestamp" : "2023-07-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-26", + "currentStateOfHealthTimestamp" : "2024-02-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -19287,28 +29139,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:22045d86-e744-4899-947b-0d49ef256644", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:22045d86-e744-4899-947b-0d49ef256644", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "589990", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "7657", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -19316,31 +29215,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-667398731786254336188617", + "value" : "NO-587471081576721367794244", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:22045d86-e744-4899-947b-0d49ef256644", + "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5a48df90-7b8a-4b95-9344-52eca9965050", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -19349,7 +29273,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -19574,7 +29516,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-667398731786254336188617", + "batteryIDDMCCode" : "NO-587471081576721367794244", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -19585,32 +29527,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:22045d86-e744-4899-947b-0d49ef256644", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-11-07", + "currentStateOfHealthTimestamp" : "2021-12-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-14", + "currentStateOfHealthTimestamp" : "2024-02-18", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -19619,28 +29587,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:19e5af87-f3f3-48ef-b1d0-507a06365a73", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:19e5af87-f3f3-48ef-b1d0-507a06365a73", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "523416", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "1489", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -19648,31 +29663,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-602087487288225165100397", + "value" : "NO-109272763412992271485457", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:19e5af87-f3f3-48ef-b1d0-507a06365a73", + "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:295e2d27-7c8c-4e5a-81dd-5c530b21c778", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -19681,7 +29721,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -19906,7 +29964,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-602087487288225165100397", + "batteryIDDMCCode" : "NO-109272763412992271485457", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -19917,32 +29975,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:19e5af87-f3f3-48ef-b1d0-507a06365a73", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-06-05", + "currentStateOfHealthTimestamp" : "2023-08-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-14", + "currentStateOfHealthTimestamp" : "2024-03-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -19951,28 +30035,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4b3157ed-775e-482f-8060-dd0da04c7ef7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4b3157ed-775e-482f-8060-dd0da04c7ef7", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "604789", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "1043", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -19980,31 +30111,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-850484378486385502278528", + "value" : "NO-148715251312244684318074", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:4b3157ed-775e-482f-8060-dd0da04c7ef7", + "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c576a060-ff25-4a2f-b542-34d06030c193", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -20013,7 +30169,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -20238,7 +30412,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-850484378486385502278528", + "batteryIDDMCCode" : "NO-148715251312244684318074", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -20249,32 +30423,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4b3157ed-775e-482f-8060-dd0da04c7ef7", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-05-07", + "currentStateOfHealthTimestamp" : "2019-10-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-13", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -20283,28 +30483,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:09f6f96a-fb6b-4c77-bf3b-2b1bc023b1fa", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:09f6f96a-fb6b-4c77-bf3b-2b1bc023b1fa", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "111210", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "1999", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -20312,31 +30559,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-164250809850707724580623", + "value" : "NO-080480141948547472036219", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:09f6f96a-fb6b-4c77-bf3b-2b1bc023b1fa", + "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:dcf94afa-e965-4435-8341-c5489012be59", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -20345,7 +30617,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -20570,7 +30860,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-164250809850707724580623", + "batteryIDDMCCode" : "NO-080480141948547472036219", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -20581,32 +30871,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:09f6f96a-fb6b-4c77-bf3b-2b1bc023b1fa", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-08-24", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-12", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -20615,60 +30931,159 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:fdac5598-41cc-4323-8068-92b5e9729ac6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fdac5598-41cc-4323-8068-92b5e9729ac6", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "721267", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1845", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840837-48", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-982361993267732832038385", + "value" : "NO-671408531894681437693915", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:fdac5598-41cc-4323-8068-92b5e9729ac6", + "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d0c68643-a52f-41ae-9b3f-387e41741101", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -20893,7 +31308,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-982361993267732832038385", + "batteryIDDMCCode" : "NO-671408531894681437693915", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -20904,10 +31319,36 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 58, + "recycledContent" : 31, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -20917,7 +31358,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 0, + "recycledContent" : 79, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -20927,7 +31368,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 42, + "recycledContent" : 48, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -20937,361 +31378,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-982361993267732832038385", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fdac5598-41cc-4323-8068-92b5e9729ac6", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a15a1e3d-c1d1-46b3-8823-78687bb6bae1", + "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:43d47b61-6aec-48f1-bd4b-de8509623507", + "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7e52e347-0048-4dbf-9bce-67419ae61fde", + "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:58b942c0-7912-4b21-bfbf-c78138c2c1aa", + "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:04d16fa9-6276-4c93-bc70-2cbdb918c116", + "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f3f92b86-4fea-459c-b526-eb5e4d346e78", + "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:37046752-c38f-432b-9d69-5a02ceaa94b5", + "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:286d9a23-3193-4a60-ae38-f1de2ade4f2a", + "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b3b99f21-eedb-4ce5-a3f7-766b6cd38b24", + "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:55a780ac-01d4-45cf-b7ce-e3edab380a73", + "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:a15a1e3d-c1d1-46b3-8823-78687bb6bae1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a15a1e3d-c1d1-46b3-8823-78687bb6bae1", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "575177", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1123", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-202356045804343149239551", + "value" : "NO-421487237719664337926264", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a15a1e3d-c1d1-46b3-8823-78687bb6bae1", + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:169730f9-82c2-419e-bec4-679b074587e1", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e924db85-85d0-44a1-85e9-f4ab255622b6", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7c4cffaa-7828-4fab-a805-de5eecec1be6", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:304cfe22-30a3-45ad-8dee-86ec2a1a3951", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:13346a9c-c939-4477-bfde-9b8d1bf3eb46", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1cba473f-5ef8-4ea8-8247-c695813a0507", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:153c7f6f-c3d7-4473-9c0b-0fdd2af161a6", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:632aaffc-66ce-4718-92f6-1176c2e1aca3", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e4486c97-ca35-46a3-ab8c-c3e0931bb0c2", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:56e69495-40bd-4652-be40-0e32b8153e11", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8c2ba5fe-0312-4618-8d66-f0188585c8c5", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -21516,7 +32049,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-202356045804343149239551", + "batteryIDDMCCode" : "NO-421487237719664337926264", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -21527,32 +32060,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a15a1e3d-c1d1-46b3-8823-78687bb6bae1", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-12-17", + "version" : 2.5, + "status" : "Expired" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6908, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 15 + } + }, + "commercial" : { + "placedOnMarket" : "2023-10-13", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-421487237719664337926264", + "key" : "PartInstanceID" + } ], + "gtin" : " 58568407", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "284386811" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-01-12", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 9.7722 ] + }, + "id" : "AB2318" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Manganese" + } ], + "critical" : [ "Nickel" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 120 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B2OM", + "manufacturer" : { + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-12-14", + "currentStateOfHealthTimestamp" : "2021-06-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-13", + "currentStateOfHealthTimestamp" : "2024-03-14", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -21561,28 +32299,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:43d47b61-6aec-48f1-bd4b-de8509623507", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:43d47b61-6aec-48f1-bd4b-de8509623507", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "641081", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "3197", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -21590,31 +32375,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-436435488930938961171874", + "value" : "NO-657973422519230479340430", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:43d47b61-6aec-48f1-bd4b-de8509623507", + "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:54335cc3-c3a9-4c6d-841b-9d6869d7518f", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -21623,7 +32433,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -21848,7 +32676,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-436435488930938961171874", + "batteryIDDMCCode" : "NO-657973422519230479340430", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -21859,32 +32687,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:43d47b61-6aec-48f1-bd4b-de8509623507", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-04-23", + "currentStateOfHealthTimestamp" : "2014-08-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-05", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -21893,28 +32747,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7e52e347-0048-4dbf-9bce-67419ae61fde", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7e52e347-0048-4dbf-9bce-67419ae61fde", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "551084", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1432", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -21922,31 +32823,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-000248276754542061919438", + "value" : "NO-732408130437623009753172", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:7e52e347-0048-4dbf-9bce-67419ae61fde", + "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ab04d475-4d30-4039-b0ce-1f565317db77", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -21955,7 +32881,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -22180,7 +33124,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-000248276754542061919438", + "batteryIDDMCCode" : "NO-732408130437623009753172", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -22191,32 +33135,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7e52e347-0048-4dbf-9bce-67419ae61fde", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-07-22", + "currentStateOfHealthTimestamp" : "2020-02-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-01", + "currentStateOfHealthTimestamp" : "2024-02-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -22225,28 +33195,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:58b942c0-7912-4b21-bfbf-c78138c2c1aa", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:58b942c0-7912-4b21-bfbf-c78138c2c1aa", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "912331", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "2489", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -22254,31 +33271,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-423904430542813350071277", + "value" : "NO-712777341404709239849724", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:58b942c0-7912-4b21-bfbf-c78138c2c1aa", + "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:801d7df0-96c4-4c05-9b00-244356090ef6", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -22287,7 +33329,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -22512,7 +33572,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-423904430542813350071277", + "batteryIDDMCCode" : "NO-712777341404709239849724", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -22523,32 +33583,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:58b942c0-7912-4b21-bfbf-c78138c2c1aa", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-06-08", + "currentStateOfHealthTimestamp" : "2019-11-02", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-06", + "currentStateOfHealthTimestamp" : "2024-03-14", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -22557,28 +33643,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:04d16fa9-6276-4c93-bc70-2cbdb918c116", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:04d16fa9-6276-4c93-bc70-2cbdb918c116", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "258856", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "1575", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -22586,31 +33719,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-187980666555837029877311", + "value" : "NO-275660379821389876239471", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:04d16fa9-6276-4c93-bc70-2cbdb918c116", + "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:135ff411-75d6-4d5e-87f2-8fd3c709bdd5", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -22619,7 +33777,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -22844,7 +34020,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-187980666555837029877311", + "batteryIDDMCCode" : "NO-275660379821389876239471", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -22855,32 +34031,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:04d16fa9-6276-4c93-bc70-2cbdb918c116", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-01-05", + "currentStateOfHealthTimestamp" : "2021-09-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-11", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -22889,28 +34091,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f3f92b86-4fea-459c-b526-eb5e4d346e78", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f3f92b86-4fea-459c-b526-eb5e4d346e78", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "956265", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "1435", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -22918,31 +34167,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-852814478731016802702033", + "value" : "NO-874268115549473309109964", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:f3f92b86-4fea-459c-b526-eb5e4d346e78", + "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:13484890-85d1-49cf-8913-163da1ea297f", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -22951,7 +34225,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -23176,7 +34468,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-852814478731016802702033", + "batteryIDDMCCode" : "NO-874268115549473309109964", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -23187,32 +34479,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f3f92b86-4fea-459c-b526-eb5e4d346e78", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-04-26", + "currentStateOfHealthTimestamp" : "2014-07-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-13", + "currentStateOfHealthTimestamp" : "2024-02-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -23221,28 +34539,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:37046752-c38f-432b-9d69-5a02ceaa94b5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:37046752-c38f-432b-9d69-5a02ceaa94b5", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "476029", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 24 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "8462", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -23250,31 +34615,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-789256372090419236765500", + "value" : "NO-804755969458043907284335", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:37046752-c38f-432b-9d69-5a02ceaa94b5", + "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b1a988dc-e01d-4dc7-bae8-ed2d0bca93e4", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -23283,7 +34673,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -23508,7 +34916,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-789256372090419236765500", + "batteryIDDMCCode" : "NO-804755969458043907284335", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -23519,32 +34927,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:37046752-c38f-432b-9d69-5a02ceaa94b5", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-11-15", + "currentStateOfHealthTimestamp" : "2021-10-15", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-11", + "currentStateOfHealthTimestamp" : "2024-02-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -23553,28 +34987,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:286d9a23-3193-4a60-ae38-f1de2ade4f2a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:286d9a23-3193-4a60-ae38-f1de2ade4f2a", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "484209", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "6055", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -23582,31 +35063,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-679237917085672919466663", + "value" : "NO-613319179318249998509155", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:286d9a23-3193-4a60-ae38-f1de2ade4f2a", + "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8cb2eddf-2036-4fb1-bdc1-a4825eb2822e", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -23615,7 +35121,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -23840,7 +35364,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-679237917085672919466663", + "batteryIDDMCCode" : "NO-613319179318249998509155", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -23851,32 +35375,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:286d9a23-3193-4a60-ae38-f1de2ade4f2a", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-07-26", + "currentStateOfHealthTimestamp" : "2016-01-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-24", + "currentStateOfHealthTimestamp" : "2024-02-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -23885,28 +35435,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b3b99f21-eedb-4ce5-a3f7-766b6cd38b24", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3b99f21-eedb-4ce5-a3f7-766b6cd38b24", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "494277", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "9889", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -23914,31 +35511,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-659933001634836883072347", + "value" : "NO-054137834947942447689111", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:b3b99f21-eedb-4ce5-a3f7-766b6cd38b24", + "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6a9d095d-a988-440d-acf0-660677522014", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -23947,7 +35569,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -24172,7 +35812,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-659933001634836883072347", + "batteryIDDMCCode" : "NO-054137834947942447689111", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -24183,32 +35823,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3b99f21-eedb-4ce5-a3f7-766b6cd38b24", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-01-07", + "currentStateOfHealthTimestamp" : "2020-09-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-22", + "currentStateOfHealthTimestamp" : "2024-02-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -24217,28 +35883,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:55a780ac-01d4-45cf-b7ce-e3edab380a73", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:55a780ac-01d4-45cf-b7ce-e3edab380a73", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "689401", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "3427", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -24246,31 +35959,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-798781804433873366178169", + "value" : "NO-295359038428033538101406", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:55a780ac-01d4-45cf-b7ce-e3edab380a73", + "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:bfda2cef-43dd-458e-832e-813cdf46be9f", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -24279,7 +36017,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -24504,7 +36260,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-798781804433873366178169", + "batteryIDDMCCode" : "NO-295359038428033538101406", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -24515,32 +36271,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:55a780ac-01d4-45cf-b7ce-e3edab380a73", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-05-13", + "currentStateOfHealthTimestamp" : "2020-05-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-23", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -24549,60 +36331,159 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8e57925f-86b5-4d8c-ad9c-efb9c0a55503", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8e57925f-86b5-4d8c-ad9c-efb9c0a55503", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "893293", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "8058", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840837-48", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-510582747671658338424119", + "value" : "NO-508562801787981572367093", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:8e57925f-86b5-4d8c-ad9c-efb9c0a55503", + "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:71f692c6-666b-4b55-9bb8-5eca46c7427b", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -24827,7 +36708,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-510582747671658338424119", + "batteryIDDMCCode" : "NO-508562801787981572367093", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -24838,10 +36719,36 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 71, + "recycledContent" : 41, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -24851,7 +36758,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 87, + "recycledContent" : 26, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -24861,7 +36768,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 20, + "recycledContent" : 87, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -24871,361 +36778,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-510582747671658338424119", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8e57925f-86b5-4d8c-ad9c-efb9c0a55503", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ac53d7ce-456e-4a00-9bd2-c459ab6851c6", + "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c17527bd-1406-4e8c-b95a-6c1d207bff05", + "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0bf5df2d-3a9e-4621-ac3f-d7f6b437d21e", + "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3e8318b1-6f46-4f35-8426-e1b89fc558ca", + "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:32e441b7-03ff-4325-ad12-eff07a8f31c6", + "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ea3f2d72-2dd6-4ec9-8dee-e72b0d3b91b6", + "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9dbd699b-4adf-49f1-b64d-74b1d0a44661", + "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1ad55a32-db34-474d-87b9-e599b2af2fed", + "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:951f1ebf-ebcf-427c-8a4d-7fe1f67c8d58", + "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:856166c2-3ba1-4bcc-98eb-3e8464e29dad", + "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:ac53d7ce-456e-4a00-9bd2-c459ab6851c6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ac53d7ce-456e-4a00-9bd2-c459ab6851c6", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "953493", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "6276", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-432837473906550620955578", + "value" : "NO-649025193247744815308547", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:ac53d7ce-456e-4a00-9bd2-c459ab6851c6", + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:59d5a09f-265a-4255-930a-69499e6099a1", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e835451c-55d1-4583-b120-5b05b4fe4298", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:47a14445-3677-42b5-8f58-4fc036767737", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:42df3cfd-be3a-4a23-8cbb-4886f5f42310", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:891a63c7-b3fb-4165-ba99-9318634c3c3e", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:bad2579c-8d56-4cde-ae3f-106b91207f16", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:af6d4227-3759-4c93-8400-88750f845d42", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:39db236d-265d-4e53-81f1-89c3a42280c2", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d815f036-f26c-4f88-8ce6-573fc3c8e978", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e7cf96b2-2184-4400-b6a7-3191969893e2", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9418e4fc-f1a0-42a1-8bb0-b637d0ea2e8f", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -25450,7 +37449,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-432837473906550620955578", + "batteryIDDMCCode" : "NO-649025193247744815308547", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -25461,32 +37460,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ac53d7ce-456e-4a00-9bd2-c459ab6851c6", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2022-08-13", + "version" : 1.1, + "status" : "Approved" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6209, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 17 + } + }, + "commercial" : { + "placedOnMarket" : "2021-01-11", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-649025193247744815308547", + "key" : "PartInstanceID" + } ], + "gtin" : " 58303814", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "172951776" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2022-11-10", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 7.7691 ] + }, + "id" : "EV5532" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Graphite" + } ], + "critical" : [ "Manganese" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 120 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B3NX", + "manufacturer" : { + "facilityId" : "BPNL00000003B3NX", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-12-13", + "currentStateOfHealthTimestamp" : "2018-12-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-05", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -25495,28 +37699,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c17527bd-1406-4e8c-b95a-6c1d207bff05", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c17527bd-1406-4e8c-b95a-6c1d207bff05", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "839204", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "2411", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -25524,31 +37775,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-185989582548144301696581", + "value" : "NO-478966071391968090480935", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:c17527bd-1406-4e8c-b95a-6c1d207bff05", + "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3240960f-1f84-4e53-bc45-cd326f27b452", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -25557,7 +37833,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -25782,7 +38076,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-185989582548144301696581", + "batteryIDDMCCode" : "NO-478966071391968090480935", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -25793,32 +38087,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c17527bd-1406-4e8c-b95a-6c1d207bff05", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-10-06", + "currentStateOfHealthTimestamp" : "2020-07-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-28", + "currentStateOfHealthTimestamp" : "2024-03-09", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -25827,28 +38147,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0bf5df2d-3a9e-4621-ac3f-d7f6b437d21e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0bf5df2d-3a9e-4621-ac3f-d7f6b437d21e", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "361335", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "1733", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -25856,31 +38223,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-426481059969483055174128", + "value" : "NO-335150056102107596933721", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:0bf5df2d-3a9e-4621-ac3f-d7f6b437d21e", + "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:51b3cf5d-11f4-4db6-a584-02ecc5bdedec", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -25889,7 +38281,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -26114,7 +38524,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-426481059969483055174128", + "batteryIDDMCCode" : "NO-335150056102107596933721", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -26125,32 +38535,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0bf5df2d-3a9e-4621-ac3f-d7f6b437d21e", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-05-10", + "currentStateOfHealthTimestamp" : "2021-05-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-09", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -26159,28 +38595,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3e8318b1-6f46-4f35-8426-e1b89fc558ca", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3e8318b1-6f46-4f35-8426-e1b89fc558ca", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "105259", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "9968", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -26188,31 +38671,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-822219337829564825755309", + "value" : "NO-809969344592637616415689", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:3e8318b1-6f46-4f35-8426-e1b89fc558ca", + "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8b1028ea-217a-4876-b747-0410b9b185b7", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -26221,7 +38729,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -26446,7 +38972,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-822219337829564825755309", + "batteryIDDMCCode" : "NO-809969344592637616415689", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -26457,32 +38983,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3e8318b1-6f46-4f35-8426-e1b89fc558ca", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-08-08", + "currentStateOfHealthTimestamp" : "2014-10-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-23", + "currentStateOfHealthTimestamp" : "2024-02-16", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -26491,28 +39043,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:32e441b7-03ff-4325-ad12-eff07a8f31c6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:32e441b7-03ff-4325-ad12-eff07a8f31c6", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "307973", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "8934", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -26520,31 +39119,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-883034940218871656959766", + "value" : "NO-428529070818912818758400", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:32e441b7-03ff-4325-ad12-eff07a8f31c6", + "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6fe7d49a-4569-4fc3-841e-3b93a22ca927", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -26553,7 +39177,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -26778,7 +39420,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-883034940218871656959766", + "batteryIDDMCCode" : "NO-428529070818912818758400", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -26789,32 +39431,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:32e441b7-03ff-4325-ad12-eff07a8f31c6", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-02-27", + "currentStateOfHealthTimestamp" : "2018-12-03", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-05", + "currentStateOfHealthTimestamp" : "2024-02-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -26823,28 +39491,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:ea3f2d72-2dd6-4ec9-8dee-e72b0d3b91b6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ea3f2d72-2dd6-4ec9-8dee-e72b0d3b91b6", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "893839", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "9261", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -26852,31 +39567,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-654009018711767425253974", + "value" : "NO-325143358634226278153686", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:ea3f2d72-2dd6-4ec9-8dee-e72b0d3b91b6", + "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:75435db2-3868-4a77-a72f-78f96faad8b7", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -26885,7 +39625,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -27110,7 +39868,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-654009018711767425253974", + "batteryIDDMCCode" : "NO-325143358634226278153686", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -27121,32 +39879,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ea3f2d72-2dd6-4ec9-8dee-e72b0d3b91b6", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-11-14", + "currentStateOfHealthTimestamp" : "2015-06-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-28", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -27155,28 +39939,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9dbd699b-4adf-49f1-b64d-74b1d0a44661", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9dbd699b-4adf-49f1-b64d-74b1d0a44661", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "909402", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "8746", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -27184,31 +40015,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-579080891888167984169666", + "value" : "NO-123760690132854833745762", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:9dbd699b-4adf-49f1-b64d-74b1d0a44661", + "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:55ef973f-260b-452e-bfd6-3e359ec8918c", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -27217,7 +40073,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -27442,7 +40316,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-579080891888167984169666", + "batteryIDDMCCode" : "NO-123760690132854833745762", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -27453,32 +40327,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9dbd699b-4adf-49f1-b64d-74b1d0a44661", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-05-09", + "currentStateOfHealthTimestamp" : "2014-05-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-03", + "currentStateOfHealthTimestamp" : "2024-02-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -27487,28 +40387,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1ad55a32-db34-474d-87b9-e599b2af2fed", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ad55a32-db34-474d-87b9-e599b2af2fed", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "549487", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "1699", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -27516,31 +40463,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-123535024717604528500587", + "value" : "NO-202618736706229575349972", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:1ad55a32-db34-474d-87b9-e599b2af2fed", + "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:82c4d997-9689-4641-8a39-200b0848aede", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -27549,7 +40521,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -27774,7 +40764,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-123535024717604528500587", + "batteryIDDMCCode" : "NO-202618736706229575349972", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -27785,32 +40775,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ad55a32-db34-474d-87b9-e599b2af2fed", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-07-18", + "currentStateOfHealthTimestamp" : "2023-05-15", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-23", + "currentStateOfHealthTimestamp" : "2024-02-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -27819,28 +40835,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:951f1ebf-ebcf-427c-8a4d-7fe1f67c8d58", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:951f1ebf-ebcf-427c-8a4d-7fe1f67c8d58", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "989917", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "3060", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -27848,31 +40911,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-985938367514703024834434", + "value" : "NO-332282418462283630241021", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:951f1ebf-ebcf-427c-8a4d-7fe1f67c8d58", + "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:bfea1181-1f4c-4571-b52d-91d5a060833e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -27881,7 +40969,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -28106,7 +41212,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-985938367514703024834434", + "batteryIDDMCCode" : "NO-332282418462283630241021", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -28117,32 +41223,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:951f1ebf-ebcf-427c-8a4d-7fe1f67c8d58", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-05-27", + "currentStateOfHealthTimestamp" : "2015-07-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-14", + "currentStateOfHealthTimestamp" : "2024-02-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -28151,28 +41283,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:856166c2-3ba1-4bcc-98eb-3e8464e29dad", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:856166c2-3ba1-4bcc-98eb-3e8464e29dad", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "558744", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "5000", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -28180,31 +41359,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-973749639814533068824846", + "value" : "NO-661181049931223872649703", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:856166c2-3ba1-4bcc-98eb-3e8464e29dad", + "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:275da478-579d-4cd2-94fe-9a637090bf99", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -28213,7 +41417,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -28438,7 +41660,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-973749639814533068824846", + "batteryIDDMCCode" : "NO-661181049931223872649703", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -28449,32 +41671,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:856166c2-3ba1-4bcc-98eb-3e8464e29dad", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-08-18", + "currentStateOfHealthTimestamp" : "2020-06-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-04", + "currentStateOfHealthTimestamp" : "2024-02-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -28483,74 +41731,424 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Coupé", - "catenaXId" : "urn:uuid:bd03a3fd-f4da-4a02-9a1a-51af6df224a2", - "engine" : { - "size" : 2998, - "power" : 143 - }, - "emptyWeight" : 1.73, - "fuel" : "Elektro", - "vehicleModel" : "Vehicle Fully Electric", - "productionDateGMT" : "2010-01-01", - "equipmentVariants" : [ { - "code" : "S378B", - "description" : "integrated child seats", - "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" : "2015-10-22", - "mileageDistance" : 120000 + } ], + "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "361193", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "5792", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "catenaXId" : "urn:uuid:bd03a3fd-f4da-4a02-9a1a-51af6df224a2", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "FD-69", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "OMCBYBSTTXGQKKBLI", + "value" : "NO-045025435576056642106570", "key" : "partInstanceId" - }, { - "value" : "OMCBYBSTTXGQKKBLI", - "key" : "van" } ], "manufacturingInformation" : { - "date" : "2019-12-05T20:48:06.000Z", - "country" : "DEU" + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:bd03a3fd-f4da-4a02-9a1a-51af6df224a2", + "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", "partTypeInformation" : { - "manufacturerPartId" : "FD-69", - "classification" : "product", - "nameAtManufacturer" : "Vehicle Fully Electric" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0c0ca7b0-9908-4de8-bc68-15f64c1ab8a4", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" } } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-045025435576056642106570", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Iron", - "recycledContent" : 13, + "recycledContent" : 65, "materialClass" : "1.1", "quantity" : { "unit" : "unit:kilogram", @@ -28560,7 +42158,7 @@ "materialAbbreviation" : "IR334" }, { "materialName" : "Polyethylen", - "recycledContent" : 19, + "recycledContent" : 76, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -28570,7 +42168,7 @@ "materialAbbreviation" : "PE221" }, { "materialName" : "Polyamid6", - "recycledContent" : 6, + "recycledContent" : 7, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -28580,7 +42178,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Aluminium", - "recycledContent" : 29, + "recycledContent" : 71, "materialClass" : "2.1", "quantity" : { "unit" : "unit:kilogram", @@ -28590,7 +42188,7 @@ "materialAbbreviation" : "ALU331" }, { "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", - "recycledContent" : 61, + "recycledContent" : 4, "materialClass" : "0.7", "quantity" : { "unit" : "unit:kilogram", @@ -28600,7 +42198,7 @@ "materialAbbreviation" : "W123" }, { "materialName" : "Glue", - "recycledContent" : 52, + "recycledContent" : 86, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -28610,7 +42208,7 @@ "materialAbbreviation" : "GL338" }, { "materialName" : "Carbon Steel", - "recycledContent" : 65, + "recycledContent" : 47, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -28620,7 +42218,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Cooper", - "recycledContent" : 79, + "recycledContent" : 42, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -28630,7 +42228,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Rubber", - "recycledContent" : 85, + "recycledContent" : 80, "materialClass" : "5.3", "quantity" : { "unit" : "unit:kilogram", @@ -28640,7 +42238,7 @@ "materialAbbreviation" : "R22" }, { "materialName" : "Textiles", - "recycledContent" : 38, + "recycledContent" : 54, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:kilogram", @@ -28650,359 +42248,496 @@ "materialAbbreviation" : "TEX1" } ] } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bd03a3fd-f4da-4a02-9a1a-51af6df224a2", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "childItems" : [ { - "catenaXId" : "urn:uuid:bbeef382-427d-4bd6-8e15-d3a3034b21be", + "catenaXId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:72727661-640f-4404-8393-b71d1a82fb58", + "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9c50b935-74e2-4963-a78d-4816461653fd", + "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5bf8b39e-46ba-4d5a-b982-aa3b57dde948", + "catenaXId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bb893e2d-d0c5-4230-8234-4df2e05364a3", + "catenaXId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5fd1b682-37e7-4fd0-86a7-c87a2218ac31", + "catenaXId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a28a2e41-adbb-4fc5-8305-d2d4337661b7", + "catenaXId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b10e484f-a78c-4ee4-85ee-d3fa8dc90809", + "catenaXId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b9dad0fa-7c66-46ff-9ba8-37ccd17f36fc", + "catenaXId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3d773b92-0ec4-45ed-8fb8-fb2b8a94fe1e", + "catenaXId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d2ad5d2d-ec3d-4207-af5f-5969e2057a8e", + "catenaXId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9d276d4b-dfe6-47d5-8f47-9e6d62d68b0a", + "catenaXId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7902434c-b3d4-4713-ab0e-659cb31e4061", + "catenaXId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ecf38edd-cc41-4d8f-adfb-221cd5a43f08", + "catenaXId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d1743139-1406-4a6f-9995-a3429c3c3eba", + "catenaXId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2f868824-e90f-4715-b3ad-29535ce4e267", + "catenaXId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:04dec45d-44ca-4558-aab9-9701461b79a7", + "catenaXId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d6936445-e409-4d60-92bb-5a4d6d8c6129", + "catenaXId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:48579a01-b229-4eb0-bfa6-111c29e0c38d", + "catenaXId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c0fb189b-a949-4ac8-beca-4c57f8a5965f", + "catenaXId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2fee8ff4-8e41-42fc-9f0e-ecd309a7a685", + "catenaXId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:30e4ecf9-4ec6-4470-a713-6cd26c1890d2", + "catenaXId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f0d16e11-d3a2-41fd-af79-7e671bcff450", + "catenaXId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1eb0d57b-3646-4ef3-9b74-92515b200a6b", + "catenaXId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:755f1521-345a-4484-8ad1-103e379dce70", + "catenaXId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9a59915e-229e-43af-83e6-e324d1e4a8f4", + "catenaXId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6534e5ad-4588-4794-bf86-63e2a21e9baa", + "catenaXId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b286040c-edcb-4fe8-a61e-7ed2f093ea3a", + "catenaXId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:94286896-94ac-4d77-a1c0-9988e843c797", + "catenaXId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a466acdb-c675-4f87-a65f-dcce097df8dc", + "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1fa89b00-60f8-4e30-82ea-2f08a9e73a73", + "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B5MJ", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7ed2fc46-27a2-48c3-9ae2-a8e4316cdfce", + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ], + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "XM-20", + "key" : "manufacturerPartId" + }, { + "value" : "OMACDBUHKIXKCMYBT", + "key" : "partInstanceId" + }, { + "value" : "OMACDBUHKIXKCMYBT", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2020-02-01T11:52:28.000Z", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "partTypeInformation" : { + "manufacturerPartId" : "XM-20", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Vehicle Fully Electric" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Coupé", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "engine" : { + "size" : 2998, + "power" : 143 + }, + "emptyWeight" : 1.73, + "fuel" : "Elektro", + "vehicleModel" : "Vehicle Fully Electric", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "S388C", + "description" : "security plus", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", + "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" : "2018-02-28", + "mileageDistance" : 120000 + } ] } ] }, { - "catenaXId" : "urn:uuid:bbeef382-427d-4bd6-8e15-d3a3034b21be", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bbeef382-427d-4bd6-8e15-d3a3034b21be", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "catenaXId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "635211", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "7359", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "73849201-61", "key" : "manufacturerPartId" }, { - "value" : "NO-581297190601032288819038", + "value" : "NO-300645322195279224647156", "key" : "partInstanceId" }, { "value" : "Company 10", @@ -29013,25 +42748,55 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:bbeef382-427d-4bd6-8e15-d3a3034b21be", + "catenaXId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", "partTypeInformation" : { "manufacturerPartId" : "73849201-61", "customerPartId" : "73849201-61", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Catalysator", "nameAtCustomer" : "Catalysator" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", + "partTypeInformation" : { + "ownerPartId" : "73849201-61", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Catalysator", + "partClassification" : [ { + "value" : "Catalysator", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Catalysator" } - } ] - }, { - "catenaXId" : "urn:uuid:72727661-640f-4404-8393-b71d1a82fb58", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:72727661-640f-4404-8393-b71d1a82fb58", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -29042,9 +42807,90 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "childItems" : [ { + "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000000BJTL", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "306254", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "1480", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003CSGV", "key" : "manufacturerId" @@ -29052,7 +42898,7 @@ "value" : "22782277-50", "key" : "manufacturerPartId" }, { - "value" : "NO-767959342175476596509896", + "value" : "NO-314061229466361556071536", "key" : "partInstanceId" }, { "value" : "Company 3", @@ -29063,39 +42909,74 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:72727661-640f-4404-8393-b71d1a82fb58", + "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", "partTypeInformation" : { "manufacturerPartId" : "22782277-50", "customerPartId" : "22782277-50", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door f-l", "nameAtCustomer" : "Door front-left" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:72727661-640f-4404-8393-b71d1a82fb58", + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { - "catenaXId" : "urn:uuid:da978a30-4dde-4d76-808a-b7946763ff0d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "item" : [ { + "itemClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:15868485-0fc6-42a1-94c7-7d7d518990d0", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] - } ] - }, { - "catenaXId" : "urn:uuid:da978a30-4dde-4d76-808a-b7946763ff0d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:da978a30-4dde-4d76-808a-b7946763ff0d", + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "partTypeInformation" : { + "ownerPartId" : "22782277-50", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Door front-left", + "partClassification" : [ { + "value" : "Door front-left", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "nameAtOwner" : "Door front-left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003CSGV", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -29106,9 +42987,102 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { + "localIdentifiers" : [ { + "value" : "72994826PTN", + "key" : "jisNumber" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000000BJTL", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-3434-A", + "customerPartId" : "PRT-12345", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "side element A" + } } ], + "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "188157", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "2637", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000000BJTL", "key" : "manufacturerId" @@ -29116,48 +43090,60 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-655858074471261486971940", + "value" : "NO-720426909780861540771729", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:da978a30-4dde-4d76-808a-b7946763ff0d", + "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door Key", "nameAtCustomer" : "Door Key" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "92879626SFC", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "manufacturerId" : "BPNL00000000BJTL", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:da978a30-4dde-4d76-808a-b7946763ff0d", + "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" + "ownerPartId" : "95657762-59", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Door Key", + "partClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000000BJTL:PartFamily" + } ], + "nameAtOwner" : "Door Key" } - } ] - }, { - "catenaXId" : "urn:uuid:9c50b935-74e2-4963-a78d-4816461653fd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9c50b935-74e2-4963-a78d-4816461653fd", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000000BJTL", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -29168,9 +43154,90 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "childItems" : [ { + "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000000BJTL", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "932970", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "9670", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003CSGV", "key" : "manufacturerId" @@ -29178,7 +43245,7 @@ "value" : "95657362-64", "key" : "manufacturerPartId" }, { - "value" : "NO-227945889703045588466228", + "value" : "NO-895320576393660790702186", "key" : "partInstanceId" }, { "value" : "Company 4", @@ -29189,39 +43256,74 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:9c50b935-74e2-4963-a78d-4816461653fd", + "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", "partTypeInformation" : { "manufacturerPartId" : "33740332-54", "customerPartId" : "33740332-54", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door f-r", "nameAtCustomer" : "Door front-right" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9c50b935-74e2-4963-a78d-4816461653fd", + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { - "catenaXId" : "urn:uuid:bcfae197-40fa-4be0-821d-5c1873a1b7c2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "item" : [ { + "itemClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6e00ae59-8e13-4e95-b2c5-f0d429f9c067", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] - } ] - }, { - "catenaXId" : "urn:uuid:bcfae197-40fa-4be0-821d-5c1873a1b7c2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bcfae197-40fa-4be0-821d-5c1873a1b7c2", + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "partTypeInformation" : { + "ownerPartId" : "33740332-54", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Door front-right", + "partClassification" : [ { + "value" : "Door front-right", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "nameAtOwner" : "Door front-right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003CSGV", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -29232,9 +43334,102 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { + "localIdentifiers" : [ { + "value" : "11820948CYH", + "key" : "jisNumber" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000000BJTL", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-3434-A", + "customerPartId" : "PRT-12345", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "side element A" + } } ], + "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "158524", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "2020", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000000BJTL", "key" : "manufacturerId" @@ -29242,48 +43437,60 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-200738629800530338038454", + "value" : "NO-165918348059332899986718", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:bcfae197-40fa-4be0-821d-5c1873a1b7c2", + "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door Key", "nameAtCustomer" : "Door Key" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "85851549CBX", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "manufacturerId" : "BPNL00000000BJTL", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:bcfae197-40fa-4be0-821d-5c1873a1b7c2", + "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" + "ownerPartId" : "95657762-59", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Door Key", + "partClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000000BJTL:PartFamily" + } ], + "nameAtOwner" : "Door Key" } - } ] - }, { - "catenaXId" : "urn:uuid:5bf8b39e-46ba-4d5a-b982-aa3b57dde948", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5bf8b39e-46ba-4d5a-b982-aa3b57dde948", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", "customers" : [ { - "businessPartner" : false, + "businessPartner" : "BPNL00000000BJTL", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -29294,40 +43501,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "928774", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "8546", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "15635759-16", "key" : "manufacturerPartId" }, { - "value" : "NO-737937819747716495053447", + "value" : "NO-539699124243847797443656", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:5bf8b39e-46ba-4d5a-b982-aa3b57dde948", + "catenaXId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", "partTypeInformation" : { "manufacturerPartId" : "15635759-16", "customerPartId" : "15635759-16", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door r-l", "nameAtCustomer" : "Door rear-left" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", + "partTypeInformation" : { + "ownerPartId" : "15635759-16", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Door rear-left", + "partClassification" : [ { + "value" : "Door rear-left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Door rear-left" } - } ] - }, { - "catenaXId" : "urn:uuid:bb893e2d-d0c5-4230-8234-4df2e05364a3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bb893e2d-d0c5-4230-8234-4df2e05364a3", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -29338,17 +43642,84 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "578586", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "6652", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "28673126-98", "key" : "manufacturerPartId" }, { - "value" : "NO-918900117213790514480162", + "value" : "NO-744737867632442042678606", "key" : "partInstanceId" }, { "value" : "Company 5", @@ -29359,25 +43730,55 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:bb893e2d-d0c5-4230-8234-4df2e05364a3", + "catenaXId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", "partTypeInformation" : { "manufacturerPartId" : "28673126-98", "customerPartId" : "28673126-98", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door r-r", "nameAtCustomer" : "Door rear-right" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", + "partTypeInformation" : { + "ownerPartId" : "28673126-98", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Door rear-right", + "partClassification" : [ { + "value" : "Door rear-right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Door rear-right" } - } ] - }, { - "catenaXId" : "urn:uuid:5fd1b682-37e7-4fd0-86a7-c87a2218ac31", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5fd1b682-37e7-4fd0-86a7-c87a2218ac31", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -29388,17 +43789,84 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "951165", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "8043", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "94421589-82", "key" : "manufacturerPartId" }, { - "value" : "NO-052538229778362108057675", + "value" : "NO-590903203146053071493601", "key" : "partInstanceId" }, { "value" : "Company 6", @@ -29409,25 +43877,55 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:5fd1b682-37e7-4fd0-86a7-c87a2218ac31", + "catenaXId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", "partTypeInformation" : { "manufacturerPartId" : "94421589-82", "customerPartId" : "94421589-82", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Engine hood", "nameAtCustomer" : "Engine hood" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", + "partTypeInformation" : { + "ownerPartId" : "94421589-82", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Engine hood", + "partClassification" : [ { + "value" : "Engine hood", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Engine hood" } - } ] - }, { - "catenaXId" : "urn:uuid:a28a2e41-adbb-4fc5-8305-d2d4337661b7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a28a2e41-adbb-4fc5-8305-d2d4337661b7", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -29438,40 +43936,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "37350", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "9566", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "85023955-75", "key" : "manufacturerPartId" }, { - "value" : "NO-119340272127040376162153", + "value" : "NO-242804366786572471820393", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a28a2e41-adbb-4fc5-8305-d2d4337661b7", + "catenaXId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", "partTypeInformation" : { "manufacturerPartId" : "85023955-75", "customerPartId" : "85023955-75", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Tailgate", "nameAtCustomer" : "Tailgate" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", + "partTypeInformation" : { + "ownerPartId" : "85023955-75", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Tailgate", + "partClassification" : [ { + "value" : "Tailgate", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Tailgate" } - } ] - }, { - "catenaXId" : "urn:uuid:b10e484f-a78c-4ee4-85ee-d3fa8dc90809", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b10e484f-a78c-4ee4-85ee-d3fa8dc90809", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -29482,40 +44077,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "646452", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "5891", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "13769860-47", "key" : "manufacturerPartId" }, { - "value" : "NO-880948236873671144561212", + "value" : "NO-186655058764365149435120", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:b10e484f-a78c-4ee4-85ee-d3fa8dc90809", + "catenaXId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", "partTypeInformation" : { "manufacturerPartId" : "13769860-47", "customerPartId" : "13769860-47", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Fender left", "nameAtCustomer" : "Fender right" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", + "partTypeInformation" : { + "ownerPartId" : "13769860-47", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Fender right", + "partClassification" : [ { + "value" : "Fender right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Fender right" } - } ] - }, { - "catenaXId" : "urn:uuid:b9dad0fa-7c66-46ff-9ba8-37ccd17f36fc", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b9dad0fa-7c66-46ff-9ba8-37ccd17f36fc", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -29526,40 +44218,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "835367", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "6452", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "36643162-35", "key" : "manufacturerPartId" }, { - "value" : "NO-912665213257988345962400", + "value" : "NO-325730621671852447010652", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:b9dad0fa-7c66-46ff-9ba8-37ccd17f36fc", + "catenaXId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", "partTypeInformation" : { "manufacturerPartId" : "36643162-35", "customerPartId" : "36643162-35", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Fender right", "nameAtCustomer" : "Fender right" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", + "partTypeInformation" : { + "ownerPartId" : "36643162-35", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Fender right", + "partClassification" : [ { + "value" : "Fender right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Fender right" } - } ] - }, { - "catenaXId" : "urn:uuid:3d773b92-0ec4-45ed-8fb8-fb2b8a94fe1e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3d773b92-0ec4-45ed-8fb8-fb2b8a94fe1e", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -29570,40 +44359,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "424181", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "7559", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "54165444-59", "key" : "manufacturerPartId" }, { - "value" : "NO-878299599771684119590626", + "value" : "NO-056039171230050894869071", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:3d773b92-0ec4-45ed-8fb8-fb2b8a94fe1e", + "catenaXId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", "partTypeInformation" : { "manufacturerPartId" : "54165444-59", "customerPartId" : "54165444-59", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Bumper front", "nameAtCustomer" : "Bumper front" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", + "partTypeInformation" : { + "ownerPartId" : "54165444-59", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Bumper front", + "partClassification" : [ { + "value" : "Bumper front", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Bumper front" } - } ] - }, { - "catenaXId" : "urn:uuid:d2ad5d2d-ec3d-4207-af5f-5969e2057a8e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d2ad5d2d-ec3d-4207-af5f-5969e2057a8e", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -29614,40 +44500,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "374858", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "5133", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "22768257-25", "key" : "manufacturerPartId" }, { - "value" : "NO-329573165914721759571607", + "value" : "NO-929360720249973155212015", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:d2ad5d2d-ec3d-4207-af5f-5969e2057a8e", + "catenaXId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", "partTypeInformation" : { "manufacturerPartId" : "22768257-25", "customerPartId" : "22768257-25", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Bumper rear", "nameAtCustomer" : "Bumper rear" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", + "partTypeInformation" : { + "ownerPartId" : "22768257-25", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Bumper rear", + "partClassification" : [ { + "value" : "Bumper rear", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Bumper rear" } - } ] - }, { - "catenaXId" : "urn:uuid:9d276d4b-dfe6-47d5-8f47-9e6d62d68b0a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9d276d4b-dfe6-47d5-8f47-9e6d62d68b0a", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -29658,40 +44641,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "123490", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "4347", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "65529521-37", "key" : "manufacturerPartId" }, { - "value" : "NO-504280485837730732570022", + "value" : "NO-024321342753700806308454", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:9d276d4b-dfe6-47d5-8f47-9e6d62d68b0a", + "catenaXId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", "partTypeInformation" : { "manufacturerPartId" : "65529521-37", "customerPartId" : "65529521-37", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Exterior mirror left", "nameAtCustomer" : "Exterior mirror left" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", + "partTypeInformation" : { + "ownerPartId" : "65529521-37", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Exterior mirror left", + "partClassification" : [ { + "value" : "Exterior mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Exterior mirror left" } - } ] - }, { - "catenaXId" : "urn:uuid:7902434c-b3d4-4713-ab0e-659cb31e4061", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7902434c-b3d4-4713-ab0e-659cb31e4061", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -29702,40 +44782,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "441430", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "5392", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "58471477-24", "key" : "manufacturerPartId" }, { - "value" : "NO-324561541056684103909878", + "value" : "NO-662646120446395356026373", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:7902434c-b3d4-4713-ab0e-659cb31e4061", + "catenaXId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", "partTypeInformation" : { "manufacturerPartId" : "58471477-24", "customerPartId" : "58471477-24", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Exterior mirror right", "nameAtCustomer" : "Exterior mirror right" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", + "partTypeInformation" : { + "ownerPartId" : "58471477-24", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Exterior mirror right", + "partClassification" : [ { + "value" : "Exterior mirror right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Exterior mirror right" } - } ] - }, { - "catenaXId" : "urn:uuid:ecf38edd-cc41-4d8f-adfb-221cd5a43f08", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ecf38edd-cc41-4d8f-adfb-221cd5a43f08", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -29746,40 +44923,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "152188", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "7828", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "09002013-68", "key" : "manufacturerPartId" }, { - "value" : "NO-618350547547649484973841", + "value" : "NO-819527814255352957903088", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:ecf38edd-cc41-4d8f-adfb-221cd5a43f08", + "catenaXId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", "partTypeInformation" : { "manufacturerPartId" : "09002013-68", "customerPartId" : "09002013-68", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Trailer coupling", "nameAtCustomer" : "Tailer coupling" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", + "partTypeInformation" : { + "ownerPartId" : "09002013-68", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Tailer coupling", + "partClassification" : [ { + "value" : "Tailer coupling", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Tailer coupling" } - } ] - }, { - "catenaXId" : "urn:uuid:d1743139-1406-4a6f-9995-a3429c3c3eba", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d1743139-1406-4a6f-9995-a3429c3c3eba", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -29790,40 +45064,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "79195", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "2941", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "43501996-98", "key" : "manufacturerPartId" }, { - "value" : "NO-507149910804167793024945", + "value" : "NO-971046622889574251783182", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:d1743139-1406-4a6f-9995-a3429c3c3eba", + "catenaXId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", "partTypeInformation" : { "manufacturerPartId" : "43501996-98", "customerPartId" : "43501996-98", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Dashboard", "nameAtCustomer" : "Dashboard" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", + "partTypeInformation" : { + "ownerPartId" : "43501996-98", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Dashboard", + "partClassification" : [ { + "value" : "Dashboard", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Dashboard" } - } ] - }, { - "catenaXId" : "urn:uuid:2f868824-e90f-4715-b3ad-29535ce4e267", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2f868824-e90f-4715-b3ad-29535ce4e267", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -29834,40 +45205,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "271520", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "9795", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "77795937-13", "key" : "manufacturerPartId" }, { - "value" : "NO-020875207857333103713316", + "value" : "NO-482042071643254440574034", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:2f868824-e90f-4715-b3ad-29535ce4e267", + "catenaXId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", "partTypeInformation" : { "manufacturerPartId" : "77795937-13", "customerPartId" : "77795937-13", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Steering wheel", "nameAtCustomer" : "Steering wheel" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", + "partTypeInformation" : { + "ownerPartId" : "77795937-13", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Steering wheel", + "partClassification" : [ { + "value" : "Steering wheel", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Steering wheel" } - } ] - }, { - "catenaXId" : "urn:uuid:04dec45d-44ca-4558-aab9-9701461b79a7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:04dec45d-44ca-4558-aab9-9701461b79a7", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -29878,40 +45346,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "144638", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "1999", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "20125432-59", "key" : "manufacturerPartId" }, { - "value" : "NO-363030223300892744839812", + "value" : "NO-777931149768338951967480", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:04dec45d-44ca-4558-aab9-9701461b79a7", + "catenaXId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", "partTypeInformation" : { "manufacturerPartId" : "20125432-59", "customerPartId" : "20125432-59", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Indicator left", "nameAtCustomer" : "Indicator left" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", + "partTypeInformation" : { + "ownerPartId" : "20125432-59", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Indicator left", + "partClassification" : [ { + "value" : "Indicator left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Indicator left" } - } ] - }, { - "catenaXId" : "urn:uuid:d6936445-e409-4d60-92bb-5a4d6d8c6129", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d6936445-e409-4d60-92bb-5a4d6d8c6129", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -29922,40 +45487,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "198744", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "3706", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "19073706-76", "key" : "manufacturerPartId" }, { - "value" : "NO-221451143577179986183069", + "value" : "NO-878560885728027798550134", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:d6936445-e409-4d60-92bb-5a4d6d8c6129", + "catenaXId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", "partTypeInformation" : { "manufacturerPartId" : "19073706-76", "customerPartId" : "19073706-76", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Indicator right", "nameAtCustomer" : "Indicator right" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", + "partTypeInformation" : { + "ownerPartId" : "19073706-76", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Indicator right", + "partClassification" : [ { + "value" : "Indicator right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Indicator right" } - } ] - }, { - "catenaXId" : "urn:uuid:48579a01-b229-4eb0-bfa6-111c29e0c38d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:48579a01-b229-4eb0-bfa6-111c29e0c38d", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -29966,40 +45628,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "658003", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "8572", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "45415162-57", "key" : "manufacturerPartId" }, { - "value" : "NO-179156487049825409339044", + "value" : "NO-805496419550529915215563", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:48579a01-b229-4eb0-bfa6-111c29e0c38d", + "catenaXId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", "partTypeInformation" : { "manufacturerPartId" : "45415162-57", "customerPartId" : "45415162-57", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Led headlight", "nameAtCustomer" : "Led headlight" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", + "partTypeInformation" : { + "ownerPartId" : "45415162-57", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Led headlight", + "partClassification" : [ { + "value" : "Led headlight", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Led headlight" } - } ] - }, { - "catenaXId" : "urn:uuid:c0fb189b-a949-4ac8-beca-4c57f8a5965f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c0fb189b-a949-4ac8-beca-4c57f8a5965f", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -30010,40 +45769,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "368794", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "8922", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "78141846-87", "key" : "manufacturerPartId" }, { - "value" : "NO-927916161579680647902834", + "value" : "NO-433766484921905567586722", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:c0fb189b-a949-4ac8-beca-4c57f8a5965f", + "catenaXId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", "partTypeInformation" : { "manufacturerPartId" : "78141846-87", "customerPartId" : "78141846-87", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Starter motor", "nameAtCustomer" : "Starter motor" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", + "partTypeInformation" : { + "ownerPartId" : "78141846-87", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Starter motor", + "partClassification" : [ { + "value" : "Starter motor", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Starter motor" } - } ] - }, { - "catenaXId" : "urn:uuid:2fee8ff4-8e41-42fc-9f0e-ecd309a7a685", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2fee8ff4-8e41-42fc-9f0e-ecd309a7a685", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -30054,40 +45910,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "234878", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "4094", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "81324139-23", "key" : "manufacturerPartId" }, { - "value" : "NO-012754929649759863805690", + "value" : "NO-073558896157054603099567", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:2fee8ff4-8e41-42fc-9f0e-ecd309a7a685", + "catenaXId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", "partTypeInformation" : { "manufacturerPartId" : "81324139-23", "customerPartId" : "81324139-23", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Alternator", "nameAtCustomer" : "Alternator" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", + "partTypeInformation" : { + "ownerPartId" : "81324139-23", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Alternator", + "partClassification" : [ { + "value" : "Alternator", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Alternator" } - } ] - }, { - "catenaXId" : "urn:uuid:30e4ecf9-4ec6-4470-a713-6cd26c1890d2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:30e4ecf9-4ec6-4470-a713-6cd26c1890d2", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -30098,40 +46051,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "480191", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "4281", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "57929013-09", "key" : "manufacturerPartId" }, { - "value" : "NO-157783366880617771344001", + "value" : "NO-816086921018811899598551", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:30e4ecf9-4ec6-4470-a713-6cd26c1890d2", + "catenaXId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", "partTypeInformation" : { "manufacturerPartId" : "57929013-09", "customerPartId" : "57929013-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "AC compressor", "nameAtCustomer" : "Air conditioning compressor" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", + "partTypeInformation" : { + "ownerPartId" : "57929013-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Air conditioning compressor", + "partClassification" : [ { + "value" : "Air conditioning compressor", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Air conditioning compressor" } - } ] - }, { - "catenaXId" : "urn:uuid:f0d16e11-d3a2-41fd-af79-7e671bcff450", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f0d16e11-d3a2-41fd-af79-7e671bcff450", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -30142,40 +46192,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "908858", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 23 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "2172", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "61184040-23", "key" : "manufacturerPartId" }, { - "value" : "NO-588398209358229404250905", + "value" : "NO-395437355406898483813611", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:f0d16e11-d3a2-41fd-af79-7e671bcff450", + "catenaXId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", "partTypeInformation" : { "manufacturerPartId" : "61184040-23", "customerPartId" : "61184040-23", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Taillight rear", "nameAtCustomer" : "Taillight rear" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", + "partTypeInformation" : { + "ownerPartId" : "61184040-23", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Taillight rear", + "partClassification" : [ { + "value" : "Taillight rear", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Taillight rear" } - } ] - }, { - "catenaXId" : "urn:uuid:1eb0d57b-3646-4ef3-9b74-92515b200a6b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1eb0d57b-3646-4ef3-9b74-92515b200a6b", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -30186,40 +46333,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "194779", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "8922", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "78744126-74", "key" : "manufacturerPartId" }, { - "value" : "NO-754397734991987452109399", + "value" : "NO-614870102083581603073819", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:1eb0d57b-3646-4ef3-9b74-92515b200a6b", + "catenaXId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", "partTypeInformation" : { "manufacturerPartId" : "78744126-74", "customerPartId" : "78744126-74", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Taillight front", "nameAtCustomer" : "Taillight front" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", + "partTypeInformation" : { + "ownerPartId" : "78744126-74", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Taillight front", + "partClassification" : [ { + "value" : "Taillight front", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Taillight front" } - } ] - }, { - "catenaXId" : "urn:uuid:755f1521-345a-4484-8ad1-103e379dce70", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:755f1521-345a-4484-8ad1-103e379dce70", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -30230,40 +46474,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "873737", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "9214", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "12093297-03", "key" : "manufacturerPartId" }, { - "value" : "NO-960820013963926321872018", + "value" : "NO-523227635506203515129330", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:755f1521-345a-4484-8ad1-103e379dce70", + "catenaXId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", "partTypeInformation" : { "manufacturerPartId" : "12093297-03", "customerPartId" : "12093297-03", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Axle part front", "nameAtCustomer" : "Axle part front" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", + "partTypeInformation" : { + "ownerPartId" : "12093297-03", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Axle part front", + "partClassification" : [ { + "value" : "Axle part front", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Axle part front" } - } ] - }, { - "catenaXId" : "urn:uuid:9a59915e-229e-43af-83e6-e324d1e4a8f4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9a59915e-229e-43af-83e6-e324d1e4a8f4", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -30274,40 +46615,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "480761", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "4751", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "88111709-49", "key" : "manufacturerPartId" }, { - "value" : "NO-789644607568100912676333", + "value" : "NO-518500285938140196776423", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:9a59915e-229e-43af-83e6-e324d1e4a8f4", + "catenaXId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", "partTypeInformation" : { "manufacturerPartId" : "88111709-49", "customerPartId" : "88111709-49", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Axle part rear", "nameAtCustomer" : "Axle part rear" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", + "partTypeInformation" : { + "ownerPartId" : "88111709-49", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Axle part rear", + "partClassification" : [ { + "value" : "Axle part rear", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Axle part rear" } - } ] - }, { - "catenaXId" : "urn:uuid:6534e5ad-4588-4794-bf86-63e2a21e9baa", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6534e5ad-4588-4794-bf86-63e2a21e9baa", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -30318,40 +46756,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "143358", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "1168", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "00871379-44", "key" : "manufacturerPartId" }, { - "value" : "NO-722138251626648066210209", + "value" : "NO-130941702964351461890844", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:6534e5ad-4588-4794-bf86-63e2a21e9baa", + "catenaXId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", "partTypeInformation" : { "manufacturerPartId" : "00871379-44", "customerPartId" : "00871379-44", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Chassis", "nameAtCustomer" : "Chassis" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", + "partTypeInformation" : { + "ownerPartId" : "00871379-44", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Chassis", + "partClassification" : [ { + "value" : "Chassis", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Chassis" } - } ] - }, { - "catenaXId" : "urn:uuid:b286040c-edcb-4fe8-a61e-7ed2f093ea3a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b286040c-edcb-4fe8-a61e-7ed2f093ea3a", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -30362,40 +46897,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "37456", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "3981", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "08901347-87", "key" : "manufacturerPartId" }, { - "value" : "NO-910688492902936631612059", + "value" : "NO-280503950043440030561882", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:b286040c-edcb-4fe8-a61e-7ed2f093ea3a", + "catenaXId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", "partTypeInformation" : { "manufacturerPartId" : "08901347-87", "customerPartId" : "08901347-87", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Rims", "nameAtCustomer" : "Rims" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", + "partTypeInformation" : { + "ownerPartId" : "08901347-87", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Rims", + "partClassification" : [ { + "value" : "Rims", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Rims" } - } ] - }, { - "catenaXId" : "urn:uuid:94286896-94ac-4d77-a1c0-9988e843c797", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:94286896-94ac-4d77-a1c0-9988e843c797", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -30406,40 +47038,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "333033", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9489", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "45863316-60", "key" : "manufacturerPartId" }, { - "value" : "NO-640026199356221291754105", + "value" : "NO-658219514540661622362738", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:94286896-94ac-4d77-a1c0-9988e843c797", + "catenaXId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", "partTypeInformation" : { "manufacturerPartId" : "45863316-60", "customerPartId" : "45863316-60", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Tires", "nameAtCustomer" : "Tires" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", + "partTypeInformation" : { + "ownerPartId" : "45863316-60", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Tires", + "partClassification" : [ { + "value" : "Tires", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Tires" } - } ] - }, { - "catenaXId" : "urn:uuid:a466acdb-c675-4f87-a65f-dcce097df8dc", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a466acdb-c675-4f87-a65f-dcce097df8dc", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -30450,17 +47179,151 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 40, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 18, + "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" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "childItems" : [ { + "catenaXId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B3NX", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", "bpnl" : "BPNL00000003B2OM", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "46370", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "2419", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003B2OM", "key" : "manufacturerId" }, { - "value" : "1O222E8-43", + "value" : "42555H1-52", "key" : "manufacturerPartId" }, { - "value" : "NO-564374912524864490286188", + "value" : "NO-851136035392705186021761", "key" : "partInstanceId" }, { "value" : "Company 2", @@ -30471,18 +47334,116 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B2OM", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a466acdb-c675-4f87-a65f-dcce097df8dc", + "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", "partTypeInformation" : { - "manufacturerPartId" : "1O222E8-43", - "customerPartId" : "1O222E8-43", - "classification" : "component", + "manufacturerPartId" : "42555H1-52", + "customerPartId" : "42555H1-52", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Transmission", "nameAtCustomer" : "Transmission" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "manufacturerId" : "BPNL00000003B2OM", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:de5b5e6a-cf86-48b9-aa15-0f054f002c18", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:774fe44f-2cc3-46fd-b484-1731623d80af", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:eb4873b6-5fff-4dc8-9ea6-99ff6ae31368", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "partTypeInformation" : { + "ownerPartId" : "42555H1-52", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Transmission", + "partClassification" : [ { + "value" : "Transmission", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "nameAtOwner" : "Transmission" } } ], - "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "urn:samm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { "productSpecificParameters" : { "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], "driveType" : "combustion engine", @@ -30523,10 +47484,10 @@ "documentTitle" : "Title A" } ] }, - "catenaXId" : "urn:uuid:a466acdb-c675-4f87-a65f-dcce097df8dc", + "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", "identification" : { "localIdentifiers" : [ { - "value" : "NO-564374912524864490286188", + "value" : "NO-851136035392705186021761", "key" : "PartInstanceID" } ], "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", @@ -30592,109 +47553,12 @@ "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] } } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "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" : 48, - "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" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a466acdb-c675-4f87-a65f-dcce097df8dc", - "childItems" : [ { - "catenaXId" : "urn:uuid:f674cbbe-15ce-4c57-b867-63baa328ab80", - "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:adeb782b-a0a9-410f-bdba-85ac8d377f34", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a268fff1-f8f1-4656-a674-1a9551c25583", - "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:f674cbbe-15ce-4c57-b867-63baa328ab80", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:f674cbbe-15ce-4c57-b867-63baa328ab80", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f674cbbe-15ce-4c57-b867-63baa328ab80", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003B2OM", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -30705,14 +47569,14 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "Engineering Plastics", "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 22, + "recycledContent" : 64, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -30722,7 +47586,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 72, + "recycledContent" : 46, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -30731,15 +47595,128 @@ "aggregateState" : "solid", "materialAbbreviation" : "GF30" } ] - } ] - }, { - "catenaXId" : "urn:uuid:adeb782b-a0a9-410f-bdba-85ac8d377f34", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:adeb782b-a0a9-410f-bdba-85ac8d377f34", + } ], + "catenaXId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "800329", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "7680", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "partTypeInformation" : { + "manufacturerPartId" : "GP-33", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", "customers" : [ { "businessPartner" : "BPNL00000003B0Q0", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -30750,74 +47727,188 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "childItems" : [ { + "catenaXId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "54014", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "9905", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "67137S6-87", + "value" : "10955Z5-05", "key" : "manufacturerPartId" }, { - "value" : "NO-064687338142904749562855", + "value" : "NO-314977894611835991781438", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:adeb782b-a0a9-410f-bdba-85ac8d377f34", + "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", "partTypeInformation" : { - "manufacturerPartId" : "67137S6-87", - "customerPartId" : "67137S6-87", - "classification" : "component", + "manufacturerPartId" : "10955Z5-05", + "customerPartId" : "10955Z5-05", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:adeb782b-a0a9-410f-bdba-85ac8d377f34", + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { - "catenaXId" : "urn:uuid:14837a71-e577-406b-8b9d-7749143aa8d2", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d1581541-ec5c-46d3-b00c-e0496313a615", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] - } ] - }, { - "catenaXId" : "urn:uuid:14837a71-e577-406b-8b9d-7749143aa8d2", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:14837a71-e577-406b-8b9d-7749143aa8d2", + "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "NTIER Product" + "ownerPartId" : "10955Z5-05", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Sensor", + "partClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "nameAtOwner" : "Sensor" } } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "customers" : [ { + "businessPartner" : "BPNL00000003B3NX", + "parentItems" : [ { + "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "NTIER Product", "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 36, + "recycledContent" : 57, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -30827,7 +47918,7 @@ "materialAbbreviation" : "" }, { "materialName" : "Other", - "recycledContent" : 19, + "recycledContent" : 14, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -30836,34 +47927,128 @@ "aggregateState" : "solid", "materialAbbreviation" : "" } ] - } ] - }, { - "catenaXId" : "urn:uuid:a268fff1-f8f1-4656-a674-1a9551c25583", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { + } ], + "catenaXId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "79565", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "5884", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", + "value" : "BPNL00000003B0Q0", "key" : "batchId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a268fff1-f8f1-4656-a674-1a9551c25583", + "catenaXId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" + "manufacturerPartId" : "RF-05", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" } } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a268fff1-f8f1-4656-a674-1a9551c25583", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003B0Q0", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -30874,9 +48059,13 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "childItems" : [ ] } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Glue", "materialClass" : "6.2", @@ -30888,18 +48077,127 @@ "materialAbbreviation" : "GL338" } ] } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a268fff1-f8f1-4656-a674-1a9551c25583", + "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "562585", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "3646", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] - } ] - }, { - "catenaXId" : "urn:uuid:1fa89b00-60f8-4e30-82ea-2f08a9e73a73", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1fa89b00-60f8-4e30-82ea-2f08a9e73a73", + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "partTypeInformation" : { + "manufacturerPartId" : "VH-77", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AXS3", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -30910,36 +48208,12 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003B5MJ", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", - "key" : "manufacturerId" - }, { - "value" : "30516Q8-40", - "key" : "manufacturerPartId" - }, { - "value" : "NO-620582275624888072201661", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1fa89b00-60f8-4e30-82ea-2f08a9e73a73", - "partTypeInformation" : { - "manufacturerPartId" : "30516Q8-40", - "customerPartId" : "30516Q8-40", - "classification" : "component", - "nameAtManufacturer" : "ECU", - "nameAtCustomer" : "ECU" - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Glue", - "recycledContent" : 86, + "recycledContent" : 9, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -30949,67 +48223,226 @@ "materialAbbreviation" : "GL338" } ] } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1fa89b00-60f8-4e30-82ea-2f08a9e73a73", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", "childItems" : [ { - "catenaXId" : "urn:uuid:b907b6c0-cb8f-4b8d-aa42-b6c688c01112", + "catenaXId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", "quantity" : { "quantityNumber" : 0.3301, "measurementUnit" : "unit:kilogram" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:20aab60e-8330-4101-98c8-4d07ff55b17c", + "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d3096af2-2b90-4d6e-9831-ce5b5273a54b", + "catenaXId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", "quantity" : { "quantityNumber" : 0.2001, "measurementUnit" : "unit:kilogram" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:b907b6c0-cb8f-4b8d-aa42-b6c688c01112", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { + } ], + "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "bpnl" : "BPNL00000003B5MJ", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "341632", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 23 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "8806", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", + "value" : "BPNL00000003B5MJ", "key" : "manufacturerId" }, { - "value" : "BID12345678", - "key" : "batchId" + "value" : "63085P2-81", + "key" : "manufacturerPartId" + }, { + "value" : "NO-751896380643428446985611", + "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B5MJ", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:b907b6c0-cb8f-4b8d-aa42-b6c688c01112", + "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" + "manufacturerPartId" : "63085P2-81", + "customerPartId" : "63085P2-81", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "manufacturerId" : "BPNL00000003B5MJ", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3ea90642-dabf-4a50-8b17-550b0e87784e", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:72e52556-29cd-426b-8e67-b7d2bf1ef02f", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:28638f99-1095-4df2-8353-6635c917b50b", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "partTypeInformation" : { + "ownerPartId" : "63085P2-81", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ECU", + "partClassification" : [ { + "value" : "ECU", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "nameAtOwner" : "ECU" } } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b907b6c0-cb8f-4b8d-aa42-b6c688c01112", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", "customers" : [ { "businessPartner" : "BPNL00000003B5MJ", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -31020,14 +48453,14 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "Glue", "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 60, + "recycledContent" : 22, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -31037,7 +48470,7 @@ "materialAbbreviation" : "AL7" }, { "materialName" : "Other", - "recycledContent" : 76, + "recycledContent" : 33, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -31046,15 +48479,128 @@ "aggregateState" : "solid", "materialAbbreviation" : "" } ] - } ] - }, { - "catenaXId" : "urn:uuid:20aab60e-8330-4101-98c8-4d07ff55b17c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:20aab60e-8330-4101-98c8-4d07ff55b17c", + } ], + "catenaXId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "947897", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "3742", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "manufacturerId" : "BPNL00000003AXS3", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "partTypeInformation" : { + "manufacturerPartId" : "SW-62", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AXS3", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -31065,74 +48611,188 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "childItems" : [ { + "catenaXId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "561100", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "2063", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "02507K9-82", + "value" : "99019M6-53", "key" : "manufacturerPartId" }, { - "value" : "NO-218964514162371286733264", + "value" : "NO-751568112188359093289552", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:20aab60e-8330-4101-98c8-4d07ff55b17c", + "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", "partTypeInformation" : { - "manufacturerPartId" : "02507K9-82", - "customerPartId" : "02507K9-82", - "classification" : "component", + "manufacturerPartId" : "99019M6-53", + "customerPartId" : "99019M6-53", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:20aab60e-8330-4101-98c8-4d07ff55b17c", + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { - "catenaXId" : "urn:uuid:d43f7be2-8596-446e-89a2-74976dbc5264", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e1428cda-bedb-4e46-9b7d-7fb10f7963ed", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] - } ] - }, { - "catenaXId" : "urn:uuid:d43f7be2-8596-446e-89a2-74976dbc5264", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d43f7be2-8596-446e-89a2-74976dbc5264", + "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" + "ownerPartId" : "99019M6-53", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Sensor", + "partClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "nameAtOwner" : "Sensor" } } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "customers" : [ { + "businessPartner" : "BPNL00000003B3NX", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "Engineering Plastics", "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 66, + "recycledContent" : 12, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -31142,7 +48802,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 13, + "recycledContent" : 51, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -31151,57 +48811,146 @@ "aggregateState" : "solid", "materialAbbreviation" : "GF30" } ] - } ] - }, { - "catenaXId" : "urn:uuid:d3096af2-2b90-4d6e-9831-ce5b5273a54b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d3096af2-2b90-4d6e-9831-ce5b5273a54b", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "513100", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 6 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "5299", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "33981B3-79", - "key" : "manufacturerPartId" - }, { - "value" : "NO-474083456668982757870942", - "key" : "partInstanceId" + "key" : "batchId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:d3096af2-2b90-4d6e-9831-ce5b5273a54b", + "catenaXId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", "partTypeInformation" : { - "manufacturerPartId" : "33981B3-79", - "customerPartId" : "33981B3-79", - "classification" : "component", - "nameAtManufacturer" : "Engineering Plastics", - "nameAtCustomer" : "Engineering Plastics" + "manufacturerPartId" : "QP-25", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" } } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "Engineering Plastics", "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 74, + "recycledContent" : 64, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -31211,7 +48960,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 42, + "recycledContent" : 34, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -31220,346 +48969,190 @@ "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" } ], - "catenaXId" : "urn:uuid:7ed2fc46-27a2-48c3-9ae2-a8e4316cdfce", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7ed2fc46-27a2-48c3-9ae2-a8e4316cdfce", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "catenaXId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "760174", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "6138", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003B0Q0", "key" : "manufacturerId" }, { - "value" : "38049661-08", + "value" : "93605D2-91", "key" : "manufacturerPartId" }, { - "value" : "NO-429466204259088844474301", + "value" : "NO-871580055866821435813562", "key" : "partInstanceId" - }, { - "value" : "Company 1", - "key" : "company" - }, { - "value" : "Brand 1", - "key" : "brand" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:7ed2fc46-27a2-48c3-9ae2-a8e4316cdfce", + "catenaXId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", "partTypeInformation" : { - "manufacturerPartId" : "38049661-08", - "customerPartId" : "38049661-08", - "classification" : "component", - "nameAtManufacturer" : "Battery", - "nameAtCustomer" : "Battery" + "manufacturerPartId" : "93605D2-91", + "customerPartId" : "93605D2-91", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "partTypeInformation" : { + "ownerPartId" : "93605D2-91", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Engineering Plastics", + "partClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "Engineering Plastics" } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "pack" - } ], - "productType" : "pack" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-744309140234558939999675", + "key" : "partInstanceId" + }, { + "value" : "Company 1", + "key" : "company" + }, { + "value" : "Brand 1", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" } ] }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-429466204259088844474301", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Cooper", - "recycledContent" : 54, - "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" : 55, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "urn:samm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { "incoterms" : "DAP (Delivered at Place)", "image" : { "name" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -31596,7 +49189,7 @@ "key" : "JxkyvRnL" } ], "productLink" : "https://123", - "oeNumber" : "NO-429466204259088844474301", + "oeNumber" : "NO-744309140234558939999675", "category" : { "subCategory" : [ "Battery" ], "mainCategory" : [ "Audio, video, navigation" ] @@ -31608,7 +49201,126 @@ "sku" : "1002090, xYz.09, ABcXYZ", "mileage" : 120000.06 } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:acd7e48c-374e-45af-a539-f0bd4d1c03e4", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:25ff450f-5fae-44a0-a8a2-64ad5efc2ad0", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:efad6b8b-9580-4ba2-8222-2722e1875e4a", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1d81e302-6736-4088-af62-1173445061f4", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:decc911a-35dc-40c6-8f49-5be7acee6908", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b4bf2044-4504-4295-8645-3184b366cea4", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", @@ -31619,99 +49331,99 @@ "value" : 1 }, "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" + "customerPartId" : "38049661-08", + "manufacturerPartId" : "38049661-08" } }, "typology" : { "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", + "description" : "This is the product description of a Battery", "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" + "code" : "27-05-02-91", + "definition" : "Traction battery, starter battery (parts)" }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" }, "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" + "issueDate" : "2023-01-18", + "version" : 2, + "status" : "Invalid" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 + "diameter" : 1346.0496, + "width" : 1346, + "length" : 2306, + "weight" : 412, + "height" : 283 }, "lifespan" : { - "unit" : "unit:day", - "value" : 36 + "unit" : "unit:year", + "value" : 15 } }, "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 + "placedOnMarket" : "2022-01-28", + "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-429466204259088844474301", + "value" : "NO-744309140234558939999675", "key" : "PartInstanceID" } ], - "gtin" : "12345678", + "gtin" : " 71842155", "additionalCode" : [ { "name" : "TARIC", - "value" : "8703 24 10 00" + "value" : "444770484" } ] }, "sources" : { "optional" : [ { "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, - "name" : "other" + "name" : "sustainability" } ], "mandatory" : { "safetyTransportation" : { - "header" : "Sustainability Document Material XY", + "header" : "Shipping guidelines", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Passport", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", + "header" : "Laboratory test results HVB Module HV MODUL", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "safetyPackaging" : { - "header" : "Sustainability Document Material XY", + "header" : "Packaging instruction for HVB Module HV MODUL", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "declarationOfConformity" : [ { "document" : { "header" : "Sustainability Document Material XY", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "name" : "other" } ] @@ -31719,191 +49431,272 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2000-01-01", + "date" : "2024-01-16", "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" + "description" : "Battery test", + "title" : "Maintenance Service" } ], - "reusablePackaging" : true, + "reusablePackaging" : false, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", "producerId" : "BPNL1234567890ZZ" } ], "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", + "unit" : "unit:percent", "name" : "Lead", - "location" : "Housing", + "location" : "HvbCell", "concentration" : { - "left" : [ 3.592682E37 ] + "left" : [ 1.8624 ] }, - "id" : "RC0402" + "id" : "JW3524" } ] }, "additionalData" : [ { "data" : "23", "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", + "data" : "", + "description" : "", + "label" : "", "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" + "dataType" : "xsd:string", + "typeUnit" : "" } } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", + "description" : "", + "label" : "", "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" + "dataType" : "xsd:string", + "typeUnit" : "" } } ], "sustainability" : { "material" : [ { - "recycled" : false, - "renewable" : true, + "recycled" : true, + "renewable" : false, "percentage" : 5, "name" : "Aluminium" } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], + "critical" : [ "Lithium" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { "extWBCSD_otherOperatorName" : "NSF", "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { + "productOrSectorSpecificRules" : [ { "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } + } ] } ], - "carbonContentTotal" : 2.5 + "carbonContentTotal" : 119 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL1234567890ZZ", + "importer" : "BPNL00000003B3NX", "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AYRE" } } } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7ed2fc46-27a2-48c3-9ae2-a8e4316cdfce", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 54, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 20, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 82, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", "childItems" : [ { - "catenaXId" : "urn:uuid:b4724632-6c25-41c2-bb6c-957588e76c33", + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fa4cd974-dcbd-4c00-a05a-12cd4de0e2ac", + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ddda262d-c33a-4796-b165-53ba7ca3e4fe", + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:aa04aa4a-7d1b-4f9f-980f-b727dcaedf74", + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:cebc2508-3296-42ac-ab56-9beca2d13c47", + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8f2ceb18-7883-400e-a886-9e7d39dd16a0", + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:b4724632-6c25-41c2-bb6c-957588e76c33", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b4724632-6c25-41c2-bb6c-957588e76c33", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "667967", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 23 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "6313", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-703642255558789723959088", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b4724632-6c25-41c2-bb6c-957588e76c33", + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "ownerPartId" : "38049661-08", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Battery", + "partClassification" : [ { + "value" : "Battery", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Battery" } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -32128,7 +49921,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-703642255558789723959088", + "batteryIDDMCCode" : "NO-744309140234558939999675", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -32139,10 +49932,30 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "pack" + } ], + "productType" : "pack" + } ], + "urn:samm: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:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 81, + "recycledContent" : 62, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -32152,7 +49965,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 69, + "recycledContent" : 6, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -32162,7 +49975,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 18, + "recycledContent" : 12, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -32172,361 +49985,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-703642255558789723959088", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b4724632-6c25-41c2-bb6c-957588e76c33", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e1c11828-99d8-42c5-a124-66506e6aaa39", + "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c40e3453-dbcc-4700-95f5-7a364f014f23", + "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a6ce193d-877e-4ae5-9220-4ea541873aab", + "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5c5f0bb3-f156-497a-a875-aa153f3e2fda", + "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3bbac97f-a5a2-4999-9783-02c729438433", + "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0b15bcf2-3163-4937-a5d9-fdc31a4d27fd", + "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:38244d25-07f0-49e7-9c41-7d6d26d75e74", + "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:06b9a96e-1c9c-4f31-8cda-ce467da28dbc", + "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ba771d97-16d2-431f-a0bb-7318824fb4d1", + "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b98373d7-393f-4f0f-a9b8-9c377a2c51bb", + "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:e1c11828-99d8-42c5-a124-66506e6aaa39", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e1c11828-99d8-42c5-a124-66506e6aaa39", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "880907", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "8683", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-685893506836149695044081", + "value" : "NO-599349389132825299815680", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:e1c11828-99d8-42c5-a124-66506e6aaa39", + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:25af164a-e6f7-480e-b492-651b7da1d222", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:85df416e-5cbc-4b72-ab98-7b3a0f597525", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:babcff1f-507f-463e-be9e-94e55c0c64e9", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8b3f6d58-bc5a-4e0f-b2ec-3578fe6d38e1", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:73e143b7-5308-4264-b331-120cd9705213", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8ba0f6bd-8659-4a45-8e0b-97479a0509bd", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:dbd8f06d-e686-4986-932a-6a12c955e134", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e6e5ea84-808c-43f6-8c51-b5ae7ce222d7", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a5494186-1b4a-49e5-a4d4-2c85773071e4", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0ec3fa8d-9e39-4d7f-8c51-1a2ae91bf453", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a8073dee-f6d6-44e1-8772-5368a96a1b08", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -32751,7 +50656,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-685893506836149695044081", + "batteryIDDMCCode" : "NO-599349389132825299815680", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -32762,32 +50667,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e1c11828-99d8-42c5-a124-66506e6aaa39", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2021-12-29", + "version" : 2.8, + "status" : "Approved" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6884, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 17 + } + }, + "commercial" : { + "placedOnMarket" : "2021-12-20", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-599349389132825299815680", + "key" : "PartInstanceID" + } ], + "gtin" : " 78507355", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "569550313" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2022-04-12", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 4.4507 ] + }, + "id" : "EM9757" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Sealant" + } ], + "critical" : [ "Nickel" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 105 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AXS3", + "manufacturer" : { + "facilityId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-03-04", + "currentStateOfHealthTimestamp" : "2016-08-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-14", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -32796,28 +50906,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c40e3453-dbcc-4700-95f5-7a364f014f23", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c40e3453-dbcc-4700-95f5-7a364f014f23", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "887584", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "3164", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -32825,31 +50982,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-947897976027715491397485", + "value" : "NO-276052741206550431565449", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:c40e3453-dbcc-4700-95f5-7a364f014f23", + "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ec4ede01-6089-4547-8675-4251e3162d78", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -32858,7 +51040,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -33083,7 +51283,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-947897976027715491397485", + "batteryIDDMCCode" : "NO-276052741206550431565449", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -33094,32 +51294,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c40e3453-dbcc-4700-95f5-7a364f014f23", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-03-02", + "currentStateOfHealthTimestamp" : "2021-12-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-10", + "currentStateOfHealthTimestamp" : "2024-03-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -33128,28 +51354,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a6ce193d-877e-4ae5-9220-4ea541873aab", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a6ce193d-877e-4ae5-9220-4ea541873aab", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "137895", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "1859", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -33157,31 +51430,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-517918578192203158554123", + "value" : "NO-613745749330170700793987", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a6ce193d-877e-4ae5-9220-4ea541873aab", + "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:021be7ca-fa9b-4b99-a7f5-eb9bb87b3faf", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -33190,7 +51488,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -33415,7 +51731,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-517918578192203158554123", + "batteryIDDMCCode" : "NO-613745749330170700793987", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -33426,32 +51742,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a6ce193d-877e-4ae5-9220-4ea541873aab", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-08-28", + "currentStateOfHealthTimestamp" : "2022-04-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-03", + "currentStateOfHealthTimestamp" : "2024-03-09", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -33460,28 +51802,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5c5f0bb3-f156-497a-a875-aa153f3e2fda", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5c5f0bb3-f156-497a-a875-aa153f3e2fda", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "33224", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "7536", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -33489,31 +51878,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-206348782422430185162571", + "value" : "NO-816675614874955054622587", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:5c5f0bb3-f156-497a-a875-aa153f3e2fda", + "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4d059a49-57f3-4fe4-ab32-ba03cddbf666", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -33522,7 +51936,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -33747,7 +52179,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-206348782422430185162571", + "batteryIDDMCCode" : "NO-816675614874955054622587", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -33758,32 +52190,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5c5f0bb3-f156-497a-a875-aa153f3e2fda", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-04-25", + "currentStateOfHealthTimestamp" : "2021-11-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-25", + "currentStateOfHealthTimestamp" : "2024-02-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -33792,28 +52250,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3bbac97f-a5a2-4999-9783-02c729438433", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3bbac97f-a5a2-4999-9783-02c729438433", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "264313", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "1702", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -33821,31 +52326,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-938597300775473972574496", + "value" : "NO-583571011792716331126348", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:3bbac97f-a5a2-4999-9783-02c729438433", + "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a336dc1a-f087-492a-96d2-80e64ec70178", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -33854,7 +52384,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -34079,7 +52627,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-938597300775473972574496", + "batteryIDDMCCode" : "NO-583571011792716331126348", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -34090,32 +52638,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3bbac97f-a5a2-4999-9783-02c729438433", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-05-11", + "currentStateOfHealthTimestamp" : "2015-12-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-07", + "currentStateOfHealthTimestamp" : "2024-02-22", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -34124,28 +52698,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0b15bcf2-3163-4937-a5d9-fdc31a4d27fd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0b15bcf2-3163-4937-a5d9-fdc31a4d27fd", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "173754", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "4147", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -34153,31 +52774,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-442149341320889402083518", + "value" : "NO-701698086749428343178985", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:0b15bcf2-3163-4937-a5d9-fdc31a4d27fd", + "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3c5c8509-adeb-4a2a-91ac-7456c953bda7", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -34186,7 +52832,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -34411,7 +53075,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-442149341320889402083518", + "batteryIDDMCCode" : "NO-701698086749428343178985", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -34422,32 +53086,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0b15bcf2-3163-4937-a5d9-fdc31a4d27fd", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-11-08", + "currentStateOfHealthTimestamp" : "2020-09-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-11", + "currentStateOfHealthTimestamp" : "2024-02-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -34456,28 +53146,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:38244d25-07f0-49e7-9c41-7d6d26d75e74", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:38244d25-07f0-49e7-9c41-7d6d26d75e74", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "859315", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "9360", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -34485,31 +53222,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-553214171870419595102209", + "value" : "NO-629544766376868286560031", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:38244d25-07f0-49e7-9c41-7d6d26d75e74", + "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c14cbd74-248c-4c05-807c-e14766317c7f", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -34518,7 +53280,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -34743,7 +53523,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-553214171870419595102209", + "batteryIDDMCCode" : "NO-629544766376868286560031", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -34754,32 +53534,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:38244d25-07f0-49e7-9c41-7d6d26d75e74", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-11-25", + "currentStateOfHealthTimestamp" : "2019-08-31", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-11", + "currentStateOfHealthTimestamp" : "2024-02-18", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -34788,28 +53594,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:06b9a96e-1c9c-4f31-8cda-ce467da28dbc", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:06b9a96e-1c9c-4f31-8cda-ce467da28dbc", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "421680", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "7936", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -34817,31 +53670,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-679897983588082445013303", + "value" : "NO-574718760399170263078806", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:06b9a96e-1c9c-4f31-8cda-ce467da28dbc", + "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b362a145-eb11-42df-837f-b8450ab6d65a", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -34850,7 +53728,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -35075,7 +53971,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-679897983588082445013303", + "batteryIDDMCCode" : "NO-574718760399170263078806", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -35086,32 +53982,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:06b9a96e-1c9c-4f31-8cda-ce467da28dbc", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-04-29", + "currentStateOfHealthTimestamp" : "2023-07-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-09", + "currentStateOfHealthTimestamp" : "2024-03-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -35120,28 +54042,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:ba771d97-16d2-431f-a0bb-7318824fb4d1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ba771d97-16d2-431f-a0bb-7318824fb4d1", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "574615", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 23 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "4964", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -35149,31 +54118,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-647118061210097954526438", + "value" : "NO-585548541298586466303843", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:ba771d97-16d2-431f-a0bb-7318824fb4d1", + "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:761e02f3-5258-431e-9a3d-c6e1bf2ed993", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -35182,7 +54176,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -35407,7 +54419,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-647118061210097954526438", + "batteryIDDMCCode" : "NO-585548541298586466303843", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -35418,32 +54430,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ba771d97-16d2-431f-a0bb-7318824fb4d1", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-02-10", + "currentStateOfHealthTimestamp" : "2017-11-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-09", + "currentStateOfHealthTimestamp" : "2024-02-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -35452,28 +54490,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b98373d7-393f-4f0f-a9b8-9c377a2c51bb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b98373d7-393f-4f0f-a9b8-9c377a2c51bb", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "363231", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "7876", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -35481,31 +54566,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-653672903753634513756983", + "value" : "NO-849571409038311009141692", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:b98373d7-393f-4f0f-a9b8-9c377a2c51bb", + "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:955f4773-e317-4a2c-bfdd-71681c43d167", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -35514,7 +54624,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -35739,7 +54867,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-653672903753634513756983", + "batteryIDDMCCode" : "NO-849571409038311009141692", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -35750,32 +54878,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b98373d7-393f-4f0f-a9b8-9c377a2c51bb", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-07-13", + "currentStateOfHealthTimestamp" : "2017-10-23", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-12", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -35784,60 +54938,159 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:fa4cd974-dcbd-4c00-a05a-12cd4de0e2ac", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fa4cd974-dcbd-4c00-a05a-12cd4de0e2ac", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "542029", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "3531", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840837-48", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-341015767385879535443671", + "value" : "NO-046489068699513613983142", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:fa4cd974-dcbd-4c00-a05a-12cd4de0e2ac", + "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d17dfa57-615c-4d7a-81f2-0389277e4e3e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -36062,7 +55315,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-341015767385879535443671", + "batteryIDDMCCode" : "NO-046489068699513613983142", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -36073,10 +55326,36 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 3, + "recycledContent" : 61, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -36086,7 +55365,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 62, + "recycledContent" : 9, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -36096,7 +55375,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 14, + "recycledContent" : 84, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -36106,361 +55385,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-341015767385879535443671", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fa4cd974-dcbd-4c00-a05a-12cd4de0e2ac", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6303b0f5-a2b7-42b6-bf82-4375539f3c2c", + "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:32b1171c-6c66-45fa-b074-a71c4b2366e2", + "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6233ac18-fef7-4e7e-866c-6e26025764d4", + "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:327be093-7285-4097-8464-d703bd8c6978", + "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c467a5f2-0b81-4cd2-a13d-5a61617edf65", + "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b52b3b21-f046-4e9b-a551-421098a2a67a", + "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5297a8c2-01d6-49b2-961d-fde03658ec39", + "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:553cded2-ffa2-4fc3-9762-f7d584439177", + "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:04a853d4-9168-48be-add0-b753730e7205", + "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f1906745-14f8-4ad5-879a-3a0b9a7fb8f7", + "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:6303b0f5-a2b7-42b6-bf82-4375539f3c2c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6303b0f5-a2b7-42b6-bf82-4375539f3c2c", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "548787", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "8877", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-915490754161166703869769", + "value" : "NO-343421984914134407537068", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:6303b0f5-a2b7-42b6-bf82-4375539f3c2c", + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a83e094e-d624-41a1-9d4f-5ce815d36141", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e437151e-57a1-42b5-911c-6a0a4fd1d506", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:288c15d2-830e-4501-93c9-ec2389f6159a", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d657e92b-31ac-4198-b49a-1b5b89ac067a", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5bf9db4b-a700-4937-9cbf-de04ec91289e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7bf2c1ac-ccc5-4b39-845f-8fc15f37e4c9", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:582a4814-1b4f-4ab7-97f8-3583e6428b04", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:69197eeb-b681-400b-a67b-446ff52968e1", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2cdc3633-9278-46f1-a1b4-6db81ddff90c", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1c2d1acb-79c5-450b-b0e7-eb0b51da379e", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4e462559-e767-4cac-aa51-7c3e6dbbcdee", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -36685,7 +56056,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-915490754161166703869769", + "batteryIDDMCCode" : "NO-343421984914134407537068", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -36696,32 +56067,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6303b0f5-a2b7-42b6-bf82-4375539f3c2c", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2022-09-29", + "version" : 1.6, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6201, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 16 + } + }, + "commercial" : { + "placedOnMarket" : "2022-05-06", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-343421984914134407537068", + "key" : "PartInstanceID" + } ], + "gtin" : " 23331813", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "931203007" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Compliance", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2023-10-07", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 7.2157 ] + }, + "id" : "PB7707" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Others" + } ], + "critical" : [ "Lithium" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 111 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AYRE", + "manufacturer" : { + "facilityId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-03-02", + "currentStateOfHealthTimestamp" : "2017-09-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-17", + "currentStateOfHealthTimestamp" : "2024-02-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -36730,28 +56306,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:32b1171c-6c66-45fa-b074-a71c4b2366e2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:32b1171c-6c66-45fa-b074-a71c4b2366e2", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "159823", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 9 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "6698", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -36759,31 +56382,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-508587232811128646000890", + "value" : "NO-266414324653556185736448", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:32b1171c-6c66-45fa-b074-a71c4b2366e2", + "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ab50cdb0-c239-4648-b9ed-a7dd42e72220", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -36792,7 +56440,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -37017,7 +56683,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-508587232811128646000890", + "batteryIDDMCCode" : "NO-266414324653556185736448", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -37028,32 +56694,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:32b1171c-6c66-45fa-b074-a71c4b2366e2", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-03-02", + "currentStateOfHealthTimestamp" : "2020-08-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-08", + "currentStateOfHealthTimestamp" : "2024-02-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -37062,28 +56754,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6233ac18-fef7-4e7e-866c-6e26025764d4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6233ac18-fef7-4e7e-866c-6e26025764d4", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "262542", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "6942", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -37091,31 +56830,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-192867840333773010728666", + "value" : "NO-439531001401998592561978", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:6233ac18-fef7-4e7e-866c-6e26025764d4", + "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3ec0a5de-e362-4181-b11c-717f7855192f", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -37124,7 +56888,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -37349,7 +57131,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-192867840333773010728666", + "batteryIDDMCCode" : "NO-439531001401998592561978", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -37360,32 +57142,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6233ac18-fef7-4e7e-866c-6e26025764d4", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-12", + "currentStateOfHealthTimestamp" : "2021-10-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-01", + "currentStateOfHealthTimestamp" : "2024-02-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -37394,28 +57202,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:327be093-7285-4097-8464-d703bd8c6978", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:327be093-7285-4097-8464-d703bd8c6978", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "986688", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "4675", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -37423,31 +57278,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-875848459902428056100228", + "value" : "NO-021808497008475276207658", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:327be093-7285-4097-8464-d703bd8c6978", + "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b74504dc-5f15-4cea-ba28-80babdefd216", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -37456,7 +57336,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -37681,7 +57579,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-875848459902428056100228", + "batteryIDDMCCode" : "NO-021808497008475276207658", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -37692,32 +57590,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:327be093-7285-4097-8464-d703bd8c6978", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-10-22", + "currentStateOfHealthTimestamp" : "2017-07-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-13", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -37726,28 +57650,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c467a5f2-0b81-4cd2-a13d-5a61617edf65", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c467a5f2-0b81-4cd2-a13d-5a61617edf65", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "761723", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "2393", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -37755,31 +57726,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-500966801861573643607332", + "value" : "NO-883135781243388996380832", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:c467a5f2-0b81-4cd2-a13d-5a61617edf65", + "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:155dfe14-4d27-41f2-a181-6a275eefdc8e", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -37788,7 +57784,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -38013,7 +58027,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-500966801861573643607332", + "batteryIDDMCCode" : "NO-883135781243388996380832", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -38024,32 +58038,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c467a5f2-0b81-4cd2-a13d-5a61617edf65", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-04-03", + "currentStateOfHealthTimestamp" : "2021-01-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-07", + "currentStateOfHealthTimestamp" : "2024-02-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -38058,28 +58098,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b52b3b21-f046-4e9b-a551-421098a2a67a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b52b3b21-f046-4e9b-a551-421098a2a67a", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "517072", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "3439", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -38087,31 +58174,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-735250865139584315557320", + "value" : "NO-990836037358215841702922", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:b52b3b21-f046-4e9b-a551-421098a2a67a", + "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:51e5ce2d-51ee-4e46-b4df-f0aad1250711", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -38120,7 +58232,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -38345,7 +58475,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-735250865139584315557320", + "batteryIDDMCCode" : "NO-990836037358215841702922", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -38356,32 +58486,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b52b3b21-f046-4e9b-a551-421098a2a67a", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-02-13", + "currentStateOfHealthTimestamp" : "2018-07-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-07", + "currentStateOfHealthTimestamp" : "2024-02-18", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -38390,28 +58546,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5297a8c2-01d6-49b2-961d-fde03658ec39", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5297a8c2-01d6-49b2-961d-fde03658ec39", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "860371", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1793", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -38419,31 +58622,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-594414885167616543827588", + "value" : "NO-960387226518041014742915", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:5297a8c2-01d6-49b2-961d-fde03658ec39", + "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7ada1973-6ede-41cd-9d7e-ee7210cb57ec", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -38452,7 +58680,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -38677,7 +58923,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-594414885167616543827588", + "batteryIDDMCCode" : "NO-960387226518041014742915", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -38688,32 +58934,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5297a8c2-01d6-49b2-961d-fde03658ec39", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-11-03", + "currentStateOfHealthTimestamp" : "2019-08-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-24", + "currentStateOfHealthTimestamp" : "2024-03-09", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -38722,28 +58994,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:553cded2-ffa2-4fc3-9762-f7d584439177", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:553cded2-ffa2-4fc3-9762-f7d584439177", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "402009", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "7973", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -38751,31 +59070,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-789627586490801883619079", + "value" : "NO-749514118885207807523684", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:553cded2-ffa2-4fc3-9762-f7d584439177", + "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:33d31c53-a97b-4949-96d6-27abaa572486", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -38784,7 +59128,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -39009,7 +59371,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-789627586490801883619079", + "batteryIDDMCCode" : "NO-749514118885207807523684", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -39020,32 +59382,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:553cded2-ffa2-4fc3-9762-f7d584439177", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-08-31", + "currentStateOfHealthTimestamp" : "2015-06-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-21", + "currentStateOfHealthTimestamp" : "2024-02-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -39054,28 +59442,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:04a853d4-9168-48be-add0-b753730e7205", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:04a853d4-9168-48be-add0-b753730e7205", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "337414", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "4420", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -39083,31 +59518,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-039033179459464538087864", + "value" : "NO-291715621913372083066844", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:04a853d4-9168-48be-add0-b753730e7205", + "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b773e17f-884d-48d5-a2be-32d638aa8e60", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -39116,7 +59576,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -39341,7 +59819,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-039033179459464538087864", + "batteryIDDMCCode" : "NO-291715621913372083066844", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -39352,32 +59830,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:04a853d4-9168-48be-add0-b753730e7205", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-04-10", + "currentStateOfHealthTimestamp" : "2021-12-07", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-11", + "currentStateOfHealthTimestamp" : "2024-03-06", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -39386,28 +59890,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f1906745-14f8-4ad5-879a-3a0b9a7fb8f7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f1906745-14f8-4ad5-879a-3a0b9a7fb8f7", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "77438", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "2276", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -39415,31 +59966,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-132943938936318925626126", + "value" : "NO-443271381888074190712314", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:f1906745-14f8-4ad5-879a-3a0b9a7fb8f7", + "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a568cea8-143f-42a7-b9f9-f8f3ec146082", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -39448,7 +60024,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -39673,7 +60267,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-132943938936318925626126", + "batteryIDDMCCode" : "NO-443271381888074190712314", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -39684,32 +60278,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f1906745-14f8-4ad5-879a-3a0b9a7fb8f7", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-08-23", + "currentStateOfHealthTimestamp" : "2023-05-31", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-28", + "currentStateOfHealthTimestamp" : "2024-02-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -39718,60 +60338,159 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:ddda262d-c33a-4796-b165-53ba7ca3e4fe", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ddda262d-c33a-4796-b165-53ba7ca3e4fe", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "672157", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "1776", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840837-48", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-933384462607684061222399", + "value" : "NO-603465092925964841944939", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:ddda262d-c33a-4796-b165-53ba7ca3e4fe", + "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7013115d-d229-4f24-9df3-8a0fc2b4f3b4", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -39996,7 +60715,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-933384462607684061222399", + "batteryIDDMCCode" : "NO-603465092925964841944939", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -40007,10 +60726,36 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 37, + "recycledContent" : 84, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -40020,7 +60765,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 48, + "recycledContent" : 73, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -40030,7 +60775,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 42, + "recycledContent" : 31, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -40040,361 +60785,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-933384462607684061222399", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ddda262d-c33a-4796-b165-53ba7ca3e4fe", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b3276e3e-5af9-4571-a209-ba8b3a527ec5", + "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b510c2a6-d014-4435-9eb1-31d8d64d5047", + "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bffa53f0-b12f-4045-9047-696fb7d89d76", + "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a0cff531-4f3a-4686-a8cf-39bcf048960a", + "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:502d2a84-a106-4d42-bedc-cf051143ac60", + "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:68b0401b-adb1-4e57-8c02-4b81dd319870", + "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:213edea4-ce0f-4f88-9180-5397b981a895", + "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e64950b3-b99b-4694-8683-365279f93ad3", + "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0753216b-39ed-4071-9f75-2c3863291ccd", + "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:477e51c8-91ff-464b-8023-d053735410d2", + "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:b3276e3e-5af9-4571-a209-ba8b3a527ec5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3276e3e-5af9-4571-a209-ba8b3a527ec5", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "154592", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "9294", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-339517051267816404813275", + "value" : "NO-823560382376748897634491", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:b3276e3e-5af9-4571-a209-ba8b3a527ec5", + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2614af24-9bde-4eac-919a-7660638c5f53", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7f9d145b-4a6f-4d79-92ba-c12994b6b483", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f9610458-0225-44b5-abb5-fec8cf099797", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:07c96796-3b53-4e56-a4ac-f59fa133800b", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b8456285-e981-4ad9-973f-512f01487ae6", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f2827a52-4654-4db0-a19c-2854b1fb411b", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6d0c58c2-76d9-4bbd-9cfb-26b6720651ad", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4acc9a3d-610a-4273-af81-9cd7aec2afb2", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3b3a70bf-5ec7-46c0-992c-4334d756cb7a", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7af5cee7-61dc-423c-a29c-3bfa738b362d", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a5c78f5c-4008-4014-9c12-f152326ba9a4", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -40619,7 +61456,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-339517051267816404813275", + "batteryIDDMCCode" : "NO-823560382376748897634491", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -40630,32 +61467,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3276e3e-5af9-4571-a209-ba8b3a527ec5", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2021-12-07", + "version" : 2.3, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.63989999999998, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 17 + } + }, + "commercial" : { + "placedOnMarket" : "2021-06-26", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-823560382376748897634491", + "key" : "PartInstanceID" + } ], + "gtin" : " 38615101", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "341259269" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Compliance", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2023-05-30", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 5.6098 ] + }, + "id" : "LN1496" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Others" + } ], + "critical" : [ "Graphite" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 117 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B3NX", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-10-10", + "currentStateOfHealthTimestamp" : "2017-03-13", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-31", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -40664,28 +61706,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b510c2a6-d014-4435-9eb1-31d8d64d5047", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b510c2a6-d014-4435-9eb1-31d8d64d5047", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "455628", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "6314", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -40693,31 +61782,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-942410737253107802888940", + "value" : "NO-848885292462912694102251", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:b510c2a6-d014-4435-9eb1-31d8d64d5047", + "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:dbe5222e-e498-402f-98f2-4e45c66099a7", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -40726,7 +61840,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -40951,7 +62083,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-942410737253107802888940", + "batteryIDDMCCode" : "NO-848885292462912694102251", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -40962,32 +62094,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b510c2a6-d014-4435-9eb1-31d8d64d5047", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-12-23", + "currentStateOfHealthTimestamp" : "2021-08-15", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-18", + "currentStateOfHealthTimestamp" : "2024-03-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -40996,28 +62154,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:bffa53f0-b12f-4045-9047-696fb7d89d76", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bffa53f0-b12f-4045-9047-696fb7d89d76", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "335379", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "6384", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -41025,31 +62230,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-145842463039631494605512", + "value" : "NO-689813702415564518493945", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:bffa53f0-b12f-4045-9047-696fb7d89d76", + "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e2b5fe18-114d-4335-8886-1342d152a6bc", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -41058,7 +62288,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -41283,7 +62531,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-145842463039631494605512", + "batteryIDDMCCode" : "NO-689813702415564518493945", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -41294,32 +62542,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bffa53f0-b12f-4045-9047-696fb7d89d76", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-05-12", + "currentStateOfHealthTimestamp" : "2024-01-31", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-30", + "currentStateOfHealthTimestamp" : "2024-02-28", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -41328,28 +62602,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a0cff531-4f3a-4686-a8cf-39bcf048960a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a0cff531-4f3a-4686-a8cf-39bcf048960a", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "199331", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "7004", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -41357,31 +62678,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-156300002450588734516877", + "value" : "NO-987660837352774924045931", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a0cff531-4f3a-4686-a8cf-39bcf048960a", + "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:42569d31-653c-4edf-bcf0-9377da2501b6", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -41390,7 +62736,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -41615,7 +62979,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-156300002450588734516877", + "batteryIDDMCCode" : "NO-987660837352774924045931", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -41626,32 +62990,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a0cff531-4f3a-4686-a8cf-39bcf048960a", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-11-28", + "currentStateOfHealthTimestamp" : "2023-05-07", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-07", + "currentStateOfHealthTimestamp" : "2024-02-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -41660,28 +63050,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:502d2a84-a106-4d42-bedc-cf051143ac60", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:502d2a84-a106-4d42-bedc-cf051143ac60", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "498568", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "3727", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -41689,31 +63126,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-446283855420759431529785", + "value" : "NO-654353296014446496284506", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:502d2a84-a106-4d42-bedc-cf051143ac60", + "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9e3d6e45-10ce-4803-adfa-178aa2f28de5", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -41722,7 +63184,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -41947,7 +63427,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-446283855420759431529785", + "batteryIDDMCCode" : "NO-654353296014446496284506", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -41958,32 +63438,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:502d2a84-a106-4d42-bedc-cf051143ac60", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-03-23", + "currentStateOfHealthTimestamp" : "2018-09-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-10", + "currentStateOfHealthTimestamp" : "2024-02-22", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -41992,28 +63498,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:68b0401b-adb1-4e57-8c02-4b81dd319870", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:68b0401b-adb1-4e57-8c02-4b81dd319870", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "326790", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "1442", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -42021,31 +63574,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-134684761629404193092788", + "value" : "NO-588767590807225389768378", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:68b0401b-adb1-4e57-8c02-4b81dd319870", + "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5c73472b-c9b9-4767-aa9c-3997a1fd74a8", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -42054,7 +63632,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -42279,7 +63875,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-134684761629404193092788", + "batteryIDDMCCode" : "NO-588767590807225389768378", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -42290,32 +63886,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:68b0401b-adb1-4e57-8c02-4b81dd319870", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-07-10", + "currentStateOfHealthTimestamp" : "2017-10-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-11", + "currentStateOfHealthTimestamp" : "2024-03-01", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -42324,28 +63946,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:213edea4-ce0f-4f88-9180-5397b981a895", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:213edea4-ce0f-4f88-9180-5397b981a895", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "515853", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "1725", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -42353,31 +64022,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-109000822347620876506508", + "value" : "NO-931418197632196969612711", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:213edea4-ce0f-4f88-9180-5397b981a895", + "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f77404be-d106-4185-8bf2-5ea493235bdc", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -42386,7 +64080,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -42611,7 +64323,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-109000822347620876506508", + "batteryIDDMCCode" : "NO-931418197632196969612711", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -42622,32 +64334,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:213edea4-ce0f-4f88-9180-5397b981a895", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-05-20", + "currentStateOfHealthTimestamp" : "2016-07-22", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-19", + "currentStateOfHealthTimestamp" : "2024-02-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -42656,28 +64394,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e64950b3-b99b-4694-8683-365279f93ad3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e64950b3-b99b-4694-8683-365279f93ad3", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "829859", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "4783", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -42685,31 +64470,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-196536163716735662406598", + "value" : "NO-111951972013972210420848", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:e64950b3-b99b-4694-8683-365279f93ad3", + "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c776232e-d7a9-4ddd-a18a-0978ef29b492", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -42718,7 +64528,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -42943,7 +64771,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-196536163716735662406598", + "batteryIDDMCCode" : "NO-111951972013972210420848", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -42954,32 +64782,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e64950b3-b99b-4694-8683-365279f93ad3", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-08-04", + "currentStateOfHealthTimestamp" : "2017-08-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-02", + "currentStateOfHealthTimestamp" : "2024-02-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -42988,28 +64842,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0753216b-39ed-4071-9f75-2c3863291ccd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0753216b-39ed-4071-9f75-2c3863291ccd", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "271591", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "5926", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -43017,31 +64918,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-703224597099467128681637", + "value" : "NO-932110494217527413805411", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:0753216b-39ed-4071-9f75-2c3863291ccd", + "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b20d0071-e9f9-4da6-bbf6-e21cf24b62ec", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -43050,7 +64976,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -43275,7 +65219,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-703224597099467128681637", + "batteryIDDMCCode" : "NO-932110494217527413805411", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -43286,32 +65230,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0753216b-39ed-4071-9f75-2c3863291ccd", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-08-19", + "currentStateOfHealthTimestamp" : "2019-03-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-30", + "currentStateOfHealthTimestamp" : "2024-03-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -43320,28 +65290,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:477e51c8-91ff-464b-8023-d053735410d2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:477e51c8-91ff-464b-8023-d053735410d2", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "927759", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "4113", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -43349,31 +65366,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-835306841866640183669553", + "value" : "NO-925671333895560015573644", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:477e51c8-91ff-464b-8023-d053735410d2", + "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f89b88d3-8060-417b-9b23-3c98acde0d62", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -43382,7 +65424,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -43607,7 +65667,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-835306841866640183669553", + "batteryIDDMCCode" : "NO-925671333895560015573644", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -43618,32 +65678,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:477e51c8-91ff-464b-8023-d053735410d2", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-11-15", + "currentStateOfHealthTimestamp" : "2018-06-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-20", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -43652,60 +65738,159 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:aa04aa4a-7d1b-4f9f-980f-b727dcaedf74", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:aa04aa4a-7d1b-4f9f-980f-b727dcaedf74", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "212566", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 9 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "9522", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840837-48", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-989427921464604909080703", + "value" : "NO-942663371448425761623285", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:aa04aa4a-7d1b-4f9f-980f-b727dcaedf74", + "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:bcb55f75-602d-45d9-bac5-5e64e9ab53b9", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -43930,7 +66115,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-989427921464604909080703", + "batteryIDDMCCode" : "NO-942663371448425761623285", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -43941,10 +66126,36 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 47, + "recycledContent" : 7, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -43954,7 +66165,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 35, + "recycledContent" : 9, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -43964,7 +66175,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 73, + "recycledContent" : 40, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -43974,361 +66185,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-989427921464604909080703", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:aa04aa4a-7d1b-4f9f-980f-b727dcaedf74", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:247a39b0-5797-40ce-872b-8a84ca0814f4", + "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7e5fa6b8-739d-4285-8013-12b8dda30c4b", + "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1ed53fcc-b23b-41c4-9bdb-8c4c35d2d137", + "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0b504402-f9ee-43f7-8964-208bbad12215", + "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fd63467b-0bc0-4165-a849-465d180d7bf8", + "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:412a1b13-56fd-45b3-b093-3997b5b7782f", + "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:cae6011e-74fb-44a4-8a3d-e9fbfb02063f", + "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:700a88b5-3af9-49f7-b3ef-e13e13d564e6", + "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a3d28358-66c3-4c0f-b942-2cb26be60509", + "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f994cbba-986c-48d4-88f6-34c941ffc2dc", + "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:247a39b0-5797-40ce-872b-8a84ca0814f4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:247a39b0-5797-40ce-872b-8a84ca0814f4", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "587599", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "6007", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-839600567623887629088034", + "value" : "NO-862307068158749400741457", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:247a39b0-5797-40ce-872b-8a84ca0814f4", + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4a76b061-0f80-4993-ab51-25bb01d5977c", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3b9d35a7-c5db-42d9-9011-9e4b982e3256", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:04c4b249-70bc-4735-971b-b5328358945b", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c84f4059-e4e7-4169-8ea8-6761d2a44eca", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a7ac16d1-3042-4a8b-92e9-4ee1b3030bde", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ddfabcb8-3785-428a-a60c-9de984a047a2", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4a2da884-346d-46e4-82ff-a5564f04c565", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7740e6f1-8e26-4c8a-a9c0-54f60a2be416", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5cab1261-57a8-45a0-968d-6d5ce98a92e1", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:af70076a-abbf-4a31-aab4-b2baae0eafc4", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f0a32eee-602e-4209-9c83-adaea312eaae", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -44553,7 +66856,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-839600567623887629088034", + "batteryIDDMCCode" : "NO-862307068158749400741457", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -44564,32 +66867,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:247a39b0-5797-40ce-872b-8a84ca0814f4", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2022-08-20", + "version" : 1.8, + "status" : "Draft" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.62269999999998, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 15 + } + }, + "commercial" : { + "placedOnMarket" : "2021-04-24", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-862307068158749400741457", + "key" : "PartInstanceID" + } ], + "gtin" : " 88090453", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "687454395" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2023-03-28", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 5.6145 ] + }, + "id" : "XF3944" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Polyamid" + } ], + "critical" : [ "Nickel" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 110 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AYRE", + "manufacturer" : { + "facilityId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-04-30", + "currentStateOfHealthTimestamp" : "2018-01-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-06", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -44598,28 +67106,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7e5fa6b8-739d-4285-8013-12b8dda30c4b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7e5fa6b8-739d-4285-8013-12b8dda30c4b", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "931410", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "6703", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -44627,31 +67182,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-818044310622625134907780", + "value" : "NO-139880244941669856794800", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:7e5fa6b8-739d-4285-8013-12b8dda30c4b", + "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a3780205-b64b-4442-9b6f-83a6cccb1e66", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -44660,7 +67240,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -44885,7 +67483,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-818044310622625134907780", + "batteryIDDMCCode" : "NO-139880244941669856794800", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -44896,32 +67494,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7e5fa6b8-739d-4285-8013-12b8dda30c4b", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-08-21", + "currentStateOfHealthTimestamp" : "2017-09-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-30", + "currentStateOfHealthTimestamp" : "2024-02-27", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -44930,28 +67554,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1ed53fcc-b23b-41c4-9bdb-8c4c35d2d137", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ed53fcc-b23b-41c4-9bdb-8c4c35d2d137", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "195467", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "4200", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -44959,31 +67630,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-426060384738861448200149", + "value" : "NO-050830021987571935432965", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:1ed53fcc-b23b-41c4-9bdb-8c4c35d2d137", + "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:09bccfbb-c39e-4e36-8c13-a69e73c41c00", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -44992,7 +67688,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -45217,7 +67931,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-426060384738861448200149", + "batteryIDDMCCode" : "NO-050830021987571935432965", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -45228,32 +67942,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ed53fcc-b23b-41c4-9bdb-8c4c35d2d137", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-01-20", + "currentStateOfHealthTimestamp" : "2022-03-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-08", + "currentStateOfHealthTimestamp" : "2024-02-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -45262,28 +68002,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0b504402-f9ee-43f7-8964-208bbad12215", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0b504402-f9ee-43f7-8964-208bbad12215", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "611307", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 25 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "9031", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -45291,31 +68078,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-297191766949598506996561", + "value" : "NO-857703197842350741949159", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:0b504402-f9ee-43f7-8964-208bbad12215", + "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8ee2ae10-e976-4f94-943b-c794f8e4b1e4", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -45324,7 +68136,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -45549,7 +68379,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-297191766949598506996561", + "batteryIDDMCCode" : "NO-857703197842350741949159", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -45560,32 +68390,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0b504402-f9ee-43f7-8964-208bbad12215", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-04-13", + "currentStateOfHealthTimestamp" : "2022-09-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-14", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -45594,28 +68450,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:fd63467b-0bc0-4165-a849-465d180d7bf8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fd63467b-0bc0-4165-a849-465d180d7bf8", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "105185", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "3318", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -45623,31 +68526,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-194523781662656356890406", + "value" : "NO-022011077349717419717141", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:fd63467b-0bc0-4165-a849-465d180d7bf8", + "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e1b0c08e-0fb9-44b0-8bb9-17ecc22d4dba", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -45656,7 +68584,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -45881,7 +68827,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-194523781662656356890406", + "batteryIDDMCCode" : "NO-022011077349717419717141", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -45892,32 +68838,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fd63467b-0bc0-4165-a849-465d180d7bf8", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-05-13", + "currentStateOfHealthTimestamp" : "2018-01-15", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-15", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -45926,28 +68898,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:412a1b13-56fd-45b3-b093-3997b5b7782f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:412a1b13-56fd-45b3-b093-3997b5b7782f", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "485598", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "7376", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -45955,31 +68974,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-172020903187560799410766", + "value" : "NO-426790987058017367255084", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:412a1b13-56fd-45b3-b093-3997b5b7782f", + "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:04bf1c2f-9a48-44cd-abcd-74543250218a", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -45988,7 +69032,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -46213,7 +69275,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-172020903187560799410766", + "batteryIDDMCCode" : "NO-426790987058017367255084", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -46224,32 +69286,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:412a1b13-56fd-45b3-b093-3997b5b7782f", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-03-18", + "currentStateOfHealthTimestamp" : "2020-08-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-29", + "currentStateOfHealthTimestamp" : "2024-03-06", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -46258,28 +69346,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:cae6011e-74fb-44a4-8a3d-e9fbfb02063f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cae6011e-74fb-44a4-8a3d-e9fbfb02063f", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "467368", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "8105", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -46287,31 +69422,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-481997540510023293084709", + "value" : "NO-966360536351633404870551", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:cae6011e-74fb-44a4-8a3d-e9fbfb02063f", + "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6f67d687-35f6-4e64-ac6d-4d51dacf8d6f", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -46320,7 +69480,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -46545,7 +69723,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-481997540510023293084709", + "batteryIDDMCCode" : "NO-966360536351633404870551", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -46556,32 +69734,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cae6011e-74fb-44a4-8a3d-e9fbfb02063f", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-12-15", + "currentStateOfHealthTimestamp" : "2019-04-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-17", + "currentStateOfHealthTimestamp" : "2024-02-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -46590,28 +69794,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:700a88b5-3af9-49f7-b3ef-e13e13d564e6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:700a88b5-3af9-49f7-b3ef-e13e13d564e6", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "142539", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "3209", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -46619,31 +69870,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-136899390786912780450614", + "value" : "NO-586885151204747027102290", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:700a88b5-3af9-49f7-b3ef-e13e13d564e6", + "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:40ac00e5-8213-46d8-8049-b832ff178200", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -46652,7 +69928,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -46877,7 +70171,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-136899390786912780450614", + "batteryIDDMCCode" : "NO-586885151204747027102290", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -46888,32 +70182,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:700a88b5-3af9-49f7-b3ef-e13e13d564e6", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-02-11", + "currentStateOfHealthTimestamp" : "2015-02-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-17", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -46922,28 +70242,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a3d28358-66c3-4c0f-b942-2cb26be60509", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a3d28358-66c3-4c0f-b942-2cb26be60509", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "398156", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "6328", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -46951,31 +70318,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-852779098018145739904106", + "value" : "NO-660077714588397744604444", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a3d28358-66c3-4c0f-b942-2cb26be60509", + "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1bde9b18-9592-4a96-93b3-1d6294658fa4", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -46984,7 +70376,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -47209,7 +70619,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-852779098018145739904106", + "batteryIDDMCCode" : "NO-660077714588397744604444", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -47220,32 +70630,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a3d28358-66c3-4c0f-b942-2cb26be60509", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-06-13", + "currentStateOfHealthTimestamp" : "2021-04-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-04", + "currentStateOfHealthTimestamp" : "2024-02-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -47254,28 +70690,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f994cbba-986c-48d4-88f6-34c941ffc2dc", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f994cbba-986c-48d4-88f6-34c941ffc2dc", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "536838", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "5148", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -47283,31 +70766,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-777101703952344015797253", + "value" : "NO-902959824536006525317752", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:f994cbba-986c-48d4-88f6-34c941ffc2dc", + "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8eac0c20-d881-47c6-80c5-3dd2ca7f97a3", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -47316,7 +70824,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -47541,7 +71067,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-777101703952344015797253", + "batteryIDDMCCode" : "NO-902959824536006525317752", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -47552,32 +71078,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f994cbba-986c-48d4-88f6-34c941ffc2dc", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-11-01", + "currentStateOfHealthTimestamp" : "2014-07-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-14", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -47586,60 +71138,159 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:cebc2508-3296-42ac-ab56-9beca2d13c47", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cebc2508-3296-42ac-ab56-9beca2d13c47", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "683565", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "8402", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840837-48", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-822334401694197147656808", + "value" : "NO-977849350799966985051994", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:cebc2508-3296-42ac-ab56-9beca2d13c47", + "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:cbc584b5-8687-438f-a32c-2d27fc03a213", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -47864,7 +71515,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-822334401694197147656808", + "batteryIDDMCCode" : "NO-977849350799966985051994", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -47875,10 +71526,36 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 51, + "recycledContent" : 26, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -47888,7 +71565,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 77, + "recycledContent" : 78, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -47898,7 +71575,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 83, + "recycledContent" : 39, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -47908,361 +71585,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-822334401694197147656808", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cebc2508-3296-42ac-ab56-9beca2d13c47", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:856d931d-5407-4470-91ac-60e5f13bc779", + "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d2389d10-783e-481d-91fa-e9a678245d0b", + "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b85d022d-aa95-4787-ac5c-3c050ee48a69", + "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:68dfdd8e-1059-4bc7-9b5e-9e0bf6699f41", + "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:565fc5b5-7716-48e7-a3b2-24622e70bb07", + "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4e2e3876-049c-49e6-a11a-c9505c02a45d", + "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:88168d39-3ec8-4772-b97f-1bbbe0f851a4", + "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9ae74842-13d1-4979-a100-597a774c1815", + "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2f92da88-f114-4504-8d6d-04a1b88da6f0", + "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:affcc4f9-c1ee-41eb-988e-4d2a59a14487", + "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:856d931d-5407-4470-91ac-60e5f13bc779", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:856d931d-5407-4470-91ac-60e5f13bc779", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "308977", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "3787", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-654002673889030373381356", + "value" : "NO-418669803382355934007191", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:856d931d-5407-4470-91ac-60e5f13bc779", + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8f9d74f6-42cc-4253-b698-01dcc192d5dc", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:657b2156-d29e-46db-a506-6feff7c37a48", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7168150d-8825-4819-a3ae-c1b5847afcb8", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c25ad346-f75e-492e-9e1c-4b4a6529103c", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:30d0e580-92d9-475b-b95c-4ef39944baf5", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:014a1ac3-9393-431f-b89d-384f6af10260", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b57e3223-9b54-4aed-862e-5e3829a55093", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:da10cc8e-e01c-4495-92fb-ea4334dd1864", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:76cbf0a1-9566-43ea-afde-b12320cbda2c", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:57dc589d-ba38-45aa-923e-861aa4c170ea", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d23e65b6-8a18-4458-9444-86012054c456", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -48487,7 +72256,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-654002673889030373381356", + "batteryIDDMCCode" : "NO-418669803382355934007191", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -48498,32 +72267,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:856d931d-5407-4470-91ac-60e5f13bc779", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2024-01-11", + "version" : 3, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6889, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 17 + } + }, + "commercial" : { + "placedOnMarket" : "2023-10-28", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-418669803382355934007191", + "key" : "PartInstanceID" + } ], + "gtin" : " 61229344", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "168346322" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "SubstanceOfConcern", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-02-28", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 5.7531 ] + }, + "id" : "KQ1035" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Steel" + } ], + "critical" : [ "Lithium" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 117 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AYRE", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-05-16", + "currentStateOfHealthTimestamp" : "2015-01-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-02", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -48532,28 +72506,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d2389d10-783e-481d-91fa-e9a678245d0b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d2389d10-783e-481d-91fa-e9a678245d0b", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "282047", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "2749", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -48561,31 +72582,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-707408752597279470188562", + "value" : "NO-556829998319273469934509", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:d2389d10-783e-481d-91fa-e9a678245d0b", + "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fca0bcc8-295b-4f5a-8146-a4130ba512cc", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -48594,7 +72640,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -48819,7 +72883,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-707408752597279470188562", + "batteryIDDMCCode" : "NO-556829998319273469934509", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -48830,32 +72894,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d2389d10-783e-481d-91fa-e9a678245d0b", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-12-19", + "currentStateOfHealthTimestamp" : "2022-02-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-18", + "currentStateOfHealthTimestamp" : "2024-02-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -48864,28 +72954,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b85d022d-aa95-4787-ac5c-3c050ee48a69", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b85d022d-aa95-4787-ac5c-3c050ee48a69", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "561423", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "4012", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -48893,31 +73030,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-231495390804442477068143", + "value" : "NO-114219272230854934064186", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:b85d022d-aa95-4787-ac5c-3c050ee48a69", + "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d9072edf-577e-4fd8-8b22-7a30a29aa02d", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -48926,7 +73088,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -49151,7 +73331,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-231495390804442477068143", + "batteryIDDMCCode" : "NO-114219272230854934064186", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -49162,32 +73342,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b85d022d-aa95-4787-ac5c-3c050ee48a69", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-08-01", + "currentStateOfHealthTimestamp" : "2014-09-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-15", + "currentStateOfHealthTimestamp" : "2024-02-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -49196,28 +73402,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:68dfdd8e-1059-4bc7-9b5e-9e0bf6699f41", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:68dfdd8e-1059-4bc7-9b5e-9e0bf6699f41", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "917481", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "4194", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -49225,31 +73478,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-225117361677951779232556", + "value" : "NO-829824339044400302167457", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:68dfdd8e-1059-4bc7-9b5e-9e0bf6699f41", + "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ddc48568-0607-49f6-87fe-17745b723e46", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -49258,7 +73536,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -49483,7 +73779,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-225117361677951779232556", + "batteryIDDMCCode" : "NO-829824339044400302167457", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -49494,32 +73790,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:68dfdd8e-1059-4bc7-9b5e-9e0bf6699f41", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-02-07", + "currentStateOfHealthTimestamp" : "2022-09-03", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-02", + "currentStateOfHealthTimestamp" : "2024-02-18", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -49528,28 +73850,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:565fc5b5-7716-48e7-a3b2-24622e70bb07", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:565fc5b5-7716-48e7-a3b2-24622e70bb07", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "856374", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "8335", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -49557,31 +73926,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-265529151617334933834901", + "value" : "NO-224566669636331090545181", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:565fc5b5-7716-48e7-a3b2-24622e70bb07", + "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9646bf2c-c3da-4c69-92d2-5b3cb4079e46", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -49590,7 +73984,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -49815,7 +74227,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-265529151617334933834901", + "batteryIDDMCCode" : "NO-224566669636331090545181", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -49826,32 +74238,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:565fc5b5-7716-48e7-a3b2-24622e70bb07", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-09-11", + "currentStateOfHealthTimestamp" : "2019-12-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-24", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -49860,28 +74298,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4e2e3876-049c-49e6-a11a-c9505c02a45d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4e2e3876-049c-49e6-a11a-c9505c02a45d", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "750121", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9030", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -49889,31 +74374,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-155378907840268476820296", + "value" : "NO-635280441324370168837677", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:4e2e3876-049c-49e6-a11a-c9505c02a45d", + "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e412ac7f-f0cc-4365-ad1a-2651b5c2d952", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -49922,7 +74432,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -50147,7 +74675,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-155378907840268476820296", + "batteryIDDMCCode" : "NO-635280441324370168837677", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -50158,32 +74686,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4e2e3876-049c-49e6-a11a-c9505c02a45d", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-09-16", + "currentStateOfHealthTimestamp" : "2014-07-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-22", + "currentStateOfHealthTimestamp" : "2024-02-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -50192,28 +74746,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:88168d39-3ec8-4772-b97f-1bbbe0f851a4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:88168d39-3ec8-4772-b97f-1bbbe0f851a4", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "902500", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "7217", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -50221,31 +74822,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-403267247639556339351314", + "value" : "NO-500407972173549682027830", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:88168d39-3ec8-4772-b97f-1bbbe0f851a4", + "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ad34598e-a3f7-4659-aa55-c62c3e20a87b", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -50254,7 +74880,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -50479,7 +75123,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-403267247639556339351314", + "batteryIDDMCCode" : "NO-500407972173549682027830", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -50490,32 +75134,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:88168d39-3ec8-4772-b97f-1bbbe0f851a4", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-09-03", + "currentStateOfHealthTimestamp" : "2017-07-05", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-27", + "currentStateOfHealthTimestamp" : "2024-03-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -50524,28 +75194,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9ae74842-13d1-4979-a100-597a774c1815", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9ae74842-13d1-4979-a100-597a774c1815", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "492086", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7931", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -50553,31 +75270,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-526349468968046885850913", + "value" : "NO-219146627260821677812233", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:9ae74842-13d1-4979-a100-597a774c1815", + "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:534fcb00-8980-4314-bb70-b1e224016483", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -50586,7 +75328,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -50811,7 +75571,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-526349468968046885850913", + "batteryIDDMCCode" : "NO-219146627260821677812233", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -50822,32 +75582,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9ae74842-13d1-4979-a100-597a774c1815", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-09-08", + "currentStateOfHealthTimestamp" : "2019-01-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-12", + "currentStateOfHealthTimestamp" : "2024-02-22", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -50856,28 +75642,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2f92da88-f114-4504-8d6d-04a1b88da6f0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2f92da88-f114-4504-8d6d-04a1b88da6f0", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "794841", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "5710", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -50885,31 +75718,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-532437417113152142575676", + "value" : "NO-074461602369719943828031", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:2f92da88-f114-4504-8d6d-04a1b88da6f0", + "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7d5782cc-0955-4cb9-aaab-b2735ce1809b", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -50918,7 +75776,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -51143,7 +76019,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-532437417113152142575676", + "batteryIDDMCCode" : "NO-074461602369719943828031", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -51154,32 +76030,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2f92da88-f114-4504-8d6d-04a1b88da6f0", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-03-03", + "currentStateOfHealthTimestamp" : "2020-09-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-31", + "currentStateOfHealthTimestamp" : "2024-02-27", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -51188,28 +76090,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:affcc4f9-c1ee-41eb-988e-4d2a59a14487", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:affcc4f9-c1ee-41eb-988e-4d2a59a14487", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "684632", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "9713", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -51217,31 +76166,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-178025918430330253855508", + "value" : "NO-718137720701312328534032", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:affcc4f9-c1ee-41eb-988e-4d2a59a14487", + "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b1f2683b-f5f2-4d4f-a757-0c4cea3d350b", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -51250,7 +76224,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -51475,7 +76467,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-178025918430330253855508", + "batteryIDDMCCode" : "NO-718137720701312328534032", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -51486,32 +76478,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:affcc4f9-c1ee-41eb-988e-4d2a59a14487", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-03-06", + "currentStateOfHealthTimestamp" : "2017-05-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-07", + "currentStateOfHealthTimestamp" : "2024-02-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -51520,60 +76538,159 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8f2ceb18-7883-400e-a886-9e7d39dd16a0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8f2ceb18-7883-400e-a886-9e7d39dd16a0", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "31858", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 24 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "5339", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840837-48", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-629892973678320117205097", + "value" : "NO-153173100258750590484715", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:8f2ceb18-7883-400e-a886-9e7d39dd16a0", + "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7cac3e70-9a92-4138-a50b-e08fa3be2eef", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -51798,7 +76915,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-629892973678320117205097", + "batteryIDDMCCode" : "NO-153173100258750590484715", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -51809,10 +76926,36 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 60, + "recycledContent" : 53, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -51822,7 +76965,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 13, + "recycledContent" : 31, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -51832,7 +76975,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 14, + "recycledContent" : 75, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -51842,361 +76985,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-629892973678320117205097", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8f2ceb18-7883-400e-a886-9e7d39dd16a0", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e1665fb3-f1f4-410b-96b3-baba3a558dea", + "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4f30c3fe-0620-453e-90d5-aa5cffdd9bd1", + "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:898f2c98-781b-4ce5-8327-b7b5c5bd1ab6", + "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9346e57d-df58-4940-8f27-7044caef5847", + "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:aeb56db4-9e84-47f2-9e5a-899c0d681fe4", + "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a13fefa5-62d2-4904-9173-675fb18c6bc1", + "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fba671f9-405d-4f00-927a-f68355bcd044", + "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3e8d2f43-963a-4d51-8779-016d6e4eb169", + "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e7a7747a-1bee-4789-92d3-365153749aba", + "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:48cdb59c-f755-412d-9775-cabbfb9f43e0", + "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:e1665fb3-f1f4-410b-96b3-baba3a558dea", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e1665fb3-f1f4-410b-96b3-baba3a558dea", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "279805", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "4141", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-431361043549679365184788", + "value" : "NO-549149826651196308165721", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:e1665fb3-f1f4-410b-96b3-baba3a558dea", + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:bde78f8e-7bae-44d1-a8ad-e94592f40f13", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:50b49d6b-e2d8-46b3-b8f5-203133b3f5a0", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:aba49add-604c-4354-a12f-64b8e972ce02", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2ab78787-f369-4f4f-839b-70e1a2515627", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ae08a15f-1330-4f4c-8f7e-19256096c4e9", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:149fc796-a851-42aa-b898-c61cf8b58579", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:59ac42a0-6506-441e-88db-e908f1e9270e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5ad3660d-e783-4fc9-ab41-cf61fc66f8db", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4019d567-603a-43b2-8e0a-12a6e635dec6", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1bd6da48-788f-4635-9419-05014eaceb3e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b39500d9-6dcf-4f2f-8f9c-dbeb46f302e2", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -52421,7 +77656,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-431361043549679365184788", + "batteryIDDMCCode" : "NO-549149826651196308165721", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -52432,32 +77667,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e1665fb3-f1f4-410b-96b3-baba3a558dea", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-11-05", + "version" : 2, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6212, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 18 + } + }, + "commercial" : { + "placedOnMarket" : "2022-11-26", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-549149826651196308165721", + "key" : "PartInstanceID" + } ], + "gtin" : " 18258694", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "575343610" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "SubstanceOfConcern", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-02-13", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 2.9056 ] + }, + "id" : "UF2327" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Lithium" + } ], + "critical" : [ "Nickel" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 117 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AYRE", + "manufacturer" : { + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-08-22", + "currentStateOfHealthTimestamp" : "2020-06-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-22", + "currentStateOfHealthTimestamp" : "2024-02-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -52466,28 +77906,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4f30c3fe-0620-453e-90d5-aa5cffdd9bd1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4f30c3fe-0620-453e-90d5-aa5cffdd9bd1", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "630279", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "7579", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -52495,31 +77982,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-703614083093867616206279", + "value" : "NO-941922963203176985468580", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:4f30c3fe-0620-453e-90d5-aa5cffdd9bd1", + "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1f245450-fa1e-4ef1-9911-390182fae324", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -52528,7 +78040,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -52753,7 +78283,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-703614083093867616206279", + "batteryIDDMCCode" : "NO-941922963203176985468580", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -52764,32 +78294,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4f30c3fe-0620-453e-90d5-aa5cffdd9bd1", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-05-24", + "currentStateOfHealthTimestamp" : "2017-03-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-02", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -52798,28 +78354,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:898f2c98-781b-4ce5-8327-b7b5c5bd1ab6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:898f2c98-781b-4ce5-8327-b7b5c5bd1ab6", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "239091", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6123", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -52827,31 +78430,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-178959691986548633271726", + "value" : "NO-432542315695843094217907", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:898f2c98-781b-4ce5-8327-b7b5c5bd1ab6", + "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5b77f3c0-fb29-4de7-90da-060d1e14d497", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -52860,7 +78488,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -53085,7 +78731,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-178959691986548633271726", + "batteryIDDMCCode" : "NO-432542315695843094217907", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -53096,32 +78742,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:898f2c98-781b-4ce5-8327-b7b5c5bd1ab6", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-02-07", + "currentStateOfHealthTimestamp" : "2022-05-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-01", + "currentStateOfHealthTimestamp" : "2024-02-16", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -53130,28 +78802,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9346e57d-df58-4940-8f27-7044caef5847", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9346e57d-df58-4940-8f27-7044caef5847", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "309340", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "1163", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -53159,31 +78878,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-334693313886517260997778", + "value" : "NO-965432778069734733416709", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:9346e57d-df58-4940-8f27-7044caef5847", + "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6f01a0f2-04ce-4fa4-87b9-5c59a462de25", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -53192,7 +78936,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -53417,7 +79179,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-334693313886517260997778", + "batteryIDDMCCode" : "NO-965432778069734733416709", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -53428,32 +79190,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9346e57d-df58-4940-8f27-7044caef5847", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-01-19", + "currentStateOfHealthTimestamp" : "2021-07-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-10", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -53462,28 +79250,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:aeb56db4-9e84-47f2-9e5a-899c0d681fe4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:aeb56db4-9e84-47f2-9e5a-899c0d681fe4", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "903326", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "9581", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -53491,31 +79326,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-136283597877957237552119", + "value" : "NO-239430732070176538458534", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:aeb56db4-9e84-47f2-9e5a-899c0d681fe4", + "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:012cbcd1-af40-4774-b7b1-cb112fc42b68", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -53524,7 +79384,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -53749,7 +79627,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-136283597877957237552119", + "batteryIDDMCCode" : "NO-239430732070176538458534", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -53760,32 +79638,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:aeb56db4-9e84-47f2-9e5a-899c0d681fe4", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-06-13", + "currentStateOfHealthTimestamp" : "2022-05-22", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-30", + "currentStateOfHealthTimestamp" : "2024-02-27", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -53794,28 +79698,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a13fefa5-62d2-4904-9173-675fb18c6bc1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a13fefa5-62d2-4904-9173-675fb18c6bc1", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "103858", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "7652", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -53823,31 +79774,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-977674175886398224958091", + "value" : "NO-381277313491898129024746", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a13fefa5-62d2-4904-9173-675fb18c6bc1", + "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f76503c1-2011-4825-b2e2-7beedb111d1d", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -53856,7 +79832,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -54081,7 +80075,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-977674175886398224958091", + "batteryIDDMCCode" : "NO-381277313491898129024746", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -54092,32 +80086,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a13fefa5-62d2-4904-9173-675fb18c6bc1", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-01-28", + "currentStateOfHealthTimestamp" : "2019-09-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-30", + "currentStateOfHealthTimestamp" : "2024-02-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -54126,28 +80146,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:fba671f9-405d-4f00-927a-f68355bcd044", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fba671f9-405d-4f00-927a-f68355bcd044", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "931970", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1171", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -54155,31 +80222,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-527264762743993295355983", + "value" : "NO-150599582357067252883840", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:fba671f9-405d-4f00-927a-f68355bcd044", + "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8efbabcd-c53f-41ba-b38c-f80dc93291d0", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -54188,7 +80280,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -54413,7 +80523,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-527264762743993295355983", + "batteryIDDMCCode" : "NO-150599582357067252883840", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -54424,32 +80534,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fba671f9-405d-4f00-927a-f68355bcd044", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-12-02", + "currentStateOfHealthTimestamp" : "2016-12-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-18", + "currentStateOfHealthTimestamp" : "2024-02-28", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -54458,28 +80594,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3e8d2f43-963a-4d51-8779-016d6e4eb169", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3e8d2f43-963a-4d51-8779-016d6e4eb169", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "247381", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "6840", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -54487,31 +80670,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-136758358236499758294945", + "value" : "NO-529552938923438940370052", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:3e8d2f43-963a-4d51-8779-016d6e4eb169", + "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0163195c-fc9e-4722-b8b0-baac6dd058b4", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -54520,7 +80728,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -54745,7 +80971,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-136758358236499758294945", + "batteryIDDMCCode" : "NO-529552938923438940370052", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -54756,32 +80982,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3e8d2f43-963a-4d51-8779-016d6e4eb169", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-01-09", + "currentStateOfHealthTimestamp" : "2014-11-07", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-17", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -54790,28 +81042,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e7a7747a-1bee-4789-92d3-365153749aba", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e7a7747a-1bee-4789-92d3-365153749aba", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "765032", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2145", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -54819,31 +81118,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-261000419787118364716820", + "value" : "NO-810124424804228541312316", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:e7a7747a-1bee-4789-92d3-365153749aba", + "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e038a318-af91-4d18-be3b-90b14e82ecaa", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -54852,7 +81176,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -55077,7 +81419,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-261000419787118364716820", + "batteryIDDMCCode" : "NO-810124424804228541312316", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -55088,32 +81430,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e7a7747a-1bee-4789-92d3-365153749aba", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-02-17", + "currentStateOfHealthTimestamp" : "2016-07-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-16", + "currentStateOfHealthTimestamp" : "2024-03-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -55122,28 +81490,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:48cdb59c-f755-412d-9775-cabbfb9f43e0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:48cdb59c-f755-412d-9775-cabbfb9f43e0", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "520147", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "1370", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -55151,31 +81566,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-962380605707322488892279", + "value" : "NO-573921318124335337929678", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:48cdb59c-f755-412d-9775-cabbfb9f43e0", + "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b3135e0c-4622-4a64-a82c-ee3b3b387895", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -55184,7 +81624,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -55409,7 +81867,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-962380605707322488892279", + "batteryIDDMCCode" : "NO-573921318124335337929678", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -55420,32 +81878,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:48cdb59c-f755-412d-9775-cabbfb9f43e0", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-02-17", + "currentStateOfHealthTimestamp" : "2016-03-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-25", + "currentStateOfHealthTimestamp" : "2024-03-01", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -55454,74 +81938,424 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Pick-up", - "catenaXId" : "urn:uuid:229c0d0d-e737-453e-b3fe-e48dc6397c41", - "engine" : { - "size" : 2998, - "power" : 143 - }, - "emptyWeight" : 1.73, - "fuel" : "Elektro", - "vehicleModel" : "Vehicle Fully Electric", - "productionDateGMT" : "2010-01-01", - "equipmentVariants" : [ { - "code" : "S388C", - "description" : "security plus", - "group" : "special equipment" - }, { - "code" : "S378B", - "description" : "integrated child seats", - "group" : "special equipment" - }, { - "code" : "B298B", - "description" : "keyless entry", - "group" : "special equipment" - }, { - "code" : "S2AVB", - "description" : "adaptive drive", - "group" : "special equipment" - } ], - "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", - "mileage" : [ { - "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2019-12-02", - "mileageDistance" : 120000 - } ] } ], - "catenaXId" : "urn:uuid:229c0d0d-e737-453e-b3fe-e48dc6397c41", + "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "52618", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 9 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "7122", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "RX-15", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "OMARSFPIHFCKQSITN", + "value" : "NO-447262560402359900551000", "key" : "partInstanceId" - }, { - "value" : "OMARSFPIHFCKQSITN", - "key" : "van" } ], "manufacturingInformation" : { - "date" : "2018-09-02T22:17:11.000Z", - "country" : "DEU" + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:229c0d0d-e737-453e-b3fe-e48dc6397c41", + "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", "partTypeInformation" : { - "manufacturerPartId" : "RX-15", - "classification" : "product", - "nameAtManufacturer" : "Vehicle Fully Electric" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9ceff318-73ca-4f37-8189-a8c954e06075", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" } } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-447262560402359900551000", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Iron", - "recycledContent" : 1, + "recycledContent" : 32, "materialClass" : "1.1", "quantity" : { "unit" : "unit:kilogram", @@ -55531,7 +82365,7 @@ "materialAbbreviation" : "IR334" }, { "materialName" : "Polyethylen", - "recycledContent" : 58, + "recycledContent" : 60, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -55541,7 +82375,7 @@ "materialAbbreviation" : "PE221" }, { "materialName" : "Polyamid6", - "recycledContent" : 87, + "recycledContent" : 9, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -55551,7 +82385,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Aluminium", - "recycledContent" : 7, + "recycledContent" : 59, "materialClass" : "2.1", "quantity" : { "unit" : "unit:kilogram", @@ -55561,7 +82395,7 @@ "materialAbbreviation" : "ALU331" }, { "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", - "recycledContent" : 45, + "recycledContent" : 60, "materialClass" : "0.7", "quantity" : { "unit" : "unit:kilogram", @@ -55571,7 +82405,7 @@ "materialAbbreviation" : "W123" }, { "materialName" : "Glue", - "recycledContent" : 76, + "recycledContent" : 17, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -55581,7 +82415,7 @@ "materialAbbreviation" : "GL338" }, { "materialName" : "Carbon Steel", - "recycledContent" : 29, + "recycledContent" : 60, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -55591,7 +82425,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Cooper", - "recycledContent" : 26, + "recycledContent" : 42, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -55601,7 +82435,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Rubber", - "recycledContent" : 40, + "recycledContent" : 58, "materialClass" : "5.3", "quantity" : { "unit" : "unit:kilogram", @@ -55611,7 +82445,7 @@ "materialAbbreviation" : "R22" }, { "materialName" : "Textiles", - "recycledContent" : 61, + "recycledContent" : 71, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:kilogram", @@ -55621,359 +82455,496 @@ "materialAbbreviation" : "TEX1" } ] } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:229c0d0d-e737-453e-b3fe-e48dc6397c41", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "childItems" : [ { - "catenaXId" : "urn:uuid:e391752e-0f13-478f-a26a-4a7097a993af", + "catenaXId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c2ab6075-b199-4f11-88cd-3943dd387684", + "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a37e4df7-90ef-4160-80a7-1c8e6d3cd87f", + "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1df2d32b-524c-458e-a42c-acf430856bac", + "catenaXId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f7457983-fbf0-438d-b29b-47e07484cba6", + "catenaXId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:655e96f5-d6ac-43ec-8311-5eabf33576be", + "catenaXId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fe17f834-b581-43bc-b9e0-a3e89215a732", + "catenaXId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:226d0dbe-171f-4e14-9050-6bf8819dd874", + "catenaXId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:df624532-4e7d-4301-abe8-a8045a3a0bcd", + "catenaXId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c78c75b1-a94f-44cb-bdf5-2e04a3980e5e", + "catenaXId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:19d92b7d-79f2-418f-a621-32f6bfce6ceb", + "catenaXId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:38311ad2-078c-4fea-a5c0-436153a6d336", + "catenaXId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5753de77-084d-4a65-ab80-7b7d6cf1e9e2", + "catenaXId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e7b823ca-15b7-4a1a-bd0e-d900c20ce40b", + "catenaXId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:93c42003-78e3-4195-ba97-ff15a6651b9a", + "catenaXId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:06b9f994-689d-41e4-9ba1-0fc847ca6e19", + "catenaXId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fb9f6774-3218-40e9-885c-33c07ae0e1ca", + "catenaXId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f0d870c2-ddba-467b-b237-0f03859bf2d9", + "catenaXId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2e0fb761-03f4-45a1-837f-e1c4dd9e7954", + "catenaXId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4b557302-faac-4fd1-a266-4777015ae2cc", + "catenaXId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:86fb0be8-88f7-4050-a425-3802c625665f", + "catenaXId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c051149d-166d-4e02-b16d-dd4ab904d20c", + "catenaXId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:dbcdf260-21c8-4c81-b019-3c367ec7becb", + "catenaXId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:486a84af-2b71-4e23-913d-02ac224b1f81", + "catenaXId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:298cb634-5c68-4a9f-9ae6-01532d50a611", + "catenaXId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7e716839-723b-47c8-9980-da9efebe5bcf", + "catenaXId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5bea622c-13b1-4051-af79-849893aeae0b", + "catenaXId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:18e18039-500c-4d39-a55f-de5963f51c18", + "catenaXId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:cb5208c8-92a3-4680-a6f9-e80c98c28637", + "catenaXId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:620fed95-ca37-4e74-80e4-7733303d6d29", + "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8e69de38-918a-4924-b2ad-7663045c417d", + "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B5MJ", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4620726c-2391-4bc3-9750-4ed0f67d0336", + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ], + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "PC-93", + "key" : "manufacturerPartId" + }, { + "value" : "OMBHDGEVKKOXOFVFX", + "key" : "partInstanceId" + }, { + "value" : "OMBHDGEVKKOXOFVFX", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2014-10-02T00:27:59.000Z", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "partTypeInformation" : { + "manufacturerPartId" : "PC-93", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Vehicle Fully Electric" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Cabrio-Limousine", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "engine" : { + "size" : 2998, + "power" : 143 + }, + "emptyWeight" : 1.73, + "fuel" : "Elektro", + "vehicleModel" : "Vehicle Fully Electric", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "S388C", + "description" : "security plus", + "group" : "special equipment" + }, { + "code" : "C247R", + "description" : "trailer hitch", + "group" : "special equipment" + }, { + "code" : "A01CR", + "description" : "remote engine start", + "group" : "special equipment" + }, { + "code" : "A458D", + "description" : "parking assistance ", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2021-04-13", + "mileageDistance" : 120000 + } ] } ] }, { - "catenaXId" : "urn:uuid:e391752e-0f13-478f-a26a-4a7097a993af", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e391752e-0f13-478f-a26a-4a7097a993af", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "catenaXId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "344681", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "1988", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "73849201-61", "key" : "manufacturerPartId" }, { - "value" : "NO-544957441875705587698041", + "value" : "NO-264035732197252482880258", "key" : "partInstanceId" }, { "value" : "Company 10", @@ -55984,25 +82955,55 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:e391752e-0f13-478f-a26a-4a7097a993af", + "catenaXId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", "partTypeInformation" : { "manufacturerPartId" : "73849201-61", "customerPartId" : "73849201-61", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Catalysator", "nameAtCustomer" : "Catalysator" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", + "partTypeInformation" : { + "ownerPartId" : "73849201-61", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Catalysator", + "partClassification" : [ { + "value" : "Catalysator", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Catalysator" } - } ] - }, { - "catenaXId" : "urn:uuid:c2ab6075-b199-4f11-88cd-3943dd387684", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c2ab6075-b199-4f11-88cd-3943dd387684", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -56013,9 +83014,90 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "childItems" : [ { + "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000000BJTL", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "79252", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "5951", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003CSGV", "key" : "manufacturerId" @@ -56023,7 +83105,7 @@ "value" : "22782277-50", "key" : "manufacturerPartId" }, { - "value" : "NO-340374022225790376346243", + "value" : "NO-532542427279625373288172", "key" : "partInstanceId" }, { "value" : "Company 3", @@ -56034,39 +83116,74 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:c2ab6075-b199-4f11-88cd-3943dd387684", + "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", "partTypeInformation" : { "manufacturerPartId" : "22782277-50", "customerPartId" : "22782277-50", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door f-l", "nameAtCustomer" : "Door front-left" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c2ab6075-b199-4f11-88cd-3943dd387684", + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { - "catenaXId" : "urn:uuid:aa0af484-b675-4e28-9137-f6d567b04f67", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "item" : [ { + "itemClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:db164948-a214-4fe4-ae5e-ad5ee68056ca", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] - } ] - }, { - "catenaXId" : "urn:uuid:aa0af484-b675-4e28-9137-f6d567b04f67", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:aa0af484-b675-4e28-9137-f6d567b04f67", + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "partTypeInformation" : { + "ownerPartId" : "22782277-50", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Door front-left", + "partClassification" : [ { + "value" : "Door front-left", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "nameAtOwner" : "Door front-left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003CSGV", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -56077,9 +83194,102 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { + "localIdentifiers" : [ { + "value" : "91462591PXI", + "key" : "jisNumber" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000000BJTL", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-3434-A", + "customerPartId" : "PRT-12345", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "side element A" + } } ], + "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "802618", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "4789", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000000BJTL", "key" : "manufacturerId" @@ -56087,48 +83297,60 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-371751822190591137827111", + "value" : "NO-772983460135049623346095", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:aa0af484-b675-4e28-9137-f6d567b04f67", + "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door Key", "nameAtCustomer" : "Door Key" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "25353990THX", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "manufacturerId" : "BPNL00000000BJTL", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:aa0af484-b675-4e28-9137-f6d567b04f67", + "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" + "ownerPartId" : "95657762-59", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Door Key", + "partClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000000BJTL:PartFamily" + } ], + "nameAtOwner" : "Door Key" } - } ] - }, { - "catenaXId" : "urn:uuid:a37e4df7-90ef-4160-80a7-1c8e6d3cd87f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a37e4df7-90ef-4160-80a7-1c8e6d3cd87f", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000000BJTL", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -56139,9 +83361,90 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "childItems" : [ { + "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000000BJTL", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "758669", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "5730", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003CSGV", "key" : "manufacturerId" @@ -56149,7 +83452,7 @@ "value" : "95657362-64", "key" : "manufacturerPartId" }, { - "value" : "NO-838640016179180161357871", + "value" : "NO-941648218258646714580566", "key" : "partInstanceId" }, { "value" : "Company 4", @@ -56160,39 +83463,74 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a37e4df7-90ef-4160-80a7-1c8e6d3cd87f", + "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", "partTypeInformation" : { "manufacturerPartId" : "33740332-54", "customerPartId" : "33740332-54", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door f-r", "nameAtCustomer" : "Door front-right" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a37e4df7-90ef-4160-80a7-1c8e6d3cd87f", + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { - "catenaXId" : "urn:uuid:09974f8c-63fd-482f-909c-2a09573a2625", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "item" : [ { + "itemClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:556e3251-11bb-443b-8e5e-96ba0138aa01", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] - } ] - }, { - "catenaXId" : "urn:uuid:09974f8c-63fd-482f-909c-2a09573a2625", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:09974f8c-63fd-482f-909c-2a09573a2625", + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "partTypeInformation" : { + "ownerPartId" : "33740332-54", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Door front-right", + "partClassification" : [ { + "value" : "Door front-right", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "nameAtOwner" : "Door front-right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003CSGV", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -56203,9 +83541,102 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { + "localIdentifiers" : [ { + "value" : "11345547UVN", + "key" : "jisNumber" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000000BJTL", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-3434-A", + "customerPartId" : "PRT-12345", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "side element A" + } } ], + "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "363689", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "6385", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000000BJTL", "key" : "manufacturerId" @@ -56213,48 +83644,60 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-538940591450597935161572", + "value" : "NO-890180938494699631851225", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:09974f8c-63fd-482f-909c-2a09573a2625", + "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door Key", "nameAtCustomer" : "Door Key" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "14182382WQU", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "manufacturerId" : "BPNL00000000BJTL", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:09974f8c-63fd-482f-909c-2a09573a2625", + "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" + "ownerPartId" : "95657762-59", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Door Key", + "partClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000000BJTL:PartFamily" + } ], + "nameAtOwner" : "Door Key" } - } ] - }, { - "catenaXId" : "urn:uuid:1df2d32b-524c-458e-a42c-acf430856bac", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1df2d32b-524c-458e-a42c-acf430856bac", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", "customers" : [ { - "businessPartner" : false, + "businessPartner" : "BPNL00000000BJTL", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -56265,40 +83708,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "613938", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "5578", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "15635759-16", "key" : "manufacturerPartId" }, { - "value" : "NO-231799111344648791466151", + "value" : "NO-425402122056753521010122", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:1df2d32b-524c-458e-a42c-acf430856bac", + "catenaXId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", "partTypeInformation" : { "manufacturerPartId" : "15635759-16", "customerPartId" : "15635759-16", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door r-l", "nameAtCustomer" : "Door rear-left" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", + "partTypeInformation" : { + "ownerPartId" : "15635759-16", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Door rear-left", + "partClassification" : [ { + "value" : "Door rear-left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Door rear-left" } - } ] - }, { - "catenaXId" : "urn:uuid:f7457983-fbf0-438d-b29b-47e07484cba6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f7457983-fbf0-438d-b29b-47e07484cba6", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -56309,17 +83849,84 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "121122", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "3855", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "28673126-98", "key" : "manufacturerPartId" }, { - "value" : "NO-037844415706737413882039", + "value" : "NO-188548980582138038135464", "key" : "partInstanceId" }, { "value" : "Company 5", @@ -56330,25 +83937,55 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:f7457983-fbf0-438d-b29b-47e07484cba6", + "catenaXId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", "partTypeInformation" : { "manufacturerPartId" : "28673126-98", "customerPartId" : "28673126-98", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door r-r", "nameAtCustomer" : "Door rear-right" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", + "partTypeInformation" : { + "ownerPartId" : "28673126-98", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Door rear-right", + "partClassification" : [ { + "value" : "Door rear-right", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Door rear-right" } - } ] - }, { - "catenaXId" : "urn:uuid:655e96f5-d6ac-43ec-8311-5eabf33576be", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:655e96f5-d6ac-43ec-8311-5eabf33576be", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -56359,17 +83996,84 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "772378", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "5832", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "94421589-82", "key" : "manufacturerPartId" }, { - "value" : "NO-267843532455450851607754", + "value" : "NO-219651831423071932337739", "key" : "partInstanceId" }, { "value" : "Company 6", @@ -56380,25 +84084,55 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:655e96f5-d6ac-43ec-8311-5eabf33576be", + "catenaXId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", "partTypeInformation" : { "manufacturerPartId" : "94421589-82", "customerPartId" : "94421589-82", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Engine hood", "nameAtCustomer" : "Engine hood" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", + "partTypeInformation" : { + "ownerPartId" : "94421589-82", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Engine hood", + "partClassification" : [ { + "value" : "Engine hood", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Engine hood" } - } ] - }, { - "catenaXId" : "urn:uuid:fe17f834-b581-43bc-b9e0-a3e89215a732", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fe17f834-b581-43bc-b9e0-a3e89215a732", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -56409,40 +84143,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "713183", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "3403", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "85023955-75", "key" : "manufacturerPartId" }, { - "value" : "NO-398265544847089263757125", + "value" : "NO-229499865779802771168337", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:fe17f834-b581-43bc-b9e0-a3e89215a732", + "catenaXId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", "partTypeInformation" : { "manufacturerPartId" : "85023955-75", "customerPartId" : "85023955-75", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Tailgate", "nameAtCustomer" : "Tailgate" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", + "partTypeInformation" : { + "ownerPartId" : "85023955-75", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Tailgate", + "partClassification" : [ { + "value" : "Tailgate", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Tailgate" } - } ] - }, { - "catenaXId" : "urn:uuid:226d0dbe-171f-4e14-9050-6bf8819dd874", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:226d0dbe-171f-4e14-9050-6bf8819dd874", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -56453,40 +84284,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "946351", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "7284", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "13769860-47", "key" : "manufacturerPartId" }, { - "value" : "NO-284637880324439911937772", + "value" : "NO-970517596585278331348560", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:226d0dbe-171f-4e14-9050-6bf8819dd874", + "catenaXId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", "partTypeInformation" : { "manufacturerPartId" : "13769860-47", "customerPartId" : "13769860-47", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Fender left", "nameAtCustomer" : "Fender right" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", + "partTypeInformation" : { + "ownerPartId" : "13769860-47", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Fender right", + "partClassification" : [ { + "value" : "Fender right", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Fender right" } - } ] - }, { - "catenaXId" : "urn:uuid:df624532-4e7d-4301-abe8-a8045a3a0bcd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:df624532-4e7d-4301-abe8-a8045a3a0bcd", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -56497,40 +84425,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "432537", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "1405", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "36643162-35", "key" : "manufacturerPartId" }, { - "value" : "NO-241769195634529268631872", + "value" : "NO-045227129302826121356634", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:df624532-4e7d-4301-abe8-a8045a3a0bcd", + "catenaXId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", "partTypeInformation" : { "manufacturerPartId" : "36643162-35", "customerPartId" : "36643162-35", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Fender right", "nameAtCustomer" : "Fender right" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", + "partTypeInformation" : { + "ownerPartId" : "36643162-35", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Fender right", + "partClassification" : [ { + "value" : "Fender right", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Fender right" } - } ] - }, { - "catenaXId" : "urn:uuid:c78c75b1-a94f-44cb-bdf5-2e04a3980e5e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c78c75b1-a94f-44cb-bdf5-2e04a3980e5e", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -56541,40 +84566,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "528720", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 24 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "3354", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "54165444-59", "key" : "manufacturerPartId" }, { - "value" : "NO-092294634922638243996974", + "value" : "NO-100036177199295659893765", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:c78c75b1-a94f-44cb-bdf5-2e04a3980e5e", + "catenaXId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", "partTypeInformation" : { "manufacturerPartId" : "54165444-59", "customerPartId" : "54165444-59", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Bumper front", "nameAtCustomer" : "Bumper front" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", + "partTypeInformation" : { + "ownerPartId" : "54165444-59", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Bumper front", + "partClassification" : [ { + "value" : "Bumper front", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Bumper front" } - } ] - }, { - "catenaXId" : "urn:uuid:19d92b7d-79f2-418f-a621-32f6bfce6ceb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:19d92b7d-79f2-418f-a621-32f6bfce6ceb", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -56585,40 +84707,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "377714", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "3324", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "22768257-25", "key" : "manufacturerPartId" }, { - "value" : "NO-978285222279684972949446", + "value" : "NO-551163600198049838485842", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:19d92b7d-79f2-418f-a621-32f6bfce6ceb", + "catenaXId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", "partTypeInformation" : { "manufacturerPartId" : "22768257-25", "customerPartId" : "22768257-25", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Bumper rear", "nameAtCustomer" : "Bumper rear" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", + "partTypeInformation" : { + "ownerPartId" : "22768257-25", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Bumper rear", + "partClassification" : [ { + "value" : "Bumper rear", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Bumper rear" } - } ] - }, { - "catenaXId" : "urn:uuid:38311ad2-078c-4fea-a5c0-436153a6d336", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:38311ad2-078c-4fea-a5c0-436153a6d336", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -56629,40 +84848,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "393939", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "7998", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "65529521-37", "key" : "manufacturerPartId" }, { - "value" : "NO-524588948928928771884606", + "value" : "NO-335731119820995518008771", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:38311ad2-078c-4fea-a5c0-436153a6d336", + "catenaXId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", "partTypeInformation" : { "manufacturerPartId" : "65529521-37", "customerPartId" : "65529521-37", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Exterior mirror left", "nameAtCustomer" : "Exterior mirror left" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", + "partTypeInformation" : { + "ownerPartId" : "65529521-37", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Exterior mirror left", + "partClassification" : [ { + "value" : "Exterior mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Exterior mirror left" } - } ] - }, { - "catenaXId" : "urn:uuid:5753de77-084d-4a65-ab80-7b7d6cf1e9e2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5753de77-084d-4a65-ab80-7b7d6cf1e9e2", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -56673,40 +84989,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "230290", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "5285", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "58471477-24", "key" : "manufacturerPartId" }, { - "value" : "NO-652558670923242668121754", + "value" : "NO-079239086229295448541139", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:5753de77-084d-4a65-ab80-7b7d6cf1e9e2", + "catenaXId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", "partTypeInformation" : { "manufacturerPartId" : "58471477-24", "customerPartId" : "58471477-24", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Exterior mirror right", "nameAtCustomer" : "Exterior mirror right" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", + "partTypeInformation" : { + "ownerPartId" : "58471477-24", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Exterior mirror right", + "partClassification" : [ { + "value" : "Exterior mirror right", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Exterior mirror right" } - } ] - }, { - "catenaXId" : "urn:uuid:e7b823ca-15b7-4a1a-bd0e-d900c20ce40b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e7b823ca-15b7-4a1a-bd0e-d900c20ce40b", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -56717,40 +85130,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "892455", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "8069", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "09002013-68", "key" : "manufacturerPartId" }, { - "value" : "NO-169866199769261998981659", + "value" : "NO-662892968393446403852433", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:e7b823ca-15b7-4a1a-bd0e-d900c20ce40b", + "catenaXId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", "partTypeInformation" : { "manufacturerPartId" : "09002013-68", "customerPartId" : "09002013-68", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Trailer coupling", "nameAtCustomer" : "Tailer coupling" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", + "partTypeInformation" : { + "ownerPartId" : "09002013-68", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Tailer coupling", + "partClassification" : [ { + "value" : "Tailer coupling", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Tailer coupling" } - } ] - }, { - "catenaXId" : "urn:uuid:93c42003-78e3-4195-ba97-ff15a6651b9a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:93c42003-78e3-4195-ba97-ff15a6651b9a", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -56761,40 +85271,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "379760", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2969", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "43501996-98", "key" : "manufacturerPartId" }, { - "value" : "NO-551154273941790447658900", + "value" : "NO-889772651801296554294291", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:93c42003-78e3-4195-ba97-ff15a6651b9a", + "catenaXId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", "partTypeInformation" : { "manufacturerPartId" : "43501996-98", "customerPartId" : "43501996-98", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Dashboard", "nameAtCustomer" : "Dashboard" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", + "partTypeInformation" : { + "ownerPartId" : "43501996-98", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Dashboard", + "partClassification" : [ { + "value" : "Dashboard", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Dashboard" } - } ] - }, { - "catenaXId" : "urn:uuid:06b9f994-689d-41e4-9ba1-0fc847ca6e19", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:06b9f994-689d-41e4-9ba1-0fc847ca6e19", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -56805,40 +85412,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "895753", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "7750", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "77795937-13", "key" : "manufacturerPartId" }, { - "value" : "NO-084654839918939753922473", + "value" : "NO-540565783816081906926354", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:06b9f994-689d-41e4-9ba1-0fc847ca6e19", + "catenaXId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", "partTypeInformation" : { "manufacturerPartId" : "77795937-13", "customerPartId" : "77795937-13", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Steering wheel", "nameAtCustomer" : "Steering wheel" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", + "partTypeInformation" : { + "ownerPartId" : "77795937-13", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Steering wheel", + "partClassification" : [ { + "value" : "Steering wheel", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Steering wheel" } - } ] - }, { - "catenaXId" : "urn:uuid:fb9f6774-3218-40e9-885c-33c07ae0e1ca", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fb9f6774-3218-40e9-885c-33c07ae0e1ca", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -56849,40 +85553,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "327153", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2779", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "20125432-59", "key" : "manufacturerPartId" }, { - "value" : "NO-982250075766913456372269", + "value" : "NO-279563108780111500871292", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:fb9f6774-3218-40e9-885c-33c07ae0e1ca", + "catenaXId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", "partTypeInformation" : { "manufacturerPartId" : "20125432-59", "customerPartId" : "20125432-59", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Indicator left", "nameAtCustomer" : "Indicator left" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", + "partTypeInformation" : { + "ownerPartId" : "20125432-59", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Indicator left", + "partClassification" : [ { + "value" : "Indicator left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Indicator left" } - } ] - }, { - "catenaXId" : "urn:uuid:f0d870c2-ddba-467b-b237-0f03859bf2d9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f0d870c2-ddba-467b-b237-0f03859bf2d9", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -56893,40 +85694,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "164206", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "1736", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "19073706-76", "key" : "manufacturerPartId" }, { - "value" : "NO-186853847498670617798094", + "value" : "NO-208125027138910912230197", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:f0d870c2-ddba-467b-b237-0f03859bf2d9", + "catenaXId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", "partTypeInformation" : { "manufacturerPartId" : "19073706-76", "customerPartId" : "19073706-76", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Indicator right", "nameAtCustomer" : "Indicator right" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", + "partTypeInformation" : { + "ownerPartId" : "19073706-76", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Indicator right", + "partClassification" : [ { + "value" : "Indicator right", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Indicator right" } - } ] - }, { - "catenaXId" : "urn:uuid:2e0fb761-03f4-45a1-837f-e1c4dd9e7954", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2e0fb761-03f4-45a1-837f-e1c4dd9e7954", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -56937,40 +85835,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "507946", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "1797", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "45415162-57", "key" : "manufacturerPartId" }, { - "value" : "NO-582909617493458375977127", + "value" : "NO-990942273895285348726954", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:2e0fb761-03f4-45a1-837f-e1c4dd9e7954", + "catenaXId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", "partTypeInformation" : { "manufacturerPartId" : "45415162-57", "customerPartId" : "45415162-57", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Led headlight", "nameAtCustomer" : "Led headlight" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", + "partTypeInformation" : { + "ownerPartId" : "45415162-57", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Led headlight", + "partClassification" : [ { + "value" : "Led headlight", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Led headlight" } - } ] - }, { - "catenaXId" : "urn:uuid:4b557302-faac-4fd1-a266-4777015ae2cc", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4b557302-faac-4fd1-a266-4777015ae2cc", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -56981,40 +85976,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "774660", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "8288", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "78141846-87", "key" : "manufacturerPartId" }, { - "value" : "NO-306887650129856758685502", + "value" : "NO-492027182143893536578211", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:4b557302-faac-4fd1-a266-4777015ae2cc", + "catenaXId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", "partTypeInformation" : { "manufacturerPartId" : "78141846-87", "customerPartId" : "78141846-87", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Starter motor", "nameAtCustomer" : "Starter motor" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", + "partTypeInformation" : { + "ownerPartId" : "78141846-87", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Starter motor", + "partClassification" : [ { + "value" : "Starter motor", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Starter motor" } - } ] - }, { - "catenaXId" : "urn:uuid:86fb0be8-88f7-4050-a425-3802c625665f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:86fb0be8-88f7-4050-a425-3802c625665f", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -57025,40 +86117,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "995890", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "7174", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "81324139-23", "key" : "manufacturerPartId" }, { - "value" : "NO-518037938908357471137518", + "value" : "NO-082450001638146989330611", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:86fb0be8-88f7-4050-a425-3802c625665f", + "catenaXId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", "partTypeInformation" : { "manufacturerPartId" : "81324139-23", "customerPartId" : "81324139-23", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Alternator", "nameAtCustomer" : "Alternator" - } - } ] - }, { - "catenaXId" : "urn:uuid:c051149d-166d-4e02-b16d-dd4ab904d20c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c051149d-166d-4e02-b16d-dd4ab904d20c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", + "partTypeInformation" : { + "ownerPartId" : "81324139-23", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Alternator", + "partClassification" : [ { + "value" : "Alternator", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Alternator" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -57069,40 +86258,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "942988", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "4702", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "57929013-09", "key" : "manufacturerPartId" }, { - "value" : "NO-728082541979933556728565", + "value" : "NO-143989149387311917330886", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:c051149d-166d-4e02-b16d-dd4ab904d20c", + "catenaXId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", "partTypeInformation" : { "manufacturerPartId" : "57929013-09", "customerPartId" : "57929013-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "AC compressor", "nameAtCustomer" : "Air conditioning compressor" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", + "partTypeInformation" : { + "ownerPartId" : "57929013-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Air conditioning compressor", + "partClassification" : [ { + "value" : "Air conditioning compressor", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Air conditioning compressor" } - } ] - }, { - "catenaXId" : "urn:uuid:dbcdf260-21c8-4c81-b019-3c367ec7becb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:dbcdf260-21c8-4c81-b019-3c367ec7becb", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -57113,40 +86399,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "65111", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "8682", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "61184040-23", "key" : "manufacturerPartId" }, { - "value" : "NO-692666613010580564699883", + "value" : "NO-316284489461785110855343", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:dbcdf260-21c8-4c81-b019-3c367ec7becb", + "catenaXId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", "partTypeInformation" : { "manufacturerPartId" : "61184040-23", "customerPartId" : "61184040-23", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Taillight rear", "nameAtCustomer" : "Taillight rear" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", + "partTypeInformation" : { + "ownerPartId" : "61184040-23", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Taillight rear", + "partClassification" : [ { + "value" : "Taillight rear", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Taillight rear" } - } ] - }, { - "catenaXId" : "urn:uuid:486a84af-2b71-4e23-913d-02ac224b1f81", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:486a84af-2b71-4e23-913d-02ac224b1f81", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -57157,40 +86540,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "217551", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "7891", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "78744126-74", "key" : "manufacturerPartId" }, { - "value" : "NO-538621863010232651251399", + "value" : "NO-265182792920770739941687", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:486a84af-2b71-4e23-913d-02ac224b1f81", + "catenaXId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", "partTypeInformation" : { "manufacturerPartId" : "78744126-74", "customerPartId" : "78744126-74", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Taillight front", "nameAtCustomer" : "Taillight front" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", + "partTypeInformation" : { + "ownerPartId" : "78744126-74", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Taillight front", + "partClassification" : [ { + "value" : "Taillight front", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Taillight front" } - } ] - }, { - "catenaXId" : "urn:uuid:298cb634-5c68-4a9f-9ae6-01532d50a611", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:298cb634-5c68-4a9f-9ae6-01532d50a611", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -57201,40 +86681,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "36728", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "5908", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "12093297-03", "key" : "manufacturerPartId" }, { - "value" : "NO-032541528333769160982262", + "value" : "NO-321655538588745557898831", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:298cb634-5c68-4a9f-9ae6-01532d50a611", + "catenaXId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", "partTypeInformation" : { "manufacturerPartId" : "12093297-03", "customerPartId" : "12093297-03", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Axle part front", "nameAtCustomer" : "Axle part front" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", + "partTypeInformation" : { + "ownerPartId" : "12093297-03", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Axle part front", + "partClassification" : [ { + "value" : "Axle part front", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Axle part front" } - } ] - }, { - "catenaXId" : "urn:uuid:7e716839-723b-47c8-9980-da9efebe5bcf", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7e716839-723b-47c8-9980-da9efebe5bcf", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -57245,40 +86822,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "318095", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1883", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "88111709-49", "key" : "manufacturerPartId" }, { - "value" : "NO-130625067051552696664100", + "value" : "NO-628587963061640627744540", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:7e716839-723b-47c8-9980-da9efebe5bcf", + "catenaXId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", "partTypeInformation" : { "manufacturerPartId" : "88111709-49", "customerPartId" : "88111709-49", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Axle part rear", "nameAtCustomer" : "Axle part rear" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", + "partTypeInformation" : { + "ownerPartId" : "88111709-49", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Axle part rear", + "partClassification" : [ { + "value" : "Axle part rear", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Axle part rear" } - } ] - }, { - "catenaXId" : "urn:uuid:5bea622c-13b1-4051-af79-849893aeae0b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5bea622c-13b1-4051-af79-849893aeae0b", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -57289,40 +86963,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "121748", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "1250", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "00871379-44", "key" : "manufacturerPartId" }, { - "value" : "NO-886279219658198063524693", + "value" : "NO-650434778386338517411768", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:5bea622c-13b1-4051-af79-849893aeae0b", + "catenaXId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", "partTypeInformation" : { "manufacturerPartId" : "00871379-44", "customerPartId" : "00871379-44", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Chassis", "nameAtCustomer" : "Chassis" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", + "partTypeInformation" : { + "ownerPartId" : "00871379-44", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Chassis", + "partClassification" : [ { + "value" : "Chassis", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Chassis" } - } ] - }, { - "catenaXId" : "urn:uuid:18e18039-500c-4d39-a55f-de5963f51c18", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:18e18039-500c-4d39-a55f-de5963f51c18", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -57333,40 +87104,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "580190", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "7234", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "08901347-87", "key" : "manufacturerPartId" }, { - "value" : "NO-227673289540223098391184", + "value" : "NO-231583231538167331069744", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:18e18039-500c-4d39-a55f-de5963f51c18", + "catenaXId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", "partTypeInformation" : { "manufacturerPartId" : "08901347-87", "customerPartId" : "08901347-87", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Rims", "nameAtCustomer" : "Rims" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", + "partTypeInformation" : { + "ownerPartId" : "08901347-87", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Rims", + "partClassification" : [ { + "value" : "Rims", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Rims" } - } ] - }, { - "catenaXId" : "urn:uuid:cb5208c8-92a3-4680-a6f9-e80c98c28637", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cb5208c8-92a3-4680-a6f9-e80c98c28637", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -57377,40 +87245,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "277682", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 9 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "2775", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "45863316-60", "key" : "manufacturerPartId" }, { - "value" : "NO-802770163250044158777237", + "value" : "NO-291029776531969586623216", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:cb5208c8-92a3-4680-a6f9-e80c98c28637", + "catenaXId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", "partTypeInformation" : { "manufacturerPartId" : "45863316-60", "customerPartId" : "45863316-60", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Tires", "nameAtCustomer" : "Tires" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", + "partTypeInformation" : { + "ownerPartId" : "45863316-60", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Tires", + "partClassification" : [ { + "value" : "Tires", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Tires" } - } ] - }, { - "catenaXId" : "urn:uuid:620fed95-ca37-4e74-80e4-7733303d6d29", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:620fed95-ca37-4e74-80e4-7733303d6d29", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", + "businessPartner" : "BPNL00000003AVTH", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -57421,17 +87386,151 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 74, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 12, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 86, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "childItems" : [ { + "catenaXId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B3NX", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", "bpnl" : "BPNL00000003B2OM", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "740341", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "5354", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003B2OM", "key" : "manufacturerId" }, { - "value" : "1O222E8-43", + "value" : "42555H1-52", "key" : "manufacturerPartId" }, { - "value" : "NO-286401725165561312883634", + "value" : "NO-035290552043863858362908", "key" : "partInstanceId" }, { "value" : "Company 2", @@ -57442,18 +87541,116 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B2OM", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:620fed95-ca37-4e74-80e4-7733303d6d29", + "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", "partTypeInformation" : { - "manufacturerPartId" : "1O222E8-43", - "customerPartId" : "1O222E8-43", - "classification" : "component", + "manufacturerPartId" : "42555H1-52", + "customerPartId" : "42555H1-52", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Transmission", "nameAtCustomer" : "Transmission" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "manufacturerId" : "BPNL00000003B2OM", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:733f72ea-c327-4de4-bf29-c6f597595a85", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c1d012f2-2f4c-4cc5-85a9-78ab809fff87", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9068fa71-141e-43ac-94db-3d7d51550a16", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "partTypeInformation" : { + "ownerPartId" : "42555H1-52", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Transmission", + "partClassification" : [ { + "value" : "Transmission", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "nameAtOwner" : "Transmission" } } ], - "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "urn:samm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { "productSpecificParameters" : { "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], "driveType" : "combustion engine", @@ -57494,10 +87691,10 @@ "documentTitle" : "Title A" } ] }, - "catenaXId" : "urn:uuid:620fed95-ca37-4e74-80e4-7733303d6d29", + "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", "identification" : { "localIdentifiers" : [ { - "value" : "NO-286401725165561312883634", + "value" : "NO-035290552043863858362908", "key" : "PartInstanceID" } ], "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", @@ -57563,109 +87760,12 @@ "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] } } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Carbon Steel", - "recycledContent" : 18, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 72.843 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - }, { - "materialName" : "Oil", - "recycledContent" : 16, - "materialClass" : "9.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 6.9 - }, - "aggregateState" : "liquid", - "materialAbbreviation" : "SAE40" - }, { - "materialName" : "Copper", - "recycledContent" : 45, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:620fed95-ca37-4e74-80e4-7733303d6d29", - "childItems" : [ { - "catenaXId" : "urn:uuid:f00a8916-9739-4534-b49f-81330b4fb41a", - "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7a516af6-62ed-40d4-a3ce-90e158d11f10", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:214525b1-04aa-4e09-b7ee-28eed4243186", - "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:f00a8916-9739-4534-b49f-81330b4fb41a", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:f00a8916-9739-4534-b49f-81330b4fb41a", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f00a8916-9739-4534-b49f-81330b4fb41a", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003B2OM", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -57676,14 +87776,14 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "Engineering Plastics", "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 47, + "recycledContent" : 22, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -57693,7 +87793,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 72, + "recycledContent" : 82, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -57702,15 +87802,128 @@ "aggregateState" : "solid", "materialAbbreviation" : "GF30" } ] - } ] - }, { - "catenaXId" : "urn:uuid:7a516af6-62ed-40d4-a3ce-90e158d11f10", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7a516af6-62ed-40d4-a3ce-90e158d11f10", + } ], + "catenaXId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "171714", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "3822", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "partTypeInformation" : { + "manufacturerPartId" : "FW-24", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", "customers" : [ { "businessPartner" : "BPNL00000003B0Q0", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -57721,74 +87934,188 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "childItems" : [ { + "catenaXId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "353267", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "5162", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "06734Z4-22", + "value" : "06302Y8-24", "key" : "manufacturerPartId" }, { - "value" : "NO-215499334938378594014717", + "value" : "NO-567469628275481484503905", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:7a516af6-62ed-40d4-a3ce-90e158d11f10", + "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", "partTypeInformation" : { - "manufacturerPartId" : "06734Z4-22", - "customerPartId" : "06734Z4-22", - "classification" : "component", + "manufacturerPartId" : "06302Y8-24", + "customerPartId" : "06302Y8-24", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7a516af6-62ed-40d4-a3ce-90e158d11f10", + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { - "catenaXId" : "urn:uuid:8c5e295c-ca48-44e8-88f7-3a7f3979f8eb", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:27e1e609-2c18-46c7-9dac-791ce42fa3b8", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] - } ] - }, { - "catenaXId" : "urn:uuid:8c5e295c-ca48-44e8-88f7-3a7f3979f8eb", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:8c5e295c-ca48-44e8-88f7-3a7f3979f8eb", + "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "NTIER Product" + "ownerPartId" : "06302Y8-24", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Sensor", + "partClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "nameAtOwner" : "Sensor" } } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "customers" : [ { + "businessPartner" : "BPNL00000003B3NX", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "NTIER Product", "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 42, + "recycledContent" : 83, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -57798,7 +88125,7 @@ "materialAbbreviation" : "" }, { "materialName" : "Other", - "recycledContent" : 41, + "recycledContent" : 11, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -57807,34 +88134,128 @@ "aggregateState" : "solid", "materialAbbreviation" : "" } ] - } ] - }, { - "catenaXId" : "urn:uuid:214525b1-04aa-4e09-b7ee-28eed4243186", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { + } ], + "catenaXId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "477848", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "1650", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", + "value" : "BPNL00000003B0Q0", "key" : "batchId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:214525b1-04aa-4e09-b7ee-28eed4243186", + "catenaXId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" + "manufacturerPartId" : "CK-14", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" } } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:214525b1-04aa-4e09-b7ee-28eed4243186", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003B0Q0", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -57845,9 +88266,13 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "childItems" : [ ] } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Glue", "materialClass" : "6.2", @@ -57859,18 +88284,127 @@ "materialAbbreviation" : "GL338" } ] } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:214525b1-04aa-4e09-b7ee-28eed4243186", + "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "680147", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "8455", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] - } ] - }, { - "catenaXId" : "urn:uuid:8e69de38-918a-4924-b2ad-7663045c417d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8e69de38-918a-4924-b2ad-7663045c417d", + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "partTypeInformation" : { + "manufacturerPartId" : "WI-49", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AXS3", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -57881,36 +88415,12 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003B5MJ", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", - "key" : "manufacturerId" - }, { - "value" : "96616K2-93", - "key" : "manufacturerPartId" - }, { - "value" : "NO-955767290299704577521087", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8e69de38-918a-4924-b2ad-7663045c417d", - "partTypeInformation" : { - "manufacturerPartId" : "96616K2-93", - "customerPartId" : "96616K2-93", - "classification" : "component", - "nameAtManufacturer" : "ECU", - "nameAtCustomer" : "ECU" - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Glue", - "recycledContent" : 35, + "recycledContent" : 15, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -57920,67 +88430,226 @@ "materialAbbreviation" : "GL338" } ] } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8e69de38-918a-4924-b2ad-7663045c417d", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", "childItems" : [ { - "catenaXId" : "urn:uuid:78878ac7-4d2d-499a-a2c7-53503c395d15", + "catenaXId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", "quantity" : { "quantityNumber" : 0.3301, "measurementUnit" : "unit:kilogram" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bdd7980a-c4da-4460-bbc4-904725f177e3", + "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:488121b9-396c-4ba3-b0d0-4539f8dc6446", + "catenaXId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", "quantity" : { "quantityNumber" : 0.2001, "measurementUnit" : "unit:kilogram" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:78878ac7-4d2d-499a-a2c7-53503c395d15", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { + } ], + "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "bpnl" : "BPNL00000003B5MJ", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "488720", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "8711", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", + "value" : "BPNL00000003B5MJ", "key" : "manufacturerId" }, { - "value" : "BID12345678", - "key" : "batchId" + "value" : "46614X1-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-259210182774842440463682", + "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B5MJ", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:78878ac7-4d2d-499a-a2c7-53503c395d15", + "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" + "manufacturerPartId" : "46614X1-98", + "customerPartId" : "46614X1-98", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "manufacturerId" : "BPNL00000003B5MJ", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4b437202-c07c-4a4e-921a-03c01c724184", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1e8dddda-b3f2-4719-b9b8-d3eedf7f1d92", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2736ba00-f1c7-4a3b-8978-ca9f9f58674f", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "partTypeInformation" : { + "ownerPartId" : "46614X1-98", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ECU", + "partClassification" : [ { + "value" : "ECU", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "nameAtOwner" : "ECU" } } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:78878ac7-4d2d-499a-a2c7-53503c395d15", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", "customers" : [ { "businessPartner" : "BPNL00000003B5MJ", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -57991,14 +88660,14 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "Glue", "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 79, + "recycledContent" : 88, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -58008,7 +88677,7 @@ "materialAbbreviation" : "AL7" }, { "materialName" : "Other", - "recycledContent" : 78, + "recycledContent" : 14, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -58017,15 +88686,128 @@ "aggregateState" : "solid", "materialAbbreviation" : "" } ] - } ] - }, { - "catenaXId" : "urn:uuid:bdd7980a-c4da-4460-bbc4-904725f177e3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bdd7980a-c4da-4460-bbc4-904725f177e3", + } ], + "catenaXId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "141371", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "6371", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "manufacturerId" : "BPNL00000003AXS3", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "partTypeInformation" : { + "manufacturerPartId" : "GR-15", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AXS3", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -58036,74 +88818,188 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "childItems" : [ { + "catenaXId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "348770", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "9834", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "12994Z6-78", + "value" : "56212J7-52", "key" : "manufacturerPartId" }, { - "value" : "NO-166032505006505320797385", + "value" : "NO-727634309611409688637610", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:bdd7980a-c4da-4460-bbc4-904725f177e3", + "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", "partTypeInformation" : { - "manufacturerPartId" : "12994Z6-78", - "customerPartId" : "12994Z6-78", - "classification" : "component", + "manufacturerPartId" : "56212J7-52", + "customerPartId" : "56212J7-52", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bdd7980a-c4da-4460-bbc4-904725f177e3", + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { - "catenaXId" : "urn:uuid:f3acdb0b-862f-479e-b57a-fa315248ae45", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9941c55f-8624-4702-8de9-a9823424f7a5", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] - } ] - }, { - "catenaXId" : "urn:uuid:f3acdb0b-862f-479e-b57a-fa315248ae45", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:f3acdb0b-862f-479e-b57a-fa315248ae45", + "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" + "ownerPartId" : "56212J7-52", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Sensor", + "partClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "nameAtOwner" : "Sensor" } } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "customers" : [ { + "businessPartner" : "BPNL00000003B3NX", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "Engineering Plastics", "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 36, + "recycledContent" : 60, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -58113,7 +89009,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 23, + "recycledContent" : 52, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -58122,52 +89018,141 @@ "aggregateState" : "solid", "materialAbbreviation" : "GF30" } ] - } ] - }, { - "catenaXId" : "urn:uuid:488121b9-396c-4ba3-b0d0-4539f8dc6446", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:488121b9-396c-4ba3-b0d0-4539f8dc6446", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "897849", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "4800", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "67899X6-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-026411049745516472921121", - "key" : "partInstanceId" + "key" : "batchId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:488121b9-396c-4ba3-b0d0-4539f8dc6446", + "catenaXId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", "partTypeInformation" : { - "manufacturerPartId" : "67899X6-23", - "customerPartId" : "67899X6-23", - "classification" : "component", - "nameAtManufacturer" : "Engineering Plastics", - "nameAtCustomer" : "Engineering Plastics" + "manufacturerPartId" : "JK-61", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" } } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "Engineering Plastics", "materialClass" : "5.1", "component" : [ { @@ -58182,7 +89167,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 11, + "recycledContent" : 27, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -58191,26 +89176,136 @@ "aggregateState" : "solid", "materialAbbreviation" : "GF30" } ] - } ] - }, { - "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { - "productConditions" : "at least 1990 model", - "desiredPrice" : { - "cost" : 15340, - "currency" : "EUR" + } ], + "catenaXId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "930368", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "7013", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "67982V2-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-737073696787221982590376", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] }, - "returnConditions" : "Wishes to buy", - "requestDate" : "2022-01-01", - "needsReturn" : true, - "latestReturnDate" : "2025-01-01" + "catenaXId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "partTypeInformation" : { + "manufacturerPartId" : "67982V2-87", + "customerPartId" : "67982V2-87", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "partTypeInformation" : { + "ownerPartId" : "67982V2-87", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Engineering Plastics", + "partClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "Engineering Plastics" + } } ], - "catenaXId" : "urn:uuid:4620726c-2391-4bc3-9750-4ed0f67d0336", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4620726c-2391-4bc3-9750-4ed0f67d0336", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003B0Q0", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -58221,17 +89316,19 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + } ] + }, { + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "38049661-08", "key" : "manufacturerPartId" }, { - "value" : "NO-066560829422973609800954", + "value" : "NO-895713475469629339512267", "key" : "partInstanceId" }, { "value" : "Company 1", @@ -58242,295 +89339,27 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:4620726c-2391-4bc3-9750-4ed0f67d0336", + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", "partTypeInformation" : { "manufacturerPartId" : "38049661-08", "customerPartId" : "38049661-08", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Battery", "nameAtCustomer" : "Battery" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "pack" - } ], - "productType" : "pack" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-066560829422973609800954", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 79, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 5.4 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 51, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 11.75 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 4, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "urn:samm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { "incoterms" : "DAP (Delivered at Place)", "image" : { "name" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -58567,7 +89396,7 @@ "key" : "JxkyvRnL" } ], "productLink" : "https://123", - "oeNumber" : "NO-066560829422973609800954", + "oeNumber" : "NO-895713475469629339512267", "category" : { "subCategory" : [ "Battery" ], "mainCategory" : [ "Audio, video, navigation" ] @@ -58579,7 +89408,126 @@ "sku" : "1002090, xYz.09, ABcXYZ", "mileage" : 120000.06 } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ff168200-fba9-4d50-8074-116121dd9c48", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5e73f952-0541-4d3c-b1b3-11e7bb8ef690", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:dd8779e0-f4e3-429c-8e6d-f5e64984645c", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:55e3b256-5df2-4b27-b0bf-24ef35aff527", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ba7f0989-cb80-4f21-825b-f557e529664d", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2f6855f9-fdcc-4dd1-9606-1661b39876d7", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", @@ -58590,99 +89538,99 @@ "value" : 1 }, "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" + "customerPartId" : "38049661-08", + "manufacturerPartId" : "38049661-08" } }, "typology" : { "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", + "description" : "This is the product description of a Battery", "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" + "code" : "27-05-02-91", + "definition" : "Traction battery, starter battery (parts)" }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" }, "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" + "issueDate" : "2021-09-27", + "version" : 2.2, + "status" : "Invalid" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 + "diameter" : 1257.0484, + "width" : 1257, + "length" : 2052, + "weight" : 675, + "height" : 303 }, "lifespan" : { - "unit" : "unit:day", - "value" : 36 + "unit" : "unit:year", + "value" : 19 } }, "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 + "placedOnMarket" : "2020-10-07", + "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-066560829422973609800954", + "value" : "NO-895713475469629339512267", "key" : "PartInstanceID" } ], - "gtin" : "12345678", + "gtin" : " 29402437", "additionalCode" : [ { "name" : "TARIC", - "value" : "8703 24 10 00" + "value" : "299862107" } ] }, "sources" : { "optional" : [ { "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, - "name" : "other" + "name" : "sustainability" } ], "mandatory" : { "safetyTransportation" : { - "header" : "Sustainability Document Material XY", + "header" : "Shipping guidelines", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Passport", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", + "header" : "Laboratory test results HVB Module HV MODUL", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "safetyPackaging" : { - "header" : "Sustainability Document Material XY", + "header" : "Packaging instruction for HVB Module HV MODUL", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "declarationOfConformity" : [ { "document" : { "header" : "Sustainability Document Material XY", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "name" : "other" } ] @@ -58690,191 +89638,272 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2000-01-01", + "date" : "2022-12-29", "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" + "description" : "Battery test", + "title" : "Maintenance Service" } ], - "reusablePackaging" : true, + "reusablePackaging" : false, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", "producerId" : "BPNL1234567890ZZ" } ], "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", + "unit" : "unit:percent", "name" : "Lead", - "location" : "Housing", + "location" : "HvbCell", "concentration" : { - "left" : [ 3.592682E37 ] + "left" : [ 0.9695 ] }, - "id" : "RC0402" + "id" : "XE1625" } ] }, "additionalData" : [ { "data" : "23", "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", + "data" : "", + "description" : "", + "label" : "", "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" + "dataType" : "xsd:string", + "typeUnit" : "" } } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", + "description" : "", + "label" : "", "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" + "dataType" : "xsd:string", + "typeUnit" : "" } } ], "sustainability" : { "material" : [ { - "recycled" : false, - "renewable" : true, + "recycled" : true, + "renewable" : false, "percentage" : 5, - "name" : "Aluminium" + "name" : "Cobalt" } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], + "critical" : [ "Graphite" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { "extWBCSD_otherOperatorName" : "NSF", "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { + "productOrSectorSpecificRules" : [ { "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } + } ] } ], - "carbonContentTotal" : 2.5 + "carbonContentTotal" : 113 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL1234567890ZZ", + "importer" : "BPNL00000003B3NX", "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" + "facilityId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AVTH" } } } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4620726c-2391-4bc3-9750-4ed0f67d0336", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 2, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 8, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 79, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", "childItems" : [ { - "catenaXId" : "urn:uuid:30a524cb-c285-4405-a310-49383ac1ed0b", + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:371670bb-a418-48bc-8310-3dbc77d43143", + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0dc2fd20-af7a-4b1b-bfb8-421f05b047ef", + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4cf1b354-361b-4505-b4e5-0a5738fc318c", + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:46fe3a7a-1189-49fe-a50a-9293f0da6b3d", + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:53ce0a2b-f4c4-47de-9c4d-0ac76f12848f", + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:30a524cb-c285-4405-a310-49383ac1ed0b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:30a524cb-c285-4405-a310-49383ac1ed0b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "98791", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "4910", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-741256730823788885956354", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:30a524cb-c285-4405-a310-49383ac1ed0b", + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "ownerPartId" : "38049661-08", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Battery", + "partClassification" : [ { + "value" : "Battery", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Battery" } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -59099,7 +90128,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-741256730823788885956354", + "batteryIDDMCCode" : "NO-895713475469629339512267", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -59110,10 +90139,30 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "pack" + } ], + "productType" : "pack" + } ], + "urn:samm: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:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 75, + "recycledContent" : 77, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -59123,7 +90172,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 83, + "recycledContent" : 58, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -59133,7 +90182,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 89, + "recycledContent" : 64, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -59143,361 +90192,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-741256730823788885956354", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:30a524cb-c285-4405-a310-49383ac1ed0b", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a42ccaab-4313-45b1-83b9-0a64f6189f29", + "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:23ad8d61-5074-45c5-9c6e-b05f46f0341d", + "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e47c1972-d19d-4f5d-b9ab-fb67bdd05358", + "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7048c457-d352-4f3e-a59a-62410653f4df", + "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:916f2da3-df5e-4828-a447-78bd365a7a82", + "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6dec51f9-c746-4c24-8f37-5cd003f92889", + "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:37096239-a90c-42f8-9b65-872b37aff616", + "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bd7b42cc-7378-4cfe-8151-a9caafd7d809", + "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fba42ca1-7138-4bc3-a25d-9b7b08e16761", + "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:be795979-a3ce-4668-b9a2-312f14a58dfd", + "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:a42ccaab-4313-45b1-83b9-0a64f6189f29", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a42ccaab-4313-45b1-83b9-0a64f6189f29", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "276472", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "4561", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-683030842789190919543290", + "value" : "NO-687113612968742222940062", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a42ccaab-4313-45b1-83b9-0a64f6189f29", + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2a9c3adb-c757-4c14-bcea-07920643bf17", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ad92ac7d-a13d-4338-a6de-8a01e66c3896", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:488e74af-d665-4b41-a6f3-74f2384773f2", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:82621f3a-6943-4b28-a17b-6b7bd600ddb5", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:bd609bc9-b8b6-404e-90a7-32ec9111050f", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3cad2036-f3aa-4117-a32c-efcc07975c0d", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fbfd002a-0f50-4f73-a768-47d64ad9e0b5", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a54fc9c0-d2dd-417d-9d31-4d764e114782", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5868633e-c78c-4411-9bd6-a5bed1069a82", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3e4124e6-3c37-4910-8aaf-c09ffdd6252d", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e3b0f102-98b3-42de-973c-0e34aa51bc22", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -59722,7 +90863,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-683030842789190919543290", + "batteryIDDMCCode" : "NO-687113612968742222940062", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -59733,32 +90874,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a42ccaab-4313-45b1-83b9-0a64f6189f29", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2022-10-13", + "version" : 1.2, + "status" : "Approved" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6427, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 19 + } + }, + "commercial" : { + "placedOnMarket" : "2022-03-21", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-687113612968742222940062", + "key" : "PartInstanceID" + } ], + "gtin" : " 63000226", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "100159072" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Compliance", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2022-10-22", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 1.2394 ] + }, + "id" : "JG9921" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Graphite" + } ], + "critical" : [ "Manganese" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 116 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B2OM", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-12-11", + "currentStateOfHealthTimestamp" : "2019-10-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-25", + "currentStateOfHealthTimestamp" : "2024-02-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -59767,28 +91113,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:23ad8d61-5074-45c5-9c6e-b05f46f0341d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:23ad8d61-5074-45c5-9c6e-b05f46f0341d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "29945", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "8692", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -59796,31 +91189,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-964135366147680582015398", + "value" : "NO-991767235182356540580326", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:23ad8d61-5074-45c5-9c6e-b05f46f0341d", + "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0629471c-f896-4217-b79e-0aeb31224d62", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -59829,7 +91247,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -60054,7 +91490,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-964135366147680582015398", + "batteryIDDMCCode" : "NO-991767235182356540580326", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -60065,32 +91501,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:23ad8d61-5074-45c5-9c6e-b05f46f0341d", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-07-16", + "currentStateOfHealthTimestamp" : "2016-10-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-25", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -60099,60 +91561,132 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e47c1972-d19d-4f5d-b9ab-fb67bdd05358", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e47c1972-d19d-4f5d-b9ab-fb67bdd05358", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] } ], + "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "512105", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "4439", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-468434718464174371484735", + "value" : "NO-545804594773407247538373", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:e47c1972-d19d-4f5d-b9ab-fb67bdd05358", + "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9697415f-e8cb-4f58-9527-ea63f831902a", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -60161,7 +91695,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -60386,7 +91938,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-468434718464174371484735", + "batteryIDDMCCode" : "NO-545804594773407247538373", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -60397,32 +91949,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e47c1972-d19d-4f5d-b9ab-fb67bdd05358", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-08-15", + "currentStateOfHealthTimestamp" : "2020-11-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-24", + "currentStateOfHealthTimestamp" : "2024-02-28", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -60431,28 +92009,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7048c457-d352-4f3e-a59a-62410653f4df", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7048c457-d352-4f3e-a59a-62410653f4df", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "550731", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "6134", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -60460,31 +92085,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-209826655576157843200062", + "value" : "NO-631371404662581637455960", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:7048c457-d352-4f3e-a59a-62410653f4df", + "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:cdbd0dc2-9482-45e6-9e2a-bd2bf2bce918", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -60493,7 +92143,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -60718,7 +92386,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-209826655576157843200062", + "batteryIDDMCCode" : "NO-631371404662581637455960", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -60729,32 +92397,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7048c457-d352-4f3e-a59a-62410653f4df", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-08-29", + "currentStateOfHealthTimestamp" : "2018-08-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-14", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -60763,28 +92457,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:916f2da3-df5e-4828-a447-78bd365a7a82", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:916f2da3-df5e-4828-a447-78bd365a7a82", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "783564", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "1182", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -60792,31 +92533,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-516172089718402937966159", + "value" : "NO-045002863370677316790179", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:916f2da3-df5e-4828-a447-78bd365a7a82", + "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:37b41ccc-e207-418a-814a-70471ab92615", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -60825,7 +92591,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -61050,7 +92834,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-516172089718402937966159", + "batteryIDDMCCode" : "NO-045002863370677316790179", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -61061,32 +92845,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:916f2da3-df5e-4828-a447-78bd365a7a82", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-09-04", + "currentStateOfHealthTimestamp" : "2019-11-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-28", + "currentStateOfHealthTimestamp" : "2024-03-06", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -61095,28 +92905,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6dec51f9-c746-4c24-8f37-5cd003f92889", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6dec51f9-c746-4c24-8f37-5cd003f92889", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "166529", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "2290", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -61124,31 +92981,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-631301282353277514964530", + "value" : "NO-352043035937848602986982", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:6dec51f9-c746-4c24-8f37-5cd003f92889", + "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1a349f23-007b-4065-b06d-37db5a8ff2b9", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -61157,7 +93039,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -61382,7 +93282,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-631301282353277514964530", + "batteryIDDMCCode" : "NO-352043035937848602986982", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -61393,32 +93293,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6dec51f9-c746-4c24-8f37-5cd003f92889", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-02-19", + "currentStateOfHealthTimestamp" : "2019-04-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-29", + "currentStateOfHealthTimestamp" : "2024-02-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -61427,28 +93353,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:37096239-a90c-42f8-9b65-872b37aff616", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:37096239-a90c-42f8-9b65-872b37aff616", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "59352", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "7924", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -61456,31 +93429,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-318568377386048063498663", + "value" : "NO-632396764290897802894727", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:37096239-a90c-42f8-9b65-872b37aff616", + "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f02aa833-37b4-4dc1-b296-1cb081f28863", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -61489,7 +93487,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -61714,7 +93730,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-318568377386048063498663", + "batteryIDDMCCode" : "NO-632396764290897802894727", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -61725,32 +93741,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:37096239-a90c-42f8-9b65-872b37aff616", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-04-26", + "currentStateOfHealthTimestamp" : "2016-10-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-11", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -61759,28 +93801,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:bd7b42cc-7378-4cfe-8151-a9caafd7d809", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bd7b42cc-7378-4cfe-8151-a9caafd7d809", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "250126", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7219", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -61788,31 +93877,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-887600675178359798955405", + "value" : "NO-609733587434520163359758", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:bd7b42cc-7378-4cfe-8151-a9caafd7d809", + "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e4efde77-c9a7-4ca6-8dec-e6eb0b47633e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -61821,7 +93935,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -62046,7 +94178,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-887600675178359798955405", + "batteryIDDMCCode" : "NO-609733587434520163359758", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -62057,32 +94189,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bd7b42cc-7378-4cfe-8151-a9caafd7d809", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-05-07", + "currentStateOfHealthTimestamp" : "2018-04-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-29", + "currentStateOfHealthTimestamp" : "2024-02-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -62091,28 +94249,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:fba42ca1-7138-4bc3-a25d-9b7b08e16761", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fba42ca1-7138-4bc3-a25d-9b7b08e16761", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "245679", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "8593", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -62120,31 +94325,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-040024584870218185546438", + "value" : "NO-000743277368034273286877", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:fba42ca1-7138-4bc3-a25d-9b7b08e16761", + "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:05b8ea1b-a9ad-4747-a573-1ebf1b8d963e", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -62153,7 +94383,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -62378,7 +94626,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-040024584870218185546438", + "batteryIDDMCCode" : "NO-000743277368034273286877", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -62389,32 +94637,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fba42ca1-7138-4bc3-a25d-9b7b08e16761", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-10-17", + "currentStateOfHealthTimestamp" : "2015-12-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-14", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -62423,28 +94697,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:be795979-a3ce-4668-b9a2-312f14a58dfd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:be795979-a3ce-4668-b9a2-312f14a58dfd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "757463", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "3457", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -62452,31 +94773,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-030254515495734090259673", + "value" : "NO-081673198748776020784976", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:be795979-a3ce-4668-b9a2-312f14a58dfd", + "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:630521f7-1210-4911-b636-c52af839b667", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -62485,7 +94831,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -62710,7 +95074,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-030254515495734090259673", + "batteryIDDMCCode" : "NO-081673198748776020784976", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -62721,32 +95085,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:be795979-a3ce-4668-b9a2-312f14a58dfd", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-05-02", + "currentStateOfHealthTimestamp" : "2021-01-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-12", + "currentStateOfHealthTimestamp" : "2024-02-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -62755,60 +95145,159 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:371670bb-a418-48bc-8310-3dbc77d43143", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:371670bb-a418-48bc-8310-3dbc77d43143", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "345102", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "4091", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840837-48", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-845189998746619927440539", + "value" : "NO-340269000861175179352744", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:371670bb-a418-48bc-8310-3dbc77d43143", + "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:dd8e0ecd-3bc9-4d33-82b3-2d22b48b4b24", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -63033,7 +95522,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-845189998746619927440539", + "batteryIDDMCCode" : "NO-340269000861175179352744", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -63044,10 +95533,36 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 83, + "recycledContent" : 0, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -63057,7 +95572,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 12, + "recycledContent" : 75, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -63067,7 +95582,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 8, + "recycledContent" : 26, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -63077,361 +95592,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-845189998746619927440539", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:371670bb-a418-48bc-8310-3dbc77d43143", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c6d2d1c0-cd97-4716-b4d3-674cef101022", + "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1da6df7e-ef8b-405d-928c-5fee670dd1fe", + "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3ce49636-0d52-438f-9a44-7cfe287e654a", + "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1ed450e2-a70c-4540-98da-d1ae11ea98c4", + "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c7f28303-f75c-41f2-94a3-3e884cf3f886", + "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b09f7aec-9598-4248-bfd6-dad9ccfad88a", + "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fabb6a9b-55cb-4b26-bb2b-259a05bc07d4", + "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:518bc200-ba95-4eb8-a255-8c0e5927c9e3", + "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:25049a7d-194e-475b-8b42-c749b2935690", + "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d8b5f6d5-e728-48e7-88c2-1e6b6f5fbe5f", + "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:c6d2d1c0-cd97-4716-b4d3-674cef101022", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c6d2d1c0-cd97-4716-b4d3-674cef101022", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "528112", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "4264", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-703860946068383332706335", + "value" : "NO-930399204706280839185780", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:c6d2d1c0-cd97-4716-b4d3-674cef101022", + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:30726710-6781-4ecf-bc10-32f4603e472e", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1627b916-c61f-45c2-8373-a3cde6dca474", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:68dc0b52-484d-43a4-951a-c9aae0d3f6e0", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:315888a4-412c-4ac6-bf04-e86a413202e9", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c4c3b3b1-90b6-46cb-9b75-8d1db6390061", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:db348591-16d7-4045-828f-cbc2d8dd55d4", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:82e82195-5ea8-4672-b954-fdf6cb3616aa", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1031da68-24f2-429e-a453-acc8c31c0f9c", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8fd8a5ad-fd1f-43f3-8cda-f7d0c50602dd", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b6ff08f4-f895-4730-8f98-e0f7ef1d7158", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7f33b8ad-f7d7-4ee0-9eee-a320b9408782", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -63656,7 +96263,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-703860946068383332706335", + "batteryIDDMCCode" : "NO-930399204706280839185780", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -63667,32 +96274,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c6d2d1c0-cd97-4716-b4d3-674cef101022", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-12-07", + "version" : 1.5, + "status" : "Expired" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6988, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 19 + } + }, + "commercial" : { + "placedOnMarket" : "2022-03-14", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-930399204706280839185780", + "key" : "PartInstanceID" + } ], + "gtin" : " 50405858", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "217762458" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Compliance", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-03-02", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 8.8673 ] + }, + "id" : "CO2626" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Steel" + } ], + "critical" : [ "Manganese" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 115 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B2OM", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-08-13", + "currentStateOfHealthTimestamp" : "2020-09-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-03", + "currentStateOfHealthTimestamp" : "2024-03-01", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -63701,28 +96513,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1da6df7e-ef8b-405d-928c-5fee670dd1fe", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1da6df7e-ef8b-405d-928c-5fee670dd1fe", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "849845", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "6614", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -63730,31 +96589,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-075673003657356001137277", + "value" : "NO-875824163752079594295649", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:1da6df7e-ef8b-405d-928c-5fee670dd1fe", + "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:45932070-a93c-4c77-81a3-116aec564a05", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -63763,7 +96647,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -63988,7 +96890,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-075673003657356001137277", + "batteryIDDMCCode" : "NO-875824163752079594295649", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -63999,32 +96901,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1da6df7e-ef8b-405d-928c-5fee670dd1fe", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-06-14", + "currentStateOfHealthTimestamp" : "2018-03-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-22", + "currentStateOfHealthTimestamp" : "2024-02-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -64033,28 +96961,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3ce49636-0d52-438f-9a44-7cfe287e654a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3ce49636-0d52-438f-9a44-7cfe287e654a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "94016", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "3455", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -64062,31 +97037,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-957208779131031803578182", + "value" : "NO-181274919815027048779446", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:3ce49636-0d52-438f-9a44-7cfe287e654a", + "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4c34eac1-9a0b-4675-9821-7217b4d3dc42", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -64095,7 +97095,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -64320,7 +97338,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-957208779131031803578182", + "batteryIDDMCCode" : "NO-181274919815027048779446", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -64331,32 +97349,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3ce49636-0d52-438f-9a44-7cfe287e654a", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-12-26", + "currentStateOfHealthTimestamp" : "2020-11-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-20", + "currentStateOfHealthTimestamp" : "2024-02-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -64365,28 +97409,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1ed450e2-a70c-4540-98da-d1ae11ea98c4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ed450e2-a70c-4540-98da-d1ae11ea98c4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "613386", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "5374", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -64394,31 +97485,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-359672337197985936614303", + "value" : "NO-624099875318346541799114", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:1ed450e2-a70c-4540-98da-d1ae11ea98c4", + "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:06f38f5c-3879-4e92-a522-686f5443428a", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -64427,7 +97543,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -64652,7 +97786,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-359672337197985936614303", + "batteryIDDMCCode" : "NO-624099875318346541799114", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -64663,32 +97797,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ed450e2-a70c-4540-98da-d1ae11ea98c4", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-09-07", + "currentStateOfHealthTimestamp" : "2023-04-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-17", + "currentStateOfHealthTimestamp" : "2024-02-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -64697,28 +97857,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c7f28303-f75c-41f2-94a3-3e884cf3f886", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c7f28303-f75c-41f2-94a3-3e884cf3f886", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "884019", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "6746", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -64726,31 +97933,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-552080978459972414573059", + "value" : "NO-605812180459007775211801", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:c7f28303-f75c-41f2-94a3-3e884cf3f886", + "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e0cc79df-b1cc-4179-9407-4e0f4fd4f19f", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -64759,7 +97991,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -64984,7 +98234,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-552080978459972414573059", + "batteryIDDMCCode" : "NO-605812180459007775211801", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -64995,32 +98245,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c7f28303-f75c-41f2-94a3-3e884cf3f886", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-01-07", + "currentStateOfHealthTimestamp" : "2020-10-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-31", + "currentStateOfHealthTimestamp" : "2024-03-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -65029,28 +98305,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b09f7aec-9598-4248-bfd6-dad9ccfad88a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b09f7aec-9598-4248-bfd6-dad9ccfad88a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "935131", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "8100", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -65058,31 +98381,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-851750698892531412857553", + "value" : "NO-968546653898175607848081", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:b09f7aec-9598-4248-bfd6-dad9ccfad88a", + "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3bf6c18f-02d0-49d6-bf85-dfefbce4e4b0", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -65091,7 +98439,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -65316,7 +98682,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-851750698892531412857553", + "batteryIDDMCCode" : "NO-968546653898175607848081", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -65327,32 +98693,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b09f7aec-9598-4248-bfd6-dad9ccfad88a", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-08-22", + "currentStateOfHealthTimestamp" : "2022-01-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-19", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -65361,28 +98753,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:fabb6a9b-55cb-4b26-bb2b-259a05bc07d4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fabb6a9b-55cb-4b26-bb2b-259a05bc07d4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "444876", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2660", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -65390,31 +98829,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-438444315480986271194740", + "value" : "NO-855241899954855664946610", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:fabb6a9b-55cb-4b26-bb2b-259a05bc07d4", + "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:85425f36-99aa-459b-918a-82a54553705e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -65423,7 +98887,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -65648,7 +99130,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-438444315480986271194740", + "batteryIDDMCCode" : "NO-855241899954855664946610", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -65659,32 +99141,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fabb6a9b-55cb-4b26-bb2b-259a05bc07d4", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-03-26", + "currentStateOfHealthTimestamp" : "2015-07-16", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-14", + "currentStateOfHealthTimestamp" : "2024-02-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -65693,28 +99201,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:518bc200-ba95-4eb8-a255-8c0e5927c9e3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:518bc200-ba95-4eb8-a255-8c0e5927c9e3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "789866", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "3022", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -65722,31 +99277,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-115269409577103872380587", + "value" : "NO-971962340442720997066820", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:518bc200-ba95-4eb8-a255-8c0e5927c9e3", + "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0dd31796-d329-4f79-a566-f5188ad9cc55", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -65755,7 +99335,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -65980,7 +99578,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-115269409577103872380587", + "batteryIDDMCCode" : "NO-971962340442720997066820", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -65991,32 +99589,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:518bc200-ba95-4eb8-a255-8c0e5927c9e3", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-12-24", + "currentStateOfHealthTimestamp" : "2019-07-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-01", + "currentStateOfHealthTimestamp" : "2024-02-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -66025,28 +99649,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:25049a7d-194e-475b-8b42-c749b2935690", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:25049a7d-194e-475b-8b42-c749b2935690", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "663613", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "8743", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -66054,31 +99725,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-857834072319920008187503", + "value" : "NO-912642282493118256153758", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:25049a7d-194e-475b-8b42-c749b2935690", + "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5644e790-c4b5-4a8d-960d-b6c6aa8d3b07", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -66087,7 +99783,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -66312,7 +100026,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-857834072319920008187503", + "batteryIDDMCCode" : "NO-912642282493118256153758", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -66323,32 +100037,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:25049a7d-194e-475b-8b42-c749b2935690", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-11", + "currentStateOfHealthTimestamp" : "2015-06-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-29", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -66357,28 +100097,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d8b5f6d5-e728-48e7-88c2-1e6b6f5fbe5f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d8b5f6d5-e728-48e7-88c2-1e6b6f5fbe5f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "879377", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "1411", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -66386,31 +100173,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-367480792179621604396039", + "value" : "NO-289487941315784350536387", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:d8b5f6d5-e728-48e7-88c2-1e6b6f5fbe5f", + "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ff50fc9e-ef9c-4235-bd06-98727d11795e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -66419,7 +100231,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -66644,7 +100474,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-367480792179621604396039", + "batteryIDDMCCode" : "NO-289487941315784350536387", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -66655,32 +100485,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d8b5f6d5-e728-48e7-88c2-1e6b6f5fbe5f", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-01-05", + "currentStateOfHealthTimestamp" : "2015-04-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-31", + "currentStateOfHealthTimestamp" : "2024-02-22", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -66689,60 +100545,159 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0dc2fd20-af7a-4b1b-bfb8-421f05b047ef", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0dc2fd20-af7a-4b1b-bfb8-421f05b047ef", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "696702", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "3942", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840837-48", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-937831203546933605540977", + "value" : "NO-218925641782669622254168", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:0dc2fd20-af7a-4b1b-bfb8-421f05b047ef", + "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a970c990-c8f9-4636-b5d4-a3b9e3d1e2d4", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -66967,7 +100922,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-937831203546933605540977", + "batteryIDDMCCode" : "NO-218925641782669622254168", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -66978,10 +100933,36 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 4, + "recycledContent" : 88, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -66991,7 +100972,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 29, + "recycledContent" : 65, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -67001,7 +100982,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 23, + "recycledContent" : 29, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -67011,361 +100992,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-937831203546933605540977", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0dc2fd20-af7a-4b1b-bfb8-421f05b047ef", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:015a98e8-d07e-459c-b850-4735e34cd4f4", + "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:aa6aa841-cfda-4033-849b-f1283ad9e037", + "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:036b7f33-aba5-4a48-ac1f-b926c8990e6b", + "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:62ed60b1-86e1-4067-96eb-10278bd1ceea", + "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:391b6421-53eb-4e17-91bf-81ee76f1fcab", + "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6730ae3c-0c0a-42c5-9ff6-12667bd01f96", + "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c86eacd6-4b30-40f4-873b-f6fa90f7fb95", + "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3708a6b2-90c4-4097-b7e8-6f60ef948cfa", + "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:88be9f88-417a-4edc-bb65-64b1f746c236", + "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3a39519c-c312-4ee9-ad1f-6a2b28edbd7d", + "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:015a98e8-d07e-459c-b850-4735e34cd4f4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:015a98e8-d07e-459c-b850-4735e34cd4f4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "278337", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "9037", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-068715455362006735230204", + "value" : "NO-266625803499013057727310", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:015a98e8-d07e-459c-b850-4735e34cd4f4", + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e553e26e-de63-4ce9-ac24-6ef009c72cce", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5f5a1239-6412-40c6-b6bb-ab1c48d605c1", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:81503307-6207-4ac6-952f-ee5ac97d9b37", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:56796667-e8b6-47c8-8473-0f4405280d8c", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2a3d807a-8c0f-4724-8168-dc926a3fa9b8", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:94957af5-c50c-409d-89fb-4bd8cffc8855", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4bd91ba0-653d-43cc-896f-98f1ff031526", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b90f6671-e863-4c61-b478-50a26cf38042", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:66137a0e-4a71-4360-b556-ef8fe211e9ae", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ef675976-6da6-4e89-bc9e-3f18212bbcdf", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c467d5c5-dcb6-49bc-af93-6a3c1318ce79", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -67590,7 +101663,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-068715455362006735230204", + "batteryIDDMCCode" : "NO-266625803499013057727310", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -67601,32 +101674,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:015a98e8-d07e-459c-b850-4735e34cd4f4", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2021-09-07", + "version" : 2.3, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6781, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 15 + } + }, + "commercial" : { + "placedOnMarket" : "2021-06-07", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-266625803499013057727310", + "key" : "PartInstanceID" + } ], + "gtin" : " 52245597", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "388682915" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Compliance", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2022-03-30", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 7.25 ] + }, + "id" : "VX5322" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Steel" + } ], + "critical" : [ "Cobalt" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 121 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AYRE", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-11-10", + "currentStateOfHealthTimestamp" : "2020-07-03", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-26", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -67635,28 +101913,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:aa6aa841-cfda-4033-849b-f1283ad9e037", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:aa6aa841-cfda-4033-849b-f1283ad9e037", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "720827", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "4083", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -67664,31 +101989,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-968159941382459850331985", + "value" : "NO-813531313449156434340447", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:aa6aa841-cfda-4033-849b-f1283ad9e037", + "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f46e4ec9-3791-4bcc-bda1-1b381c4c0007", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -67697,7 +102047,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -67922,7 +102290,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-968159941382459850331985", + "batteryIDDMCCode" : "NO-813531313449156434340447", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -67933,32 +102301,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:aa6aa841-cfda-4033-849b-f1283ad9e037", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-10-03", + "currentStateOfHealthTimestamp" : "2023-08-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-01", + "currentStateOfHealthTimestamp" : "2024-02-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -67967,28 +102361,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:036b7f33-aba5-4a48-ac1f-b926c8990e6b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:036b7f33-aba5-4a48-ac1f-b926c8990e6b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "726830", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "6045", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -67996,31 +102437,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-146315129148855723244270", + "value" : "NO-160502363712170606609249", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:036b7f33-aba5-4a48-ac1f-b926c8990e6b", + "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e30f53f5-d096-4b8d-b738-16f2a8c86bb7", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -68029,7 +102495,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -68254,7 +102738,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-146315129148855723244270", + "batteryIDDMCCode" : "NO-160502363712170606609249", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -68265,32 +102749,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:036b7f33-aba5-4a48-ac1f-b926c8990e6b", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-11-11", + "currentStateOfHealthTimestamp" : "2022-03-03", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-15", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -68299,28 +102809,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:62ed60b1-86e1-4067-96eb-10278bd1ceea", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:62ed60b1-86e1-4067-96eb-10278bd1ceea", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "125411", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "9687", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -68328,31 +102885,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-033660825615212406868386", + "value" : "NO-598740850606585963235307", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:62ed60b1-86e1-4067-96eb-10278bd1ceea", + "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:161425eb-a656-474a-bc48-cc822e5c431e", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -68361,7 +102943,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -68586,7 +103186,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-033660825615212406868386", + "batteryIDDMCCode" : "NO-598740850606585963235307", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -68597,32 +103197,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:62ed60b1-86e1-4067-96eb-10278bd1ceea", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-11-28", + "currentStateOfHealthTimestamp" : "2021-05-29", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-31", + "currentStateOfHealthTimestamp" : "2024-02-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -68631,28 +103257,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:391b6421-53eb-4e17-91bf-81ee76f1fcab", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:391b6421-53eb-4e17-91bf-81ee76f1fcab", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "845221", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "1665", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -68660,31 +103333,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-533621888131297159461085", + "value" : "NO-088559388438816364444095", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:391b6421-53eb-4e17-91bf-81ee76f1fcab", + "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a7852bf6-ea94-40e5-895b-bd240eee8469", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -68693,7 +103391,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -68918,7 +103634,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-533621888131297159461085", + "batteryIDDMCCode" : "NO-088559388438816364444095", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -68929,32 +103645,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:391b6421-53eb-4e17-91bf-81ee76f1fcab", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-04-13", + "currentStateOfHealthTimestamp" : "2018-04-15", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-28", + "currentStateOfHealthTimestamp" : "2024-02-14", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -68963,28 +103705,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6730ae3c-0c0a-42c5-9ff6-12667bd01f96", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6730ae3c-0c0a-42c5-9ff6-12667bd01f96", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "433380", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "3214", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -68992,31 +103781,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-069717208408650036819733", + "value" : "NO-226975986307778816726774", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:6730ae3c-0c0a-42c5-9ff6-12667bd01f96", + "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e5e314f5-4ab2-4457-84b1-51ca5d68ee87", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -69025,7 +103839,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -69250,7 +104082,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-069717208408650036819733", + "batteryIDDMCCode" : "NO-226975986307778816726774", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -69261,32 +104093,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6730ae3c-0c0a-42c5-9ff6-12667bd01f96", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-04-14", + "currentStateOfHealthTimestamp" : "2016-10-05", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-19", + "currentStateOfHealthTimestamp" : "2024-02-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -69295,28 +104153,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c86eacd6-4b30-40f4-873b-f6fa90f7fb95", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c86eacd6-4b30-40f4-873b-f6fa90f7fb95", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "899752", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "5551", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -69324,31 +104229,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-864454561416506174122657", + "value" : "NO-169345443003327596491868", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:c86eacd6-4b30-40f4-873b-f6fa90f7fb95", + "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5bb5ff2c-66ce-408a-85ac-045c03bb3df7", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -69357,7 +104287,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -69582,7 +104530,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-864454561416506174122657", + "batteryIDDMCCode" : "NO-169345443003327596491868", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -69593,32 +104541,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c86eacd6-4b30-40f4-873b-f6fa90f7fb95", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-04-01", + "currentStateOfHealthTimestamp" : "2017-09-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-08", + "currentStateOfHealthTimestamp" : "2024-02-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -69627,28 +104601,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3708a6b2-90c4-4097-b7e8-6f60ef948cfa", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3708a6b2-90c4-4097-b7e8-6f60ef948cfa", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "862255", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "8043", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -69656,31 +104677,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-817276582673121337942886", + "value" : "NO-928993266068674740609748", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:3708a6b2-90c4-4097-b7e8-6f60ef948cfa", + "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:408cc932-804a-4584-ab9a-1861aa32bc8a", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -69689,7 +104735,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -69914,7 +104978,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-817276582673121337942886", + "batteryIDDMCCode" : "NO-928993266068674740609748", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -69925,32 +104989,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3708a6b2-90c4-4097-b7e8-6f60ef948cfa", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-11-01", + "currentStateOfHealthTimestamp" : "2022-08-07", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-19", + "currentStateOfHealthTimestamp" : "2024-02-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -69959,28 +105049,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:88be9f88-417a-4edc-bb65-64b1f746c236", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:88be9f88-417a-4edc-bb65-64b1f746c236", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "656036", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "5594", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -69988,31 +105125,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-881659986394008905661445", + "value" : "NO-522142872283988107476796", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:88be9f88-417a-4edc-bb65-64b1f746c236", + "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9bb5d74f-5549-427f-b637-0d465dc0a7c6", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -70021,7 +105183,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -70246,7 +105426,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-881659986394008905661445", + "batteryIDDMCCode" : "NO-522142872283988107476796", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -70257,32 +105437,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:88be9f88-417a-4edc-bb65-64b1f746c236", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-08-08", + "currentStateOfHealthTimestamp" : "2023-02-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-08", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -70291,28 +105497,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3a39519c-c312-4ee9-ad1f-6a2b28edbd7d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3a39519c-c312-4ee9-ad1f-6a2b28edbd7d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "388692", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "5187", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -70320,31 +105573,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-573819205847070830739660", + "value" : "NO-824705014257620858873450", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:3a39519c-c312-4ee9-ad1f-6a2b28edbd7d", + "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1c2db2cd-b93c-4058-8b7a-b96d302f33e0", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -70353,7 +105631,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -70578,7 +105874,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-573819205847070830739660", + "batteryIDDMCCode" : "NO-824705014257620858873450", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -70589,32 +105885,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3a39519c-c312-4ee9-ad1f-6a2b28edbd7d", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-05-28", + "currentStateOfHealthTimestamp" : "2022-09-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-09", + "currentStateOfHealthTimestamp" : "2024-02-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -70623,60 +105945,159 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4cf1b354-361b-4505-b4e5-0a5738fc318c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4cf1b354-361b-4505-b4e5-0a5738fc318c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "711477", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "2407", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840837-48", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-303140615401900753179924", + "value" : "NO-405159030052090407177399", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:4cf1b354-361b-4505-b4e5-0a5738fc318c", + "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:89209001-da0e-46b3-9b2c-65fb28926cc9", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -70901,7 +106322,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-303140615401900753179924", + "batteryIDDMCCode" : "NO-405159030052090407177399", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -70912,10 +106333,36 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 28, + "recycledContent" : 49, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -70925,7 +106372,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 79, + "recycledContent" : 23, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -70935,7 +106382,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 69, + "recycledContent" : 34, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -70945,361 +106392,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-303140615401900753179924", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4cf1b354-361b-4505-b4e5-0a5738fc318c", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c9b62a01-8f01-4237-92c3-96fb309b2aeb", + "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:818347b9-0b7e-4713-934f-de134a11c837", + "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:cd68bbd3-7aea-4ec2-b8d4-7ea06873376b", + "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9e7eef65-6953-4fe1-99c1-a427c11d8a3e", + "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9706c707-0eb3-428c-9947-045cba8ad6f5", + "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1e0244d2-59fe-40af-8314-e9a526923325", + "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5962ecc5-a7b1-4708-95bb-f6bc94559edb", + "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2e9ceba2-c60c-4cda-8266-c76ee41f2a8d", + "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5b0c1154-ce85-4c2a-82ad-2e34ff7a37a5", + "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:76df699f-2b02-414e-8e83-96ff13a89122", + "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:c9b62a01-8f01-4237-92c3-96fb309b2aeb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c9b62a01-8f01-4237-92c3-96fb309b2aeb", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "750204", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "8597", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-315634995950073061538960", + "value" : "NO-666462495321800521350161", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:c9b62a01-8f01-4237-92c3-96fb309b2aeb", + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4637acf8-9fa4-4cb8-93f2-cc4b5e6386f1", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6c31ae6b-6a71-4279-beb7-b8c8093f3767", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:31e21a39-3b30-4b01-ab7c-c97d1a85e0e0", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5f543e94-1085-4252-b326-be28aac57cff", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:075cd693-5bfb-49eb-98ea-8ef0bc986709", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e19b6141-eb8d-4fdb-a678-f5ed47ac25d9", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6352c846-ae60-4aad-95ac-060e611688e7", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:55d77876-0c90-4f80-a890-f9e42df95adb", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0fe5ffab-5d1d-4db2-ab12-7c11858a6169", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4542651d-ec6d-4dc0-9e81-03013a793abd", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:40c9674b-f1fd-4b6a-89d2-ead5403c6883", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -71524,7 +107063,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-315634995950073061538960", + "batteryIDDMCCode" : "NO-666462495321800521350161", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -71535,32 +107074,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c9b62a01-8f01-4237-92c3-96fb309b2aeb", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-12-26", + "version" : 2.6, + "status" : "Expired" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.68019999999999, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 15 + } + }, + "commercial" : { + "placedOnMarket" : "2023-12-12", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-666462495321800521350161", + "key" : "PartInstanceID" + } ], + "gtin" : " 80816507", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "338960894" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Compliance", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-01-28", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 8.8569 ] + }, + "id" : "TV8227" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "UV Varnish" + } ], + "critical" : [ "Nickel" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 120 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B3NX", + "manufacturer" : { + "facilityId" : "BPNL00000003B3NX", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-07-29", + "currentStateOfHealthTimestamp" : "2021-02-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-31", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -71569,28 +107313,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:818347b9-0b7e-4713-934f-de134a11c837", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:818347b9-0b7e-4713-934f-de134a11c837", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "440587", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "1784", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -71598,31 +107389,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-423687364387663753253979", + "value" : "NO-243431359981652793976124", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:818347b9-0b7e-4713-934f-de134a11c837", + "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1b6966e0-303a-4f61-9fee-c98a94297ed5", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -71631,7 +107447,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -71856,7 +107690,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-423687364387663753253979", + "batteryIDDMCCode" : "NO-243431359981652793976124", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -71867,32 +107701,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:818347b9-0b7e-4713-934f-de134a11c837", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-06-30", + "currentStateOfHealthTimestamp" : "2019-11-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-09", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -71901,28 +107761,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:cd68bbd3-7aea-4ec2-b8d4-7ea06873376b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cd68bbd3-7aea-4ec2-b8d4-7ea06873376b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "804866", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "8876", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -71930,31 +107837,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-563966635418939360446649", + "value" : "NO-023002600992356013537416", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:cd68bbd3-7aea-4ec2-b8d4-7ea06873376b", + "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c29ae841-3b6e-47b9-a5fc-65f9f7edd927", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -71963,7 +107895,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -72188,7 +108138,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-563966635418939360446649", + "batteryIDDMCCode" : "NO-023002600992356013537416", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -72199,32 +108149,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cd68bbd3-7aea-4ec2-b8d4-7ea06873376b", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-08-06", + "currentStateOfHealthTimestamp" : "2016-02-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-11", + "currentStateOfHealthTimestamp" : "2024-02-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -72233,28 +108209,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9e7eef65-6953-4fe1-99c1-a427c11d8a3e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9e7eef65-6953-4fe1-99c1-a427c11d8a3e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "941283", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "9395", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -72262,31 +108285,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-399062914395548095491926", + "value" : "NO-723900595323676180970239", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:9e7eef65-6953-4fe1-99c1-a427c11d8a3e", + "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7d921a84-ce8b-42ef-b6c6-4e4c8abea760", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -72295,7 +108343,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -72520,7 +108586,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-399062914395548095491926", + "batteryIDDMCCode" : "NO-723900595323676180970239", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -72531,32 +108597,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9e7eef65-6953-4fe1-99c1-a427c11d8a3e", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-08-16", + "currentStateOfHealthTimestamp" : "2019-07-16", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-29", + "currentStateOfHealthTimestamp" : "2024-02-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -72565,28 +108657,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9706c707-0eb3-428c-9947-045cba8ad6f5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9706c707-0eb3-428c-9947-045cba8ad6f5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "201539", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "3201", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -72594,31 +108733,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-978762855285911566270928", + "value" : "NO-852995337686482639469224", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:9706c707-0eb3-428c-9947-045cba8ad6f5", + "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c69859ac-dbd1-4d65-97c4-8318f78d36a4", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -72627,7 +108791,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -72852,7 +109034,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-978762855285911566270928", + "batteryIDDMCCode" : "NO-852995337686482639469224", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -72863,32 +109045,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9706c707-0eb3-428c-9947-045cba8ad6f5", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-07-31", + "currentStateOfHealthTimestamp" : "2022-02-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-08", + "currentStateOfHealthTimestamp" : "2024-03-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -72897,28 +109105,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1e0244d2-59fe-40af-8314-e9a526923325", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1e0244d2-59fe-40af-8314-e9a526923325", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "608424", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "4955", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -72926,31 +109181,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-807416606544369837483021", + "value" : "NO-864271430120841368141725", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:1e0244d2-59fe-40af-8314-e9a526923325", + "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7bd13c22-ca20-4588-8251-28386e9c68a6", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -72959,7 +109239,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -73184,7 +109482,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-807416606544369837483021", + "batteryIDDMCCode" : "NO-864271430120841368141725", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -73195,32 +109493,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1e0244d2-59fe-40af-8314-e9a526923325", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-10-13", + "currentStateOfHealthTimestamp" : "2017-06-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-25", + "currentStateOfHealthTimestamp" : "2024-02-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -73229,28 +109553,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5962ecc5-a7b1-4708-95bb-f6bc94559edb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5962ecc5-a7b1-4708-95bb-f6bc94559edb", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "83839", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "2658", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -73258,31 +109629,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-723847442250142221301691", + "value" : "NO-493965559315963173200149", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:5962ecc5-a7b1-4708-95bb-f6bc94559edb", + "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ade79d38-7a36-44c7-80a8-fdc08a7cb8fb", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -73291,7 +109687,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -73516,7 +109930,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-723847442250142221301691", + "batteryIDDMCCode" : "NO-493965559315963173200149", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -73527,32 +109941,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5962ecc5-a7b1-4708-95bb-f6bc94559edb", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-03-02", + "currentStateOfHealthTimestamp" : "2020-06-05", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-26", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -73561,28 +110001,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2e9ceba2-c60c-4cda-8266-c76ee41f2a8d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2e9ceba2-c60c-4cda-8266-c76ee41f2a8d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "391038", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "4977", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -73590,31 +110077,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-781895263067786841655942", + "value" : "NO-631945854224183782802522", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:2e9ceba2-c60c-4cda-8266-c76ee41f2a8d", + "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0f5748c3-c0bd-46e4-9832-db3120d291c8", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -73623,7 +110135,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -73848,7 +110378,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-781895263067786841655942", + "batteryIDDMCCode" : "NO-631945854224183782802522", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -73859,32 +110389,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2e9ceba2-c60c-4cda-8266-c76ee41f2a8d", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-02-13", + "currentStateOfHealthTimestamp" : "2021-09-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-31", + "currentStateOfHealthTimestamp" : "2024-02-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -73893,28 +110449,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5b0c1154-ce85-4c2a-82ad-2e34ff7a37a5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5b0c1154-ce85-4c2a-82ad-2e34ff7a37a5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "64252", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "7550", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -73922,31 +110525,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-788227853505171765869965", + "value" : "NO-528164755627618925093346", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:5b0c1154-ce85-4c2a-82ad-2e34ff7a37a5", + "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ab698cc6-6b42-41ba-97ae-50ea78e7078a", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -73955,7 +110583,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -74180,7 +110826,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-788227853505171765869965", + "batteryIDDMCCode" : "NO-528164755627618925093346", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -74191,32 +110837,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5b0c1154-ce85-4c2a-82ad-2e34ff7a37a5", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-05-07", + "currentStateOfHealthTimestamp" : "2016-10-31", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-29", + "currentStateOfHealthTimestamp" : "2024-02-16", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -74225,28 +110897,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:76df699f-2b02-414e-8e83-96ff13a89122", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:76df699f-2b02-414e-8e83-96ff13a89122", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "182499", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "4222", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -74254,31 +110973,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-381420353802529161259460", + "value" : "NO-080946431019630794165586", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:76df699f-2b02-414e-8e83-96ff13a89122", + "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ec903206-ddb7-4c2c-8b6c-abd3cd3f419b", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -74287,7 +111031,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -74512,7 +111274,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-381420353802529161259460", + "batteryIDDMCCode" : "NO-080946431019630794165586", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -74523,32 +111285,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:76df699f-2b02-414e-8e83-96ff13a89122", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-04-16", + "currentStateOfHealthTimestamp" : "2016-02-15", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-18", + "currentStateOfHealthTimestamp" : "2024-02-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -74557,60 +111345,159 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:46fe3a7a-1189-49fe-a50a-9293f0da6b3d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:46fe3a7a-1189-49fe-a50a-9293f0da6b3d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "716893", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "6717", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840837-48", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-693011805428596147652274", + "value" : "NO-562616991863372023913717", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:46fe3a7a-1189-49fe-a50a-9293f0da6b3d", + "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7813e8b3-9f24-4c98-be61-804592f09faf", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -74835,7 +111722,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-693011805428596147652274", + "batteryIDDMCCode" : "NO-562616991863372023913717", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -74846,10 +111733,36 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 71, + "recycledContent" : 80, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -74859,7 +111772,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 2, + "recycledContent" : 50, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -74869,7 +111782,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 23, + "recycledContent" : 72, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -74879,361 +111792,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-693011805428596147652274", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:46fe3a7a-1189-49fe-a50a-9293f0da6b3d", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:40be7d9e-b6ef-4bcc-a7f4-55e6d97ad4d4", + "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f477b18e-55d4-4f6c-aec2-bcd7118db8f3", + "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4100af77-9c1f-4d4a-8c62-52837918bf21", + "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d542cafa-9ecc-48a1-b242-41760fa4cf92", + "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1b134117-4fcf-47d2-8177-50e26fce45b5", + "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2115bbee-4aee-4e14-9022-d3905e807e16", + "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:38acab77-09c6-4d1b-9d18-a235728ebc1c", + "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d645d9c2-0c9e-4c2f-9efd-cd4689939ee7", + "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:81235a76-8084-404f-9438-fbc6552403f7", + "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:48d9ede3-a932-4b24-a2c4-eaf24e9437da", + "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:40be7d9e-b6ef-4bcc-a7f4-55e6d97ad4d4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:40be7d9e-b6ef-4bcc-a7f4-55e6d97ad4d4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "296324", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "5460", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-174098349963610036074856", + "value" : "NO-867046467379395919343188", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:40be7d9e-b6ef-4bcc-a7f4-55e6d97ad4d4", + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9b3502fb-4137-4569-806f-9c91d4a544da", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:185a4fcf-7340-48d8-b32c-e34a1ac7ff7b", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fab74cea-2b28-448a-82f4-cf8a68018087", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2bd560c5-6f6a-4897-91ef-8e12cbe69f46", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f9420cbc-700e-47b6-86f5-0e09f6e21687", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:29556c31-a6e0-4c19-b11d-bde92fb31779", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fcd11560-75ec-459b-ad76-601049cfacaf", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e09d57d2-0c2e-42a9-b695-e3a5191f082b", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4b5c89ee-5d84-4331-b4ef-15f04a727aca", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8f362f14-95d6-4b17-8f06-99f97549d351", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c5f07ed3-9c8f-4f31-b7c0-58297f97f30f", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -75458,7 +112463,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-174098349963610036074856", + "batteryIDDMCCode" : "NO-867046467379395919343188", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -75469,32 +112474,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:40be7d9e-b6ef-4bcc-a7f4-55e6d97ad4d4", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-12-27", + "version" : 2, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6324, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 15 + } + }, + "commercial" : { + "placedOnMarket" : "2022-11-06", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-867046467379395919343188", + "key" : "PartInstanceID" + } ], + "gtin" : " 78885933", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "394264016" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-02-02", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 0.9146 ] + }, + "id" : "FO5164" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Manganese" + } ], + "critical" : [ "Cobalt" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 111 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AYRE", + "manufacturer" : { + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-07-08", + "currentStateOfHealthTimestamp" : "2017-06-16", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-17", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -75503,28 +112713,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f477b18e-55d4-4f6c-aec2-bcd7118db8f3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f477b18e-55d4-4f6c-aec2-bcd7118db8f3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "486113", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "9750", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -75532,31 +112789,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-227894445470849772920178", + "value" : "NO-527219620679419431905191", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:f477b18e-55d4-4f6c-aec2-bcd7118db8f3", + "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9f76b956-94c1-40af-bc0b-f775f5768aac", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -75565,7 +112847,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -75790,7 +113090,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-227894445470849772920178", + "batteryIDDMCCode" : "NO-527219620679419431905191", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -75801,32 +113101,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f477b18e-55d4-4f6c-aec2-bcd7118db8f3", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-07-05", + "currentStateOfHealthTimestamp" : "2015-02-22", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-18", + "currentStateOfHealthTimestamp" : "2024-02-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -75835,28 +113161,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4100af77-9c1f-4d4a-8c62-52837918bf21", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4100af77-9c1f-4d4a-8c62-52837918bf21", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "576741", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "7917", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -75864,31 +113237,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-663056745269959621042211", + "value" : "NO-617791177853609557272147", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:4100af77-9c1f-4d4a-8c62-52837918bf21", + "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e01f7173-86fb-4daa-b205-a9b56a07da2d", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -75897,7 +113295,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -76122,7 +113538,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-663056745269959621042211", + "batteryIDDMCCode" : "NO-617791177853609557272147", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -76133,32 +113549,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4100af77-9c1f-4d4a-8c62-52837918bf21", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-07-16", + "currentStateOfHealthTimestamp" : "2014-07-02", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-08", + "currentStateOfHealthTimestamp" : "2024-02-27", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -76167,28 +113609,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d542cafa-9ecc-48a1-b242-41760fa4cf92", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d542cafa-9ecc-48a1-b242-41760fa4cf92", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "250089", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "5129", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -76196,31 +113685,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-667790936660075984073069", + "value" : "NO-431960051195561035016450", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:d542cafa-9ecc-48a1-b242-41760fa4cf92", + "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6a5ac78c-93ff-475d-8d4f-73bdd745dfb7", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -76229,7 +113743,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -76454,7 +113986,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-667790936660075984073069", + "batteryIDDMCCode" : "NO-431960051195561035016450", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -76465,32 +113997,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d542cafa-9ecc-48a1-b242-41760fa4cf92", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-04-09", + "currentStateOfHealthTimestamp" : "2018-03-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-31", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -76499,28 +114057,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1b134117-4fcf-47d2-8177-50e26fce45b5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1b134117-4fcf-47d2-8177-50e26fce45b5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "57892", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "5839", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -76528,31 +114133,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-266850170089791905710736", + "value" : "NO-642498843554646731896600", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:1b134117-4fcf-47d2-8177-50e26fce45b5", + "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fde1fc3c-d687-40a6-ab10-5330a445a477", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -76561,7 +114191,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -76786,7 +114434,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-266850170089791905710736", + "batteryIDDMCCode" : "NO-642498843554646731896600", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -76797,32 +114445,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1b134117-4fcf-47d2-8177-50e26fce45b5", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-08-22", + "currentStateOfHealthTimestamp" : "2020-10-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-08", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -76831,28 +114505,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2115bbee-4aee-4e14-9022-d3905e807e16", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2115bbee-4aee-4e14-9022-d3905e807e16", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "839129", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "4989", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -76860,31 +114581,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-918132424428143885717225", + "value" : "NO-475634520880851519671204", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:2115bbee-4aee-4e14-9022-d3905e807e16", + "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d92d17c4-9867-40c1-aff8-ccf6777effe7", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -76893,7 +114639,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -77118,7 +114882,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-918132424428143885717225", + "batteryIDDMCCode" : "NO-475634520880851519671204", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -77129,32 +114893,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2115bbee-4aee-4e14-9022-d3905e807e16", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-04-10", + "currentStateOfHealthTimestamp" : "2018-01-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-15", + "currentStateOfHealthTimestamp" : "2024-02-28", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -77163,28 +114953,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:38acab77-09c6-4d1b-9d18-a235728ebc1c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:38acab77-09c6-4d1b-9d18-a235728ebc1c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "73823", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "4218", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -77192,31 +115029,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-801741953313747066740498", + "value" : "NO-964473612808435756536485", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:38acab77-09c6-4d1b-9d18-a235728ebc1c", + "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a97420bd-45e7-4cc7-9f60-c990732828b9", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -77225,7 +115087,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -77450,7 +115330,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-801741953313747066740498", + "batteryIDDMCCode" : "NO-964473612808435756536485", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -77461,32 +115341,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:38acab77-09c6-4d1b-9d18-a235728ebc1c", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-10-22", + "currentStateOfHealthTimestamp" : "2019-02-03", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-15", + "currentStateOfHealthTimestamp" : "2024-02-28", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -77495,28 +115401,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d645d9c2-0c9e-4c2f-9efd-cd4689939ee7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d645d9c2-0c9e-4c2f-9efd-cd4689939ee7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "530545", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "1441", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -77524,31 +115477,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-660941000068613174410469", + "value" : "NO-389701329773588536459130", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:d645d9c2-0c9e-4c2f-9efd-cd4689939ee7", + "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:28cdce65-60ca-44f7-9a05-3a292fc1e45a", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -77557,7 +115535,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -77782,7 +115778,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-660941000068613174410469", + "batteryIDDMCCode" : "NO-389701329773588536459130", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -77793,32 +115789,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d645d9c2-0c9e-4c2f-9efd-cd4689939ee7", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-01-21", + "currentStateOfHealthTimestamp" : "2017-03-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-16", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -77827,28 +115849,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:81235a76-8084-404f-9438-fbc6552403f7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:81235a76-8084-404f-9438-fbc6552403f7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "208638", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "7389", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -77856,31 +115925,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-709389753981454926740711", + "value" : "NO-265855892739828724648190", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:81235a76-8084-404f-9438-fbc6552403f7", + "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:896cf53b-e577-4954-b7e1-06e33124c6dd", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -77889,7 +115983,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -78114,7 +116226,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-709389753981454926740711", + "batteryIDDMCCode" : "NO-265855892739828724648190", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -78125,32 +116237,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:81235a76-8084-404f-9438-fbc6552403f7", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-08-31", + "currentStateOfHealthTimestamp" : "2020-09-13", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-25", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -78159,28 +116297,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:48d9ede3-a932-4b24-a2c4-eaf24e9437da", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:48d9ede3-a932-4b24-a2c4-eaf24e9437da", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "680948", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "2281", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -78188,31 +116373,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-594124562009601702221091", + "value" : "NO-175875555612811823933211", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:48d9ede3-a932-4b24-a2c4-eaf24e9437da", + "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8429cf4e-279a-4d09-97a6-8e28ac4f2ee1", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -78221,7 +116431,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -78446,7 +116674,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-594124562009601702221091", + "batteryIDDMCCode" : "NO-175875555612811823933211", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -78457,32 +116685,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:48d9ede3-a932-4b24-a2c4-eaf24e9437da", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-08-16", + "currentStateOfHealthTimestamp" : "2018-09-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-08", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -78491,60 +116745,159 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:53ce0a2b-f4c4-47de-9c4d-0ac76f12848f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:53ce0a2b-f4c4-47de-9c4d-0ac76f12848f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "160595", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 9 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "2208", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840837-48", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-203807792821438413594313", + "value" : "NO-903660072999464921495584", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:53ce0a2b-f4c4-47de-9c4d-0ac76f12848f", + "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4832e797-d414-4c54-a3c5-d82dcab59894", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -78769,7 +117122,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-203807792821438413594313", + "batteryIDDMCCode" : "NO-903660072999464921495584", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -78780,10 +117133,36 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 42, + "recycledContent" : 57, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -78793,7 +117172,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 41, + "recycledContent" : 43, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -78803,7 +117182,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 2, + "recycledContent" : 83, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -78813,361 +117192,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-203807792821438413594313", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:53ce0a2b-f4c4-47de-9c4d-0ac76f12848f", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8ec3f978-5676-4889-a8a4-73dcab4b2fad", + "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c3847a08-2d9c-4fa4-bfe9-11bfd06fa414", + "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2ec20ca7-892a-4b1a-b75d-d0ef13f62447", + "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f1930a2a-d054-487d-820a-a3898297838b", + "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a081f210-1f15-4fd2-9953-7c73513cc471", + "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8d494f0e-0213-40d0-83e4-ec6e08195eeb", + "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a9120fad-b7d0-4fe4-9e00-2497c1475118", + "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1ef2a6e5-3dea-48ad-a31a-0c001809c3fa", + "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:08c49f7e-368f-4b5f-a905-ff01cff1f3c6", + "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:377be51b-6f9e-468a-bb41-eed6252b48a0", + "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:8ec3f978-5676-4889-a8a4-73dcab4b2fad", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8ec3f978-5676-4889-a8a4-73dcab4b2fad", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "38931", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "8142", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-999340502516525691248994", + "value" : "NO-791731492084972438194145", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:8ec3f978-5676-4889-a8a4-73dcab4b2fad", + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:68bddd21-7586-4158-95c2-9c89a88e558c", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:61022aa8-8094-4f27-9c40-5cdd19dddcac", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4357a21d-09ee-4218-9db8-234ca45a8daf", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ec38531c-4f82-4fb2-a8fa-d3d4912a9f63", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:51530b79-d709-43f7-a481-b30b2d75c6a6", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:708f39f2-a4fd-4c52-957e-136d8fffd699", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6ee407d0-250a-45d6-892e-26068c3a8362", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:47c7d8b7-027a-4164-a997-3dbeba5a50e1", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2b65d05f-3c67-4001-a36e-ff7766fb146a", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1c117fd9-628e-482f-85ee-9fbe4eb43211", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:475bd658-600d-41b1-a20b-4e110cba6118", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -79392,7 +117863,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-999340502516525691248994", + "batteryIDDMCCode" : "NO-791731492084972438194145", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -79403,32 +117874,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8ec3f978-5676-4889-a8a4-73dcab4b2fad", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2024-01-24", + "version" : 2.7, + "status" : "Approved" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6739, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 16 + } + }, + "commercial" : { + "placedOnMarket" : "2023-12-28", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-791731492084972438194145", + "key" : "PartInstanceID" + } ], + "gtin" : " 58660936", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "971564677" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Passport", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-02-26", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 0.2396 ] + }, + "id" : "VD3168" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Cobalt" + } ], + "critical" : [ "Cobalt" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 103 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B2OM", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-02-08", + "currentStateOfHealthTimestamp" : "2018-11-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-21", + "currentStateOfHealthTimestamp" : "2024-02-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -79437,28 +118113,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c3847a08-2d9c-4fa4-bfe9-11bfd06fa414", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c3847a08-2d9c-4fa4-bfe9-11bfd06fa414", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "273853", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "4715", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -79466,31 +118189,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-512442944000472350440395", + "value" : "NO-045528680871181123527870", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:c3847a08-2d9c-4fa4-bfe9-11bfd06fa414", + "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3aa2a2cf-30c1-41dd-ab51-4d55b3c37850", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -79499,7 +118247,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -79724,7 +118490,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-512442944000472350440395", + "batteryIDDMCCode" : "NO-045528680871181123527870", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -79735,32 +118501,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c3847a08-2d9c-4fa4-bfe9-11bfd06fa414", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-09-15", + "currentStateOfHealthTimestamp" : "2023-11-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-20", + "currentStateOfHealthTimestamp" : "2024-02-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -79769,28 +118561,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2ec20ca7-892a-4b1a-b75d-d0ef13f62447", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2ec20ca7-892a-4b1a-b75d-d0ef13f62447", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "712590", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7917", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -79798,31 +118637,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-063087236409911020225304", + "value" : "NO-432762596534102360005521", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:2ec20ca7-892a-4b1a-b75d-d0ef13f62447", + "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a38f1235-949a-4422-ad21-606efa26af11", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -79831,7 +118695,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -80056,7 +118938,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-063087236409911020225304", + "batteryIDDMCCode" : "NO-432762596534102360005521", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -80067,32 +118949,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2ec20ca7-892a-4b1a-b75d-d0ef13f62447", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-03-08", + "currentStateOfHealthTimestamp" : "2022-11-29", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-21", + "currentStateOfHealthTimestamp" : "2024-02-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -80101,28 +119009,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f1930a2a-d054-487d-820a-a3898297838b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f1930a2a-d054-487d-820a-a3898297838b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "416054", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "6133", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -80130,31 +119085,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-535819537441573708015863", + "value" : "NO-773784648231452499786492", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:f1930a2a-d054-487d-820a-a3898297838b", + "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:08eb587a-3b9a-42e1-84d0-feb6fa9f3509", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -80163,7 +119143,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -80388,7 +119386,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-535819537441573708015863", + "batteryIDDMCCode" : "NO-773784648231452499786492", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -80399,32 +119397,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f1930a2a-d054-487d-820a-a3898297838b", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-01-12", + "currentStateOfHealthTimestamp" : "2022-02-15", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-04", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -80433,28 +119457,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a081f210-1f15-4fd2-9953-7c73513cc471", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a081f210-1f15-4fd2-9953-7c73513cc471", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "203822", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "1349", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -80462,31 +119533,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-686499553159344590095965", + "value" : "NO-931089020852644605885160", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a081f210-1f15-4fd2-9953-7c73513cc471", + "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0726b2ee-7b3c-4508-a61f-5f032a3dfc00", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -80495,7 +119591,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -80720,7 +119834,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-686499553159344590095965", + "batteryIDDMCCode" : "NO-931089020852644605885160", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -80731,32 +119845,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a081f210-1f15-4fd2-9953-7c73513cc471", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-11-17", + "currentStateOfHealthTimestamp" : "2020-07-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-09", + "currentStateOfHealthTimestamp" : "2024-02-22", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -80765,28 +119905,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8d494f0e-0213-40d0-83e4-ec6e08195eeb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8d494f0e-0213-40d0-83e4-ec6e08195eeb", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "51836", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "2864", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -80794,31 +119981,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-096286342874495289536510", + "value" : "NO-052559054522519128170672", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:8d494f0e-0213-40d0-83e4-ec6e08195eeb", + "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c57cc6c4-e720-4aa8-a1e1-fab106760396", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -80827,7 +120039,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -81052,7 +120282,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-096286342874495289536510", + "batteryIDDMCCode" : "NO-052559054522519128170672", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -81063,32 +120293,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8d494f0e-0213-40d0-83e4-ec6e08195eeb", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-09-24", + "currentStateOfHealthTimestamp" : "2020-11-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-07", + "currentStateOfHealthTimestamp" : "2024-02-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -81097,28 +120353,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a9120fad-b7d0-4fe4-9e00-2497c1475118", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a9120fad-b7d0-4fe4-9e00-2497c1475118", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "702518", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9016", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -81126,31 +120429,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-575051951939456397031163", + "value" : "NO-069888996325895048192020", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a9120fad-b7d0-4fe4-9e00-2497c1475118", + "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4fecbf7e-15ce-407e-abb3-ea9279febdb7", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -81159,7 +120487,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -81384,7 +120730,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-575051951939456397031163", + "batteryIDDMCCode" : "NO-069888996325895048192020", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -81395,32 +120741,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a9120fad-b7d0-4fe4-9e00-2497c1475118", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-06-10", + "currentStateOfHealthTimestamp" : "2018-10-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-03", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -81429,28 +120801,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1ef2a6e5-3dea-48ad-a31a-0c001809c3fa", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ef2a6e5-3dea-48ad-a31a-0c001809c3fa", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "40243", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "7525", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -81458,31 +120877,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-618565493987010548187702", + "value" : "NO-726411710200643729429321", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:1ef2a6e5-3dea-48ad-a31a-0c001809c3fa", + "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:61a2e795-3787-4bd2-82be-f3b2a77bbfeb", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -81491,7 +120935,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -81716,7 +121178,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-618565493987010548187702", + "batteryIDDMCCode" : "NO-726411710200643729429321", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -81727,32 +121189,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ef2a6e5-3dea-48ad-a31a-0c001809c3fa", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-02-24", + "currentStateOfHealthTimestamp" : "2023-03-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-16", + "currentStateOfHealthTimestamp" : "2024-02-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -81761,28 +121249,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:08c49f7e-368f-4b5f-a905-ff01cff1f3c6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:08c49f7e-368f-4b5f-a905-ff01cff1f3c6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "363896", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "6846", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -81790,31 +121325,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-199732732668666253940695", + "value" : "NO-778428442049642183418940", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:08c49f7e-368f-4b5f-a905-ff01cff1f3c6", + "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9097c151-5813-4b55-b756-8aabc22824eb", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -81823,7 +121383,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -82048,7 +121626,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-199732732668666253940695", + "batteryIDDMCCode" : "NO-778428442049642183418940", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -82059,32 +121637,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:08c49f7e-368f-4b5f-a905-ff01cff1f3c6", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-11-02", + "currentStateOfHealthTimestamp" : "2020-09-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-04", + "currentStateOfHealthTimestamp" : "2024-03-01", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -82093,28 +121697,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:377be51b-6f9e-468a-bb41-eed6252b48a0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:377be51b-6f9e-468a-bb41-eed6252b48a0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "926923", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "7022", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -82122,31 +121773,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-763351763975225415676490", + "value" : "NO-876479343707965086240559", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:377be51b-6f9e-468a-bb41-eed6252b48a0", + "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5cf0de64-f33c-4657-8529-4d161c907012", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -82155,7 +121831,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -82380,7 +122074,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-763351763975225415676490", + "batteryIDDMCCode" : "NO-876479343707965086240559", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -82391,32 +122085,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:377be51b-6f9e-468a-bb41-eed6252b48a0", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-02-20", + "currentStateOfHealthTimestamp" : "2019-11-16", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-15", + "currentStateOfHealthTimestamp" : "2024-03-14", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -82425,74 +122145,424 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Coupé", - "catenaXId" : "urn:uuid:b00df8b5-7826-4b87-b0f6-7c1e4cc7b444", - "engine" : { - "size" : 2998, - "power" : 143 - }, - "emptyWeight" : 1.73, - "fuel" : "Elektro", - "vehicleModel" : "Vehicle Fully Electric", - "productionDateGMT" : "2010-01-01", - "equipmentVariants" : [ { - "code" : "C247R", - "description" : "trailer hitch", - "group" : "special equipment" - }, { - "code" : "S388C", - "description" : "security plus", - "group" : "special equipment" - }, { - "code" : "S763C", - "description" : "sport package", - "group" : "special equipment" - }, { - "code" : "S378B", - "description" : "integrated child seats", - "group" : "special equipment" - } ], - "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", - "mileage" : [ { - "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2019-03-19", - "mileageDistance" : 120000 + } ], + "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "623430", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "4536", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "catenaXId" : "urn:uuid:b00df8b5-7826-4b87-b0f6-7c1e4cc7b444", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "IM-15", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "OMBZXRFAHYAULNVEO", + "value" : "NO-724113540825337678971966", "key" : "partInstanceId" - }, { - "value" : "OMBZXRFAHYAULNVEO", - "key" : "van" } ], "manufacturingInformation" : { - "date" : "2014-12-04T21:04:41.000Z", - "country" : "DEU" + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:b00df8b5-7826-4b87-b0f6-7c1e4cc7b444", + "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", "partTypeInformation" : { - "manufacturerPartId" : "IM-15", - "classification" : "product", - "nameAtManufacturer" : "Vehicle Fully Electric" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:90b56fcc-07bc-4939-b0cc-c4a021760305", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 } } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-724113540825337678971966", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Iron", - "recycledContent" : 34, + "recycledContent" : 85, "materialClass" : "1.1", "quantity" : { "unit" : "unit:kilogram", @@ -82502,7 +122572,7 @@ "materialAbbreviation" : "IR334" }, { "materialName" : "Polyethylen", - "recycledContent" : 50, + "recycledContent" : 64, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -82512,7 +122582,7 @@ "materialAbbreviation" : "PE221" }, { "materialName" : "Polyamid6", - "recycledContent" : 6, + "recycledContent" : 24, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -82522,7 +122592,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Aluminium", - "recycledContent" : 89, + "recycledContent" : 68, "materialClass" : "2.1", "quantity" : { "unit" : "unit:kilogram", @@ -82532,7 +122602,7 @@ "materialAbbreviation" : "ALU331" }, { "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", - "recycledContent" : 73, + "recycledContent" : 23, "materialClass" : "0.7", "quantity" : { "unit" : "unit:kilogram", @@ -82542,7 +122612,7 @@ "materialAbbreviation" : "W123" }, { "materialName" : "Glue", - "recycledContent" : 10, + "recycledContent" : 29, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -82552,7 +122622,7 @@ "materialAbbreviation" : "GL338" }, { "materialName" : "Carbon Steel", - "recycledContent" : 51, + "recycledContent" : 57, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -82562,7 +122632,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Cooper", - "recycledContent" : 75, + "recycledContent" : 9, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -82572,7 +122642,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Rubber", - "recycledContent" : 51, + "recycledContent" : 65, "materialClass" : "5.3", "quantity" : { "unit" : "unit:kilogram", @@ -82582,7 +122652,7 @@ "materialAbbreviation" : "R22" }, { "materialName" : "Textiles", - "recycledContent" : 54, + "recycledContent" : 22, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:kilogram", @@ -82592,359 +122662,496 @@ "materialAbbreviation" : "TEX1" } ] } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b00df8b5-7826-4b87-b0f6-7c1e4cc7b444", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "childItems" : [ { - "catenaXId" : "urn:uuid:5cfaa6ab-885a-4b9d-9961-8471c51b070e", + "catenaXId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f509da35-bc5e-4f41-b6fe-2552fd601242", + "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:33681ca1-6a78-461b-8b1b-4398357ca97e", + "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:78eb4f68-7b1f-4934-bfd3-43af89f208eb", + "catenaXId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:62dd5e9a-cabf-4a04-9136-438643fb8fd4", + "catenaXId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c211481c-fef1-4925-a711-276822c14756", + "catenaXId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:626a4ece-05b5-467c-a7e0-f53ddb6f5b65", + "catenaXId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fd3bf365-915d-49fd-8bad-d5c3c3fef90f", + "catenaXId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:71fc0163-87b9-42eb-bae4-c3dfc58122fd", + "catenaXId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fd4bab1c-a68f-435a-ba53-03b8c016370f", + "catenaXId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:429c0a5e-4220-4a6f-8fec-164528d7df00", + "catenaXId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bbbf5c1b-a265-48f3-8c8d-aaf3e74a9445", + "catenaXId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1986239a-d534-46d4-9e3b-a4fe1eb7db01", + "catenaXId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:76803492-00fc-46aa-b2b6-5c07b7ee2296", + "catenaXId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:85425727-a59f-4758-9439-7cc61e95908e", + "catenaXId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b8366ee2-22f4-46c9-b18b-60bb55adbfb2", + "catenaXId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9a2a8a73-b219-4b52-a0d8-f8df725bc2cb", + "catenaXId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4ceff36e-3eb3-42fe-95ba-9e6d206dbc73", + "catenaXId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6d719c19-ea89-464e-89cf-8d272a5982a4", + "catenaXId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5ca8d794-f37b-495f-b9ab-df04eff787bc", + "catenaXId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:88dc98e4-aa46-4d75-a42d-716f3dff4372", + "catenaXId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3854833c-d04d-474c-904f-0872111a4640", + "catenaXId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a4d21f19-7f23-4611-888f-2e353bab0dbe", + "catenaXId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8b8c9fd2-ad22-47b9-9f99-6a431a9281a8", + "catenaXId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:91d9f0e4-a4a1-4653-95d2-3393c490d4a4", + "catenaXId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:86f1e6ed-0e47-4daf-8ea3-fe97b95a2303", + "catenaXId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5763a25a-787f-4fb2-9d62-f6e788c34821", + "catenaXId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:89b35152-a1d7-4b3c-9754-f7e801bddab0", + "catenaXId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c3f57e11-f0be-489a-b1b6-a8eef4c754a7", + "catenaXId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6fde01f0-5804-4898-a286-d0e629f45f2c", + "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6f6f13c3-49f0-4a47-89c0-4a0dd33b9b9b", + "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B5MJ", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2ce2710e-dad8-48d5-add4-f18746f196aa", + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ], + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "XH-93", + "key" : "manufacturerPartId" + }, { + "value" : "OMALJMMEXIGNTJZQM", + "key" : "partInstanceId" + }, { + "value" : "OMALJMMEXIGNTJZQM", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2016-03-06T12:29:16.000Z", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "partTypeInformation" : { + "manufacturerPartId" : "XH-93", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Vehicle Fully Electric" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Mehrzweckfahrzeug", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "engine" : { + "size" : 2998, + "power" : 143 + }, + "emptyWeight" : 1.73, + "fuel" : "Elektro", + "vehicleModel" : "Vehicle Fully Electric", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "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" + }, { + "code" : "C247R", + "description" : "trailer hitch", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2023-10-09", + "mileageDistance" : 120000 + } ] } ] }, { - "catenaXId" : "urn:uuid:5cfaa6ab-885a-4b9d-9961-8471c51b070e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5cfaa6ab-885a-4b9d-9961-8471c51b070e", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "catenaXId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "885363", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "3294", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "73849201-61", "key" : "manufacturerPartId" }, { - "value" : "NO-446449706311745210346653", + "value" : "NO-131732937300126776815176", "key" : "partInstanceId" }, { "value" : "Company 10", @@ -82955,25 +123162,55 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:5cfaa6ab-885a-4b9d-9961-8471c51b070e", + "catenaXId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", "partTypeInformation" : { "manufacturerPartId" : "73849201-61", "customerPartId" : "73849201-61", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Catalysator", "nameAtCustomer" : "Catalysator" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", + "partTypeInformation" : { + "ownerPartId" : "73849201-61", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Catalysator", + "partClassification" : [ { + "value" : "Catalysator", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Catalysator" } - } ] - }, { - "catenaXId" : "urn:uuid:f509da35-bc5e-4f41-b6fe-2552fd601242", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f509da35-bc5e-4f41-b6fe-2552fd601242", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -82984,9 +123221,90 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "childItems" : [ { + "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000000BJTL", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "669818", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "3527", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003CSGV", "key" : "manufacturerId" @@ -82994,7 +123312,7 @@ "value" : "22782277-50", "key" : "manufacturerPartId" }, { - "value" : "NO-745656253564398416395728", + "value" : "NO-797084545053066023664316", "key" : "partInstanceId" }, { "value" : "Company 3", @@ -83005,39 +123323,74 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:f509da35-bc5e-4f41-b6fe-2552fd601242", + "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", "partTypeInformation" : { "manufacturerPartId" : "22782277-50", "customerPartId" : "22782277-50", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door f-l", "nameAtCustomer" : "Door front-left" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f509da35-bc5e-4f41-b6fe-2552fd601242", + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { - "catenaXId" : "urn:uuid:cab708a5-3076-4ed6-8ffc-a8ec5caa6629", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "item" : [ { + "itemClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:64b5d052-0bbf-42d3-81a9-bf7e0e8d76b7", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] - } ] - }, { - "catenaXId" : "urn:uuid:cab708a5-3076-4ed6-8ffc-a8ec5caa6629", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cab708a5-3076-4ed6-8ffc-a8ec5caa6629", + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "partTypeInformation" : { + "ownerPartId" : "22782277-50", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Door front-left", + "partClassification" : [ { + "value" : "Door front-left", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "nameAtOwner" : "Door front-left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003CSGV", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -83048,9 +123401,102 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { + "localIdentifiers" : [ { + "value" : "76426224RGI", + "key" : "jisNumber" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000000BJTL", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-3434-A", + "customerPartId" : "PRT-12345", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "side element A" + } } ], + "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "171827", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "1908", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000000BJTL", "key" : "manufacturerId" @@ -83058,48 +123504,60 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-017376249312912942426498", + "value" : "NO-529712629956906801236711", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:cab708a5-3076-4ed6-8ffc-a8ec5caa6629", + "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door Key", "nameAtCustomer" : "Door Key" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "29320237VSN", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "manufacturerId" : "BPNL00000000BJTL", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:cab708a5-3076-4ed6-8ffc-a8ec5caa6629", + "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" + "ownerPartId" : "95657762-59", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Door Key", + "partClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000000BJTL:PartFamily" + } ], + "nameAtOwner" : "Door Key" } - } ] - }, { - "catenaXId" : "urn:uuid:33681ca1-6a78-461b-8b1b-4398357ca97e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:33681ca1-6a78-461b-8b1b-4398357ca97e", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000000BJTL", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -83110,9 +123568,90 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "childItems" : [ { + "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000000BJTL", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "746375", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "3597", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003CSGV", "key" : "manufacturerId" @@ -83120,7 +123659,7 @@ "value" : "95657362-64", "key" : "manufacturerPartId" }, { - "value" : "NO-792138895528607990110566", + "value" : "NO-864754207488573774479092", "key" : "partInstanceId" }, { "value" : "Company 4", @@ -83131,39 +123670,74 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:33681ca1-6a78-461b-8b1b-4398357ca97e", + "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", "partTypeInformation" : { "manufacturerPartId" : "33740332-54", "customerPartId" : "33740332-54", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door f-r", "nameAtCustomer" : "Door front-right" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:33681ca1-6a78-461b-8b1b-4398357ca97e", + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { - "catenaXId" : "urn:uuid:4ef157bb-a73b-4a65-a72b-89bf3311880f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "item" : [ { + "itemClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:17a27633-730c-4aba-a8f9-ebfaaa3ca92a", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] - } ] - }, { - "catenaXId" : "urn:uuid:4ef157bb-a73b-4a65-a72b-89bf3311880f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4ef157bb-a73b-4a65-a72b-89bf3311880f", + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "partTypeInformation" : { + "ownerPartId" : "33740332-54", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Door front-right", + "partClassification" : [ { + "value" : "Door front-right", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "nameAtOwner" : "Door front-right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003CSGV", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -83174,9 +123748,102 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { + "localIdentifiers" : [ { + "value" : "26807698BLW", + "key" : "jisNumber" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000000BJTL", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-3434-A", + "customerPartId" : "PRT-12345", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "side element A" + } } ], + "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "928025", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "8284", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000000BJTL", "key" : "manufacturerId" @@ -83184,48 +123851,60 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-200341331097856940638916", + "value" : "NO-827581289882481230478999", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:4ef157bb-a73b-4a65-a72b-89bf3311880f", + "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door Key", "nameAtCustomer" : "Door Key" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "50097633HAS", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "manufacturerId" : "BPNL00000000BJTL", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:4ef157bb-a73b-4a65-a72b-89bf3311880f", + "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" + "ownerPartId" : "95657762-59", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Door Key", + "partClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000000BJTL:PartFamily" + } ], + "nameAtOwner" : "Door Key" } - } ] - }, { - "catenaXId" : "urn:uuid:78eb4f68-7b1f-4934-bfd3-43af89f208eb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:78eb4f68-7b1f-4934-bfd3-43af89f208eb", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", "customers" : [ { - "businessPartner" : false, + "businessPartner" : "BPNL00000000BJTL", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -83236,40 +123915,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "519156", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "4527", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "15635759-16", "key" : "manufacturerPartId" }, { - "value" : "NO-888461415179154707300383", + "value" : "NO-406065790934879225608594", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:78eb4f68-7b1f-4934-bfd3-43af89f208eb", + "catenaXId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", "partTypeInformation" : { "manufacturerPartId" : "15635759-16", "customerPartId" : "15635759-16", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door r-l", "nameAtCustomer" : "Door rear-left" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", + "partTypeInformation" : { + "ownerPartId" : "15635759-16", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Door rear-left", + "partClassification" : [ { + "value" : "Door rear-left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Door rear-left" } - } ] - }, { - "catenaXId" : "urn:uuid:62dd5e9a-cabf-4a04-9136-438643fb8fd4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:62dd5e9a-cabf-4a04-9136-438643fb8fd4", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -83280,17 +124056,84 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "39570", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 9 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9104", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "28673126-98", "key" : "manufacturerPartId" }, { - "value" : "NO-989159072297739281428932", + "value" : "NO-796167989573498912686635", "key" : "partInstanceId" }, { "value" : "Company 5", @@ -83301,25 +124144,55 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:62dd5e9a-cabf-4a04-9136-438643fb8fd4", + "catenaXId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", "partTypeInformation" : { "manufacturerPartId" : "28673126-98", "customerPartId" : "28673126-98", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door r-r", "nameAtCustomer" : "Door rear-right" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", + "partTypeInformation" : { + "ownerPartId" : "28673126-98", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Door rear-right", + "partClassification" : [ { + "value" : "Door rear-right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Door rear-right" } - } ] - }, { - "catenaXId" : "urn:uuid:c211481c-fef1-4925-a711-276822c14756", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c211481c-fef1-4925-a711-276822c14756", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -83330,17 +124203,84 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "273750", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "5752", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "94421589-82", "key" : "manufacturerPartId" }, { - "value" : "NO-348475009956099539409686", + "value" : "NO-388537891916977013611943", "key" : "partInstanceId" }, { "value" : "Company 6", @@ -83351,25 +124291,55 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:c211481c-fef1-4925-a711-276822c14756", + "catenaXId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", "partTypeInformation" : { "manufacturerPartId" : "94421589-82", "customerPartId" : "94421589-82", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Engine hood", "nameAtCustomer" : "Engine hood" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", + "partTypeInformation" : { + "ownerPartId" : "94421589-82", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Engine hood", + "partClassification" : [ { + "value" : "Engine hood", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Engine hood" } - } ] - }, { - "catenaXId" : "urn:uuid:626a4ece-05b5-467c-a7e0-f53ddb6f5b65", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:626a4ece-05b5-467c-a7e0-f53ddb6f5b65", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -83380,40 +124350,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "42825", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "1379", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "85023955-75", "key" : "manufacturerPartId" }, { - "value" : "NO-745452028421111543732013", + "value" : "NO-857004458075736523524597", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:626a4ece-05b5-467c-a7e0-f53ddb6f5b65", + "catenaXId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", "partTypeInformation" : { "manufacturerPartId" : "85023955-75", "customerPartId" : "85023955-75", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Tailgate", "nameAtCustomer" : "Tailgate" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", + "partTypeInformation" : { + "ownerPartId" : "85023955-75", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Tailgate", + "partClassification" : [ { + "value" : "Tailgate", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Tailgate" } - } ] - }, { - "catenaXId" : "urn:uuid:fd3bf365-915d-49fd-8bad-d5c3c3fef90f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fd3bf365-915d-49fd-8bad-d5c3c3fef90f", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -83424,40 +124491,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "657696", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "6767", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "13769860-47", "key" : "manufacturerPartId" }, { - "value" : "NO-694509029867017877024262", + "value" : "NO-957399938211976692050930", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:fd3bf365-915d-49fd-8bad-d5c3c3fef90f", + "catenaXId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", "partTypeInformation" : { "manufacturerPartId" : "13769860-47", "customerPartId" : "13769860-47", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Fender left", "nameAtCustomer" : "Fender right" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", + "partTypeInformation" : { + "ownerPartId" : "13769860-47", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Fender right", + "partClassification" : [ { + "value" : "Fender right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Fender right" } - } ] - }, { - "catenaXId" : "urn:uuid:71fc0163-87b9-42eb-bae4-c3dfc58122fd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:71fc0163-87b9-42eb-bae4-c3dfc58122fd", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -83468,40 +124632,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "434372", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "9366", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "36643162-35", "key" : "manufacturerPartId" }, { - "value" : "NO-270011691776097090825904", + "value" : "NO-827857791188817306605242", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:71fc0163-87b9-42eb-bae4-c3dfc58122fd", + "catenaXId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", "partTypeInformation" : { "manufacturerPartId" : "36643162-35", "customerPartId" : "36643162-35", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Fender right", "nameAtCustomer" : "Fender right" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", + "partTypeInformation" : { + "ownerPartId" : "36643162-35", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Fender right", + "partClassification" : [ { + "value" : "Fender right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Fender right" } - } ] - }, { - "catenaXId" : "urn:uuid:fd4bab1c-a68f-435a-ba53-03b8c016370f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fd4bab1c-a68f-435a-ba53-03b8c016370f", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -83512,40 +124773,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "973698", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "7475", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "54165444-59", "key" : "manufacturerPartId" }, { - "value" : "NO-996126396127333289745995", + "value" : "NO-183355004442600440398895", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:fd4bab1c-a68f-435a-ba53-03b8c016370f", + "catenaXId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", "partTypeInformation" : { "manufacturerPartId" : "54165444-59", "customerPartId" : "54165444-59", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Bumper front", "nameAtCustomer" : "Bumper front" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", + "partTypeInformation" : { + "ownerPartId" : "54165444-59", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Bumper front", + "partClassification" : [ { + "value" : "Bumper front", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Bumper front" } - } ] - }, { - "catenaXId" : "urn:uuid:429c0a5e-4220-4a6f-8fec-164528d7df00", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:429c0a5e-4220-4a6f-8fec-164528d7df00", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -83556,40 +124914,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "736137", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "1274", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "22768257-25", "key" : "manufacturerPartId" }, { - "value" : "NO-249406967650221666218347", + "value" : "NO-139283692052251878287186", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:429c0a5e-4220-4a6f-8fec-164528d7df00", + "catenaXId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", "partTypeInformation" : { "manufacturerPartId" : "22768257-25", "customerPartId" : "22768257-25", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Bumper rear", "nameAtCustomer" : "Bumper rear" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", + "partTypeInformation" : { + "ownerPartId" : "22768257-25", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Bumper rear", + "partClassification" : [ { + "value" : "Bumper rear", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Bumper rear" } - } ] - }, { - "catenaXId" : "urn:uuid:bbbf5c1b-a265-48f3-8c8d-aaf3e74a9445", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bbbf5c1b-a265-48f3-8c8d-aaf3e74a9445", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -83600,40 +125055,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "527263", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "3530", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "65529521-37", "key" : "manufacturerPartId" }, { - "value" : "NO-835466183025334180518494", + "value" : "NO-953346655646650556865701", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:bbbf5c1b-a265-48f3-8c8d-aaf3e74a9445", + "catenaXId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", "partTypeInformation" : { "manufacturerPartId" : "65529521-37", "customerPartId" : "65529521-37", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Exterior mirror left", "nameAtCustomer" : "Exterior mirror left" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", + "partTypeInformation" : { + "ownerPartId" : "65529521-37", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Exterior mirror left", + "partClassification" : [ { + "value" : "Exterior mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Exterior mirror left" } - } ] - }, { - "catenaXId" : "urn:uuid:1986239a-d534-46d4-9e3b-a4fe1eb7db01", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1986239a-d534-46d4-9e3b-a4fe1eb7db01", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -83644,40 +125196,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "343957", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "6339", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "58471477-24", "key" : "manufacturerPartId" }, { - "value" : "NO-736200937055794230814766", + "value" : "NO-844308332835266576477207", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:1986239a-d534-46d4-9e3b-a4fe1eb7db01", + "catenaXId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", "partTypeInformation" : { "manufacturerPartId" : "58471477-24", "customerPartId" : "58471477-24", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Exterior mirror right", "nameAtCustomer" : "Exterior mirror right" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", + "partTypeInformation" : { + "ownerPartId" : "58471477-24", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Exterior mirror right", + "partClassification" : [ { + "value" : "Exterior mirror right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Exterior mirror right" } - } ] - }, { - "catenaXId" : "urn:uuid:76803492-00fc-46aa-b2b6-5c07b7ee2296", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:76803492-00fc-46aa-b2b6-5c07b7ee2296", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -83688,40 +125337,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "574423", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "2476", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "09002013-68", "key" : "manufacturerPartId" }, { - "value" : "NO-982993113368704340643851", + "value" : "NO-255262622365556582484075", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:76803492-00fc-46aa-b2b6-5c07b7ee2296", + "catenaXId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", "partTypeInformation" : { "manufacturerPartId" : "09002013-68", "customerPartId" : "09002013-68", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Trailer coupling", "nameAtCustomer" : "Tailer coupling" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", + "partTypeInformation" : { + "ownerPartId" : "09002013-68", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Tailer coupling", + "partClassification" : [ { + "value" : "Tailer coupling", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Tailer coupling" } - } ] - }, { - "catenaXId" : "urn:uuid:85425727-a59f-4758-9439-7cc61e95908e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:85425727-a59f-4758-9439-7cc61e95908e", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -83732,40 +125478,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "690660", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "3813", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "43501996-98", "key" : "manufacturerPartId" }, { - "value" : "NO-581850084672309909599079", + "value" : "NO-214622233852735436570638", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:85425727-a59f-4758-9439-7cc61e95908e", + "catenaXId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", "partTypeInformation" : { "manufacturerPartId" : "43501996-98", "customerPartId" : "43501996-98", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Dashboard", "nameAtCustomer" : "Dashboard" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", + "partTypeInformation" : { + "ownerPartId" : "43501996-98", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Dashboard", + "partClassification" : [ { + "value" : "Dashboard", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Dashboard" } - } ] - }, { - "catenaXId" : "urn:uuid:b8366ee2-22f4-46c9-b18b-60bb55adbfb2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b8366ee2-22f4-46c9-b18b-60bb55adbfb2", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -83776,40 +125619,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "349639", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "4929", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "77795937-13", "key" : "manufacturerPartId" }, { - "value" : "NO-240008005598499299526745", + "value" : "NO-842938359590063280117347", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:b8366ee2-22f4-46c9-b18b-60bb55adbfb2", + "catenaXId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", "partTypeInformation" : { "manufacturerPartId" : "77795937-13", "customerPartId" : "77795937-13", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Steering wheel", "nameAtCustomer" : "Steering wheel" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", + "partTypeInformation" : { + "ownerPartId" : "77795937-13", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Steering wheel", + "partClassification" : [ { + "value" : "Steering wheel", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Steering wheel" } - } ] - }, { - "catenaXId" : "urn:uuid:9a2a8a73-b219-4b52-a0d8-f8df725bc2cb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9a2a8a73-b219-4b52-a0d8-f8df725bc2cb", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -83820,40 +125760,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "473361", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "9106", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "20125432-59", "key" : "manufacturerPartId" }, { - "value" : "NO-311755676796407863825214", + "value" : "NO-644622011883694931091746", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:9a2a8a73-b219-4b52-a0d8-f8df725bc2cb", + "catenaXId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", "partTypeInformation" : { "manufacturerPartId" : "20125432-59", "customerPartId" : "20125432-59", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Indicator left", "nameAtCustomer" : "Indicator left" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", + "partTypeInformation" : { + "ownerPartId" : "20125432-59", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Indicator left", + "partClassification" : [ { + "value" : "Indicator left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Indicator left" } - } ] - }, { - "catenaXId" : "urn:uuid:4ceff36e-3eb3-42fe-95ba-9e6d206dbc73", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4ceff36e-3eb3-42fe-95ba-9e6d206dbc73", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -83864,40 +125901,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "947011", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 24 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "4435", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "19073706-76", "key" : "manufacturerPartId" }, { - "value" : "NO-784859366219408895978499", + "value" : "NO-039873956461761228319899", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:4ceff36e-3eb3-42fe-95ba-9e6d206dbc73", + "catenaXId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", "partTypeInformation" : { "manufacturerPartId" : "19073706-76", "customerPartId" : "19073706-76", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Indicator right", "nameAtCustomer" : "Indicator right" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", + "partTypeInformation" : { + "ownerPartId" : "19073706-76", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Indicator right", + "partClassification" : [ { + "value" : "Indicator right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Indicator right" } - } ] - }, { - "catenaXId" : "urn:uuid:6d719c19-ea89-464e-89cf-8d272a5982a4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6d719c19-ea89-464e-89cf-8d272a5982a4", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -83908,40 +126042,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "884392", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "8046", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "45415162-57", "key" : "manufacturerPartId" }, { - "value" : "NO-827285041208258116982647", + "value" : "NO-465941145566936814653478", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:6d719c19-ea89-464e-89cf-8d272a5982a4", + "catenaXId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", "partTypeInformation" : { "manufacturerPartId" : "45415162-57", "customerPartId" : "45415162-57", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Led headlight", "nameAtCustomer" : "Led headlight" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", + "partTypeInformation" : { + "ownerPartId" : "45415162-57", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Led headlight", + "partClassification" : [ { + "value" : "Led headlight", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Led headlight" } - } ] - }, { - "catenaXId" : "urn:uuid:5ca8d794-f37b-495f-b9ab-df04eff787bc", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5ca8d794-f37b-495f-b9ab-df04eff787bc", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -83952,40 +126183,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "998607", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 23 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "8657", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "78141846-87", "key" : "manufacturerPartId" }, { - "value" : "NO-280745504022211142864608", + "value" : "NO-839773269783048448130319", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:5ca8d794-f37b-495f-b9ab-df04eff787bc", + "catenaXId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", "partTypeInformation" : { "manufacturerPartId" : "78141846-87", "customerPartId" : "78141846-87", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Starter motor", "nameAtCustomer" : "Starter motor" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", + "partTypeInformation" : { + "ownerPartId" : "78141846-87", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Starter motor", + "partClassification" : [ { + "value" : "Starter motor", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Starter motor" } - } ] - }, { - "catenaXId" : "urn:uuid:88dc98e4-aa46-4d75-a42d-716f3dff4372", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:88dc98e4-aa46-4d75-a42d-716f3dff4372", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -83996,40 +126324,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "893422", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "3955", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "81324139-23", "key" : "manufacturerPartId" }, { - "value" : "NO-935203578994375487715726", + "value" : "NO-420904072316887872619111", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:88dc98e4-aa46-4d75-a42d-716f3dff4372", + "catenaXId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", "partTypeInformation" : { "manufacturerPartId" : "81324139-23", "customerPartId" : "81324139-23", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Alternator", "nameAtCustomer" : "Alternator" - } - } ] - }, { - "catenaXId" : "urn:uuid:3854833c-d04d-474c-904f-0872111a4640", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3854833c-d04d-474c-904f-0872111a4640", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", + "partTypeInformation" : { + "ownerPartId" : "81324139-23", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Alternator", + "partClassification" : [ { + "value" : "Alternator", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Alternator" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -84040,40 +126465,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "675466", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "8025", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "57929013-09", "key" : "manufacturerPartId" }, { - "value" : "NO-204925667001369524976375", + "value" : "NO-424790817498696449441638", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:3854833c-d04d-474c-904f-0872111a4640", + "catenaXId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", "partTypeInformation" : { "manufacturerPartId" : "57929013-09", "customerPartId" : "57929013-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "AC compressor", "nameAtCustomer" : "Air conditioning compressor" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", + "partTypeInformation" : { + "ownerPartId" : "57929013-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Air conditioning compressor", + "partClassification" : [ { + "value" : "Air conditioning compressor", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Air conditioning compressor" } - } ] - }, { - "catenaXId" : "urn:uuid:a4d21f19-7f23-4611-888f-2e353bab0dbe", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a4d21f19-7f23-4611-888f-2e353bab0dbe", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -84084,40 +126606,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "286636", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "7871", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "61184040-23", "key" : "manufacturerPartId" }, { - "value" : "NO-570385822349420821939261", + "value" : "NO-875900226307888871498847", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a4d21f19-7f23-4611-888f-2e353bab0dbe", + "catenaXId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", "partTypeInformation" : { "manufacturerPartId" : "61184040-23", "customerPartId" : "61184040-23", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Taillight rear", "nameAtCustomer" : "Taillight rear" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", + "partTypeInformation" : { + "ownerPartId" : "61184040-23", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Taillight rear", + "partClassification" : [ { + "value" : "Taillight rear", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Taillight rear" } - } ] - }, { - "catenaXId" : "urn:uuid:8b8c9fd2-ad22-47b9-9f99-6a431a9281a8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8b8c9fd2-ad22-47b9-9f99-6a431a9281a8", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -84128,40 +126747,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "424622", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "1932", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "78744126-74", "key" : "manufacturerPartId" }, { - "value" : "NO-713897425117332291584088", + "value" : "NO-322885601135436788460719", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:8b8c9fd2-ad22-47b9-9f99-6a431a9281a8", + "catenaXId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", "partTypeInformation" : { "manufacturerPartId" : "78744126-74", "customerPartId" : "78744126-74", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Taillight front", "nameAtCustomer" : "Taillight front" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", + "partTypeInformation" : { + "ownerPartId" : "78744126-74", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Taillight front", + "partClassification" : [ { + "value" : "Taillight front", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Taillight front" } - } ] - }, { - "catenaXId" : "urn:uuid:91d9f0e4-a4a1-4653-95d2-3393c490d4a4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:91d9f0e4-a4a1-4653-95d2-3393c490d4a4", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -84172,40 +126888,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "980587", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "1137", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "12093297-03", "key" : "manufacturerPartId" }, { - "value" : "NO-178670942219497817699128", + "value" : "NO-095583662686007569223747", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:91d9f0e4-a4a1-4653-95d2-3393c490d4a4", + "catenaXId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", "partTypeInformation" : { "manufacturerPartId" : "12093297-03", "customerPartId" : "12093297-03", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Axle part front", "nameAtCustomer" : "Axle part front" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", + "partTypeInformation" : { + "ownerPartId" : "12093297-03", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Axle part front", + "partClassification" : [ { + "value" : "Axle part front", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Axle part front" } - } ] - }, { - "catenaXId" : "urn:uuid:86f1e6ed-0e47-4daf-8ea3-fe97b95a2303", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:86f1e6ed-0e47-4daf-8ea3-fe97b95a2303", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -84216,40 +127029,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "396639", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "5176", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "88111709-49", "key" : "manufacturerPartId" }, { - "value" : "NO-886986510999332343035865", + "value" : "NO-360068828389685342134227", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:86f1e6ed-0e47-4daf-8ea3-fe97b95a2303", + "catenaXId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", "partTypeInformation" : { "manufacturerPartId" : "88111709-49", "customerPartId" : "88111709-49", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Axle part rear", "nameAtCustomer" : "Axle part rear" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", + "partTypeInformation" : { + "ownerPartId" : "88111709-49", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Axle part rear", + "partClassification" : [ { + "value" : "Axle part rear", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Axle part rear" } - } ] - }, { - "catenaXId" : "urn:uuid:5763a25a-787f-4fb2-9d62-f6e788c34821", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5763a25a-787f-4fb2-9d62-f6e788c34821", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -84260,40 +127170,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "723657", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "1030", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "00871379-44", "key" : "manufacturerPartId" }, { - "value" : "NO-790144551916070067139108", + "value" : "NO-635693250173819121828510", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:5763a25a-787f-4fb2-9d62-f6e788c34821", + "catenaXId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", "partTypeInformation" : { "manufacturerPartId" : "00871379-44", "customerPartId" : "00871379-44", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Chassis", "nameAtCustomer" : "Chassis" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", + "partTypeInformation" : { + "ownerPartId" : "00871379-44", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Chassis", + "partClassification" : [ { + "value" : "Chassis", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Chassis" } - } ] - }, { - "catenaXId" : "urn:uuid:89b35152-a1d7-4b3c-9754-f7e801bddab0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:89b35152-a1d7-4b3c-9754-f7e801bddab0", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -84304,40 +127311,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "375771", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "6470", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "08901347-87", "key" : "manufacturerPartId" }, { - "value" : "NO-465062426579873429692876", + "value" : "NO-083480373139670709044407", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:89b35152-a1d7-4b3c-9754-f7e801bddab0", + "catenaXId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", "partTypeInformation" : { "manufacturerPartId" : "08901347-87", "customerPartId" : "08901347-87", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Rims", "nameAtCustomer" : "Rims" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", + "partTypeInformation" : { + "ownerPartId" : "08901347-87", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Rims", + "partClassification" : [ { + "value" : "Rims", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Rims" } - } ] - }, { - "catenaXId" : "urn:uuid:c3f57e11-f0be-489a-b1b6-a8eef4c754a7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c3f57e11-f0be-489a-b1b6-a8eef4c754a7", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -84348,40 +127452,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "753648", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 27 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2434", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "45863316-60", "key" : "manufacturerPartId" }, { - "value" : "NO-914193803934178651755455", + "value" : "NO-665173854732642413380781", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:c3f57e11-f0be-489a-b1b6-a8eef4c754a7", + "catenaXId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", "partTypeInformation" : { "manufacturerPartId" : "45863316-60", "customerPartId" : "45863316-60", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Tires", "nameAtCustomer" : "Tires" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", + "partTypeInformation" : { + "ownerPartId" : "45863316-60", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Tires", + "partClassification" : [ { + "value" : "Tires", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Tires" } - } ] - }, { - "catenaXId" : "urn:uuid:6fde01f0-5804-4898-a286-d0e629f45f2c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6fde01f0-5804-4898-a286-d0e629f45f2c", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -84392,17 +127593,151 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 32, + "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" : 40, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "childItems" : [ { + "catenaXId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B3NX", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", "bpnl" : "BPNL00000003B2OM", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "785054", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "4763", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003B2OM", "key" : "manufacturerId" }, { - "value" : "1O222E8-43", + "value" : "42555H1-52", "key" : "manufacturerPartId" }, { - "value" : "NO-828606196433566153104622", + "value" : "NO-297862023737110452281832", "key" : "partInstanceId" }, { "value" : "Company 2", @@ -84413,18 +127748,116 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B2OM", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:6fde01f0-5804-4898-a286-d0e629f45f2c", + "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", "partTypeInformation" : { - "manufacturerPartId" : "1O222E8-43", - "customerPartId" : "1O222E8-43", - "classification" : "component", + "manufacturerPartId" : "42555H1-52", + "customerPartId" : "42555H1-52", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Transmission", "nameAtCustomer" : "Transmission" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "manufacturerId" : "BPNL00000003B2OM", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4704d750-a40f-4331-a8c5-174d71599841", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8f716038-19c3-4db9-9cea-040c6ba48f0f", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1d4ee559-402d-4274-99d5-4ad3c13b72d2", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "partTypeInformation" : { + "ownerPartId" : "42555H1-52", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Transmission", + "partClassification" : [ { + "value" : "Transmission", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "nameAtOwner" : "Transmission" } } ], - "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "urn:samm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { "productSpecificParameters" : { "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], "driveType" : "combustion engine", @@ -84465,10 +127898,10 @@ "documentTitle" : "Title A" } ] }, - "catenaXId" : "urn:uuid:6fde01f0-5804-4898-a286-d0e629f45f2c", + "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", "identification" : { "localIdentifiers" : [ { - "value" : "NO-828606196433566153104622", + "value" : "NO-297862023737110452281832", "key" : "PartInstanceID" } ], "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", @@ -84534,109 +127967,12 @@ "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] } } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "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" : 49, - "materialClass" : "9.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 6.9 - }, - "aggregateState" : "liquid", - "materialAbbreviation" : "SAE40" - }, { - "materialName" : "Copper", - "recycledContent" : 88, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6fde01f0-5804-4898-a286-d0e629f45f2c", - "childItems" : [ { - "catenaXId" : "urn:uuid:7b3dac25-b198-4224-b0db-f13344f6ab3f", - "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:14737792-eb28-487c-90a9-ef010217b9f4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:76e39cfb-befc-437b-8e81-3b551bfba0ac", - "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:7b3dac25-b198-4224-b0db-f13344f6ab3f", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:7b3dac25-b198-4224-b0db-f13344f6ab3f", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7b3dac25-b198-4224-b0db-f13344f6ab3f", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003B2OM", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -84647,14 +127983,14 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "Engineering Plastics", "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 63, + "recycledContent" : 49, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -84664,7 +128000,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 3, + "recycledContent" : 44, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -84673,15 +128009,128 @@ "aggregateState" : "solid", "materialAbbreviation" : "GF30" } ] - } ] - }, { - "catenaXId" : "urn:uuid:14737792-eb28-487c-90a9-ef010217b9f4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:14737792-eb28-487c-90a9-ef010217b9f4", + } ], + "catenaXId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "909034", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1177", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "partTypeInformation" : { + "manufacturerPartId" : "WZ-57", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", "customers" : [ { "businessPartner" : "BPNL00000003B0Q0", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -84692,74 +128141,188 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "childItems" : [ { + "catenaXId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "675120", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "4961", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "12623M4-85", + "value" : "20713L6-02", "key" : "manufacturerPartId" }, { - "value" : "NO-275850774116008355937349", + "value" : "NO-599077453926031454448409", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:14737792-eb28-487c-90a9-ef010217b9f4", + "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", "partTypeInformation" : { - "manufacturerPartId" : "12623M4-85", - "customerPartId" : "12623M4-85", - "classification" : "component", + "manufacturerPartId" : "20713L6-02", + "customerPartId" : "20713L6-02", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:14737792-eb28-487c-90a9-ef010217b9f4", + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { - "catenaXId" : "urn:uuid:de76a784-aa05-4ee4-8058-023e273a3630", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d85fce44-58aa-4a49-967b-534ffa3e0ab8", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] - } ] - }, { - "catenaXId" : "urn:uuid:de76a784-aa05-4ee4-8058-023e273a3630", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:de76a784-aa05-4ee4-8058-023e273a3630", + "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "NTIER Product" + "ownerPartId" : "20713L6-02", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Sensor", + "partClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "nameAtOwner" : "Sensor" } } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "customers" : [ { + "businessPartner" : "BPNL00000003B3NX", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "NTIER Product", "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 6, + "recycledContent" : 32, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -84769,7 +128332,7 @@ "materialAbbreviation" : "" }, { "materialName" : "Other", - "recycledContent" : 61, + "recycledContent" : 66, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -84778,34 +128341,128 @@ "aggregateState" : "solid", "materialAbbreviation" : "" } ] - } ] - }, { - "catenaXId" : "urn:uuid:76e39cfb-befc-437b-8e81-3b551bfba0ac", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { + } ], + "catenaXId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "576400", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "4682", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", + "value" : "BPNL00000003B0Q0", "key" : "batchId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:76e39cfb-befc-437b-8e81-3b551bfba0ac", + "catenaXId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" + "manufacturerPartId" : "WN-36", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" } } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:76e39cfb-befc-437b-8e81-3b551bfba0ac", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003B0Q0", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -84816,9 +128473,13 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "childItems" : [ ] } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Glue", "materialClass" : "6.2", @@ -84830,18 +128491,127 @@ "materialAbbreviation" : "GL338" } ] } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:76e39cfb-befc-437b-8e81-3b551bfba0ac", + "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "330135", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "4981", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] - } ] - }, { - "catenaXId" : "urn:uuid:6f6f13c3-49f0-4a47-89c0-4a0dd33b9b9b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6f6f13c3-49f0-4a47-89c0-4a0dd33b9b9b", + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "partTypeInformation" : { + "manufacturerPartId" : "IH-58", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AXS3", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -84852,36 +128622,12 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003B5MJ", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", - "key" : "manufacturerId" - }, { - "value" : "87003J2-21", - "key" : "manufacturerPartId" - }, { - "value" : "NO-901853650301956132926120", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6f6f13c3-49f0-4a47-89c0-4a0dd33b9b9b", - "partTypeInformation" : { - "manufacturerPartId" : "87003J2-21", - "customerPartId" : "87003J2-21", - "classification" : "component", - "nameAtManufacturer" : "ECU", - "nameAtCustomer" : "ECU" - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Glue", - "recycledContent" : 52, + "recycledContent" : 4, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -84891,67 +128637,226 @@ "materialAbbreviation" : "GL338" } ] } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6f6f13c3-49f0-4a47-89c0-4a0dd33b9b9b", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", "childItems" : [ { - "catenaXId" : "urn:uuid:9fa725bd-94e2-4ae7-9a4e-3dc9e4496d2d", + "catenaXId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", "quantity" : { "quantityNumber" : 0.3301, "measurementUnit" : "unit:kilogram" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1fe7e541-edea-43ec-ae6d-3470ff3c8869", + "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b2232e22-ed7f-43bf-a3ce-f38155a4d076", + "catenaXId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", "quantity" : { "quantityNumber" : 0.2001, "measurementUnit" : "unit:kilogram" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:9fa725bd-94e2-4ae7-9a4e-3dc9e4496d2d", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { + } ], + "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "bpnl" : "BPNL00000003B5MJ", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "614008", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "7710", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", + "value" : "BPNL00000003B5MJ", "key" : "manufacturerId" }, { - "value" : "BID12345678", - "key" : "batchId" + "value" : "93096K5-94", + "key" : "manufacturerPartId" + }, { + "value" : "NO-059518126168909770052269", + "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B5MJ", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:9fa725bd-94e2-4ae7-9a4e-3dc9e4496d2d", + "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" + "manufacturerPartId" : "93096K5-94", + "customerPartId" : "93096K5-94", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "manufacturerId" : "BPNL00000003B5MJ", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:aa89581e-15e5-4672-ba57-ce2902df6b4c", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2133329a-1931-4197-927a-07d2672252e5", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:83990e87-ed0d-4ebe-9bf8-33523d57bad6", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "partTypeInformation" : { + "ownerPartId" : "93096K5-94", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ECU", + "partClassification" : [ { + "value" : "ECU", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "nameAtOwner" : "ECU" } } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9fa725bd-94e2-4ae7-9a4e-3dc9e4496d2d", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", "customers" : [ { "businessPartner" : "BPNL00000003B5MJ", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -84962,14 +128867,14 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "Glue", "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 41, + "recycledContent" : 48, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -84979,7 +128884,7 @@ "materialAbbreviation" : "AL7" }, { "materialName" : "Other", - "recycledContent" : 89, + "recycledContent" : 68, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -84988,15 +128893,128 @@ "aggregateState" : "solid", "materialAbbreviation" : "" } ] - } ] - }, { - "catenaXId" : "urn:uuid:1fe7e541-edea-43ec-ae6d-3470ff3c8869", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1fe7e541-edea-43ec-ae6d-3470ff3c8869", + } ], + "catenaXId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "767035", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "9969", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "manufacturerId" : "BPNL00000003AXS3", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "partTypeInformation" : { + "manufacturerPartId" : "IJ-97", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AXS3", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -85007,74 +129025,188 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "childItems" : [ { + "catenaXId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "36903", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "5182", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "11472Y5-96", + "value" : "21461W2-49", "key" : "manufacturerPartId" }, { - "value" : "NO-274606109623312375593443", + "value" : "NO-639962420336668821218916", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:1fe7e541-edea-43ec-ae6d-3470ff3c8869", + "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", "partTypeInformation" : { - "manufacturerPartId" : "11472Y5-96", - "customerPartId" : "11472Y5-96", - "classification" : "component", + "manufacturerPartId" : "21461W2-49", + "customerPartId" : "21461W2-49", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1fe7e541-edea-43ec-ae6d-3470ff3c8869", + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { - "catenaXId" : "urn:uuid:a3406f29-a6a6-4ab7-9f74-a7fa202c85b0", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:cae41ef3-ec33-4ae6-bbf9-a8a7d81dc504", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] - } ] - }, { - "catenaXId" : "urn:uuid:a3406f29-a6a6-4ab7-9f74-a7fa202c85b0", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:a3406f29-a6a6-4ab7-9f74-a7fa202c85b0", + "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" + "ownerPartId" : "21461W2-49", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Sensor", + "partClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "nameAtOwner" : "Sensor" } } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "customers" : [ { + "businessPartner" : "BPNL00000003B3NX", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "Engineering Plastics", "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 29, + "recycledContent" : 70, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -85084,7 +129216,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 28, + "recycledContent" : 87, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -85093,57 +129225,146 @@ "aggregateState" : "solid", "materialAbbreviation" : "GF30" } ] - } ] - }, { - "catenaXId" : "urn:uuid:b2232e22-ed7f-43bf-a3ce-f38155a4d076", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b2232e22-ed7f-43bf-a3ce-f38155a4d076", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "484665", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "6810", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "74531S8-50", - "key" : "manufacturerPartId" - }, { - "value" : "NO-332948773527481115964894", - "key" : "partInstanceId" + "key" : "batchId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:b2232e22-ed7f-43bf-a3ce-f38155a4d076", + "catenaXId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", "partTypeInformation" : { - "manufacturerPartId" : "74531S8-50", - "customerPartId" : "74531S8-50", - "classification" : "component", - "nameAtManufacturer" : "Engineering Plastics", - "nameAtCustomer" : "Engineering Plastics" + "manufacturerPartId" : "PR-60", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" } } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "Engineering Plastics", "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 9, + "recycledContent" : 63, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -85153,7 +129374,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 52, + "recycledContent" : 61, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -85162,26 +129383,136 @@ "aggregateState" : "solid", "materialAbbreviation" : "GF30" } ] - } ] - }, { - "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { - "productConditions" : "at least 1990 model", - "desiredPrice" : { - "cost" : 15340, - "currency" : "EUR" + } ], + "catenaXId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "156108", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7857", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "56931M6-58", + "key" : "manufacturerPartId" + }, { + "value" : "NO-184597319146186417552311", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] }, - "returnConditions" : "Wishes to buy", - "requestDate" : "2022-01-01", - "needsReturn" : true, - "latestReturnDate" : "2025-01-01" + "catenaXId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "partTypeInformation" : { + "manufacturerPartId" : "56931M6-58", + "customerPartId" : "56931M6-58", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "partTypeInformation" : { + "ownerPartId" : "56931M6-58", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Engineering Plastics", + "partClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "Engineering Plastics" + } } ], - "catenaXId" : "urn:uuid:2ce2710e-dad8-48d5-add4-f18746f196aa", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2ce2710e-dad8-48d5-add4-f18746f196aa", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003B0Q0", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -85192,17 +129523,19 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + } ] + }, { + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "38049661-08", "key" : "manufacturerPartId" }, { - "value" : "NO-419198538836087051098278", + "value" : "NO-524017634554899551071911", "key" : "partInstanceId" }, { "value" : "Company 1", @@ -85213,295 +129546,27 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:2ce2710e-dad8-48d5-add4-f18746f196aa", + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", "partTypeInformation" : { "manufacturerPartId" : "38049661-08", "customerPartId" : "38049661-08", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Battery", "nameAtCustomer" : "Battery" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "pack" - } ], - "productType" : "pack" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-419198538836087051098278", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 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" : 5, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "urn:samm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { "incoterms" : "DAP (Delivered at Place)", "image" : { "name" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -85538,7 +129603,7 @@ "key" : "JxkyvRnL" } ], "productLink" : "https://123", - "oeNumber" : "NO-419198538836087051098278", + "oeNumber" : "NO-524017634554899551071911", "category" : { "subCategory" : [ "Battery" ], "mainCategory" : [ "Audio, video, navigation" ] @@ -85550,7 +129615,126 @@ "sku" : "1002090, xYz.09, ABcXYZ", "mileage" : 120000.06 } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5bbdd5c0-382a-4124-9bbc-a5cd70d09215", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:555ec19c-b017-4061-b2eb-5f5f92d9ca5a", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:11be7ff3-50a2-4695-8e21-27185b6ad879", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:bdd3a663-f213-4ae8-b627-dc9bbb5d970a", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f5708bd6-b73b-490d-ad27-cc5bd7e90a59", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5dae8822-faed-4f36-8ebf-82eff0d50d36", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", @@ -85561,99 +129745,99 @@ "value" : 1 }, "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" + "customerPartId" : "38049661-08", + "manufacturerPartId" : "38049661-08" } }, "typology" : { "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", + "description" : "This is the product description of a Battery", "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" + "code" : "27-05-02-91", + "definition" : "Traction battery, starter battery (parts)" }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" }, "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" + "issueDate" : "2023-08-05", + "version" : 2.5, + "status" : "Approved" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 + "diameter" : 1074.0808, + "width" : 1074, + "length" : 2410, + "weight" : 511, + "height" : 275 }, "lifespan" : { - "unit" : "unit:day", - "value" : 36 + "unit" : "unit:year", + "value" : 19 } }, "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 + "placedOnMarket" : "2020-08-27", + "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-419198538836087051098278", + "value" : "NO-524017634554899551071911", "key" : "PartInstanceID" } ], - "gtin" : "12345678", + "gtin" : " 16830141", "additionalCode" : [ { "name" : "TARIC", - "value" : "8703 24 10 00" + "value" : "714927210" } ] }, "sources" : { "optional" : [ { "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, - "name" : "other" + "name" : "sustainability" } ], "mandatory" : { "safetyTransportation" : { - "header" : "Sustainability Document Material XY", + "header" : "Shipping guidelines", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Passport", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", + "header" : "Laboratory test results HVB Module HV MODUL", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "safetyPackaging" : { - "header" : "Sustainability Document Material XY", + "header" : "Packaging instruction for HVB Module HV MODUL", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "declarationOfConformity" : [ { "document" : { "header" : "Sustainability Document Material XY", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "name" : "other" } ] @@ -85661,10 +129845,10 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2000-01-01", + "date" : "2024-02-12", "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" + "description" : "Battery test", + "title" : "Maintenance Service" } ], "reusablePackaging" : true, "spareParts" : [ { @@ -85673,179 +129857,260 @@ "producerId" : "BPNL1234567890ZZ" } ], "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", + "unit" : "unit:percent", "name" : "Lead", - "location" : "Housing", + "location" : "HvbCell", "concentration" : { - "left" : [ 3.592682E37 ] + "left" : [ 0.8403 ] }, - "id" : "RC0402" + "id" : "FD7625" } ] }, "additionalData" : [ { "data" : "23", "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", + "data" : "", + "description" : "", + "label" : "", "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" + "dataType" : "xsd:string", + "typeUnit" : "" } } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", + "description" : "", + "label" : "", "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" + "dataType" : "xsd:string", + "typeUnit" : "" } } ], "sustainability" : { "material" : [ { - "recycled" : false, - "renewable" : true, + "recycled" : true, + "renewable" : false, "percentage" : 5, - "name" : "Aluminium" + "name" : "Manganese" } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], + "critical" : [ "Nickel" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { "extWBCSD_otherOperatorName" : "NSF", "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { + "productOrSectorSpecificRules" : [ { "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } + } ] } ], - "carbonContentTotal" : 2.5 + "carbonContentTotal" : 117 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL1234567890ZZ", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AYRE" } } } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2ce2710e-dad8-48d5-add4-f18746f196aa", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 33, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 73, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 87, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", "childItems" : [ { - "catenaXId" : "urn:uuid:cf648916-f708-4ab0-b7c7-3ef5cbcf183d", + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:59a235f2-877f-49b2-b301-4aa4bbdcc6c6", + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2bddc671-c709-40ac-8a61-135e7af3caf5", + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e732dd74-226e-488c-8ef0-e0bf6b8d0797", + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e48ab9ec-ad32-46e9-afee-848b2bf907ff", + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4e0f04f1-ce1e-4170-9f2c-63628f648df0", + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:cf648916-f708-4ab0-b7c7-3ef5cbcf183d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cf648916-f708-4ab0-b7c7-3ef5cbcf183d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "654735", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "8671", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-991878255316589385500564", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:cf648916-f708-4ab0-b7c7-3ef5cbcf183d", + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "ownerPartId" : "38049661-08", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Battery", + "partClassification" : [ { + "value" : "Battery", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Battery" } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -86070,7 +130335,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-991878255316589385500564", + "batteryIDDMCCode" : "NO-524017634554899551071911", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -86081,10 +130346,30 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "pack" + } ], + "productType" : "pack" + } ], + "urn:samm: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:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 77, + "recycledContent" : 25, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -86094,7 +130379,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 87, + "recycledContent" : 50, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -86104,7 +130389,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 69, + "recycledContent" : 29, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -86114,361 +130399,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-991878255316589385500564", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cf648916-f708-4ab0-b7c7-3ef5cbcf183d", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f5aa6d38-643b-46c0-a8cc-305380a96510", + "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4bacdcf0-d652-4b90-871a-652d6b038f98", + "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5f968ff6-356b-4ca9-80ff-5b74076ccd3c", + "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:61985729-6c68-4e20-b4ea-42861ce385b9", + "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9c795d1d-acfd-442c-800a-5207fe5a607a", + "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:793d0217-38b0-4370-82ca-1218c252abc6", + "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a9014c10-24ae-4fd2-9a78-c246a82b3afd", + "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:93ccfa75-ef37-40cc-863d-b6f892d87752", + "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b02818e7-5ca0-4b8d-9dcc-3706375da3ed", + "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b38b8f90-08ea-4b05-a670-16e2c1225d1d", + "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:f5aa6d38-643b-46c0-a8cc-305380a96510", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f5aa6d38-643b-46c0-a8cc-305380a96510", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "273206", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "1736", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-707306607833288294514492", + "value" : "NO-437222166318482402504580", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:f5aa6d38-643b-46c0-a8cc-305380a96510", + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3999547f-2b94-4ab5-b447-cdec7625c2ca", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:37f760aa-779e-40fe-b240-91ae810af92f", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b42557ad-3bb3-44db-b36d-e1f63798edfc", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c2710673-d671-42d6-8d0e-c935c011fb64", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e3db81f2-6ba7-4363-a4b9-872ba74e29e8", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:206d3b69-3eb2-4659-830b-05379b8a124a", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:cde33f9a-77b0-4ed7-b8ec-4fe8206eaf5c", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3cb725ba-086b-4c7e-a9fb-2fa3aabd6a93", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a07e4be6-1cf7-4d67-b944-49b6657053f9", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fd8e93c6-6843-4bee-8336-31a1058f7113", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1f027e83-d4df-4b07-b886-d21cbf8efa89", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -86693,7 +131070,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-707306607833288294514492", + "batteryIDDMCCode" : "NO-437222166318482402504580", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -86704,32 +131081,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f5aa6d38-643b-46c0-a8cc-305380a96510", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2024-02-29", + "version" : 1, + "status" : "Draft" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.642, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 19 + } + }, + "commercial" : { + "placedOnMarket" : "2023-09-13", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-437222166318482402504580", + "key" : "PartInstanceID" + } ], + "gtin" : " 66301870", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "829467178" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Passport", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-03-05", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 1.0243 ] + }, + "id" : "WD4510" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Insulator" + } ], + "critical" : [ "Manganese" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 118 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B3NX", + "manufacturer" : { + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-05-30", + "currentStateOfHealthTimestamp" : "2016-09-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-19", + "currentStateOfHealthTimestamp" : "2024-02-28", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -86738,28 +131320,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4bacdcf0-d652-4b90-871a-652d6b038f98", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4bacdcf0-d652-4b90-871a-652d6b038f98", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "161005", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "5583", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -86767,31 +131396,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-651237893417780757926079", + "value" : "NO-695649331867836258032978", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:4bacdcf0-d652-4b90-871a-652d6b038f98", + "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e548a9c0-ee1c-4c82-917a-2ea906651ea8", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -86800,7 +131454,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -87025,7 +131697,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-651237893417780757926079", + "batteryIDDMCCode" : "NO-695649331867836258032978", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -87036,32 +131708,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4bacdcf0-d652-4b90-871a-652d6b038f98", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-10-04", + "currentStateOfHealthTimestamp" : "2022-05-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-02", + "currentStateOfHealthTimestamp" : "2024-02-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -87070,60 +131768,132 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5f968ff6-356b-4ca9-80ff-5b74076ccd3c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5f968ff6-356b-4ca9-80ff-5b74076ccd3c", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] } ], + "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "564849", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "7058", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-045546945908329700938495", + "value" : "NO-888132613663078235630423", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:5f968ff6-356b-4ca9-80ff-5b74076ccd3c", + "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f5c10410-07d6-48de-8bc1-1cf602e5b355", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -87132,7 +131902,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -87357,7 +132145,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-045546945908329700938495", + "batteryIDDMCCode" : "NO-888132613663078235630423", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -87368,32 +132156,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5f968ff6-356b-4ca9-80ff-5b74076ccd3c", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-01-04", + "currentStateOfHealthTimestamp" : "2017-01-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-28", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -87402,28 +132216,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:61985729-6c68-4e20-b4ea-42861ce385b9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:61985729-6c68-4e20-b4ea-42861ce385b9", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "656638", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "7771", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -87431,31 +132292,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-009782803203819676195094", + "value" : "NO-969570155601910380830420", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:61985729-6c68-4e20-b4ea-42861ce385b9", + "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8bfd8b50-f2eb-4a44-b714-dc5428d27848", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -87464,7 +132350,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -87689,7 +132593,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-009782803203819676195094", + "batteryIDDMCCode" : "NO-969570155601910380830420", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -87700,32 +132604,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:61985729-6c68-4e20-b4ea-42861ce385b9", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-11-26", + "currentStateOfHealthTimestamp" : "2023-04-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-26", + "currentStateOfHealthTimestamp" : "2024-02-22", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -87734,28 +132664,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9c795d1d-acfd-442c-800a-5207fe5a607a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9c795d1d-acfd-442c-800a-5207fe5a607a", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "285930", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "6866", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -87763,31 +132740,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-697926010698960282566613", + "value" : "NO-565760403114294608440766", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:9c795d1d-acfd-442c-800a-5207fe5a607a", + "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c6397c41-3dc2-4daf-b3e4-58a709b0d2c4", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -87796,7 +132798,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -88021,7 +133041,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-697926010698960282566613", + "batteryIDDMCCode" : "NO-565760403114294608440766", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -88032,32 +133052,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9c795d1d-acfd-442c-800a-5207fe5a607a", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-02-21", + "currentStateOfHealthTimestamp" : "2016-09-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-08", + "currentStateOfHealthTimestamp" : "2024-02-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -88066,28 +133112,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:793d0217-38b0-4370-82ca-1218c252abc6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:793d0217-38b0-4370-82ca-1218c252abc6", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "339013", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "8019", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -88095,31 +133188,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-382652399321450080746579", + "value" : "NO-549662913585943094603411", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:793d0217-38b0-4370-82ca-1218c252abc6", + "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:595e3365-624b-4ea1-9fca-7503bc7022d3", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -88128,7 +133246,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -88353,7 +133489,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-382652399321450080746579", + "batteryIDDMCCode" : "NO-549662913585943094603411", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -88364,32 +133500,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:793d0217-38b0-4370-82ca-1218c252abc6", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-09-27", + "currentStateOfHealthTimestamp" : "2017-10-05", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-24", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -88398,28 +133560,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a9014c10-24ae-4fd2-9a78-c246a82b3afd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a9014c10-24ae-4fd2-9a78-c246a82b3afd", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "809420", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "1978", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -88427,31 +133636,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-070819003471405679399997", + "value" : "NO-221883872424118254324385", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a9014c10-24ae-4fd2-9a78-c246a82b3afd", + "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c680e92a-0fb5-49ca-9f84-3917493662e6", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -88460,7 +133694,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -88685,7 +133937,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-070819003471405679399997", + "batteryIDDMCCode" : "NO-221883872424118254324385", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -88696,32 +133948,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a9014c10-24ae-4fd2-9a78-c246a82b3afd", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-02-11", + "currentStateOfHealthTimestamp" : "2020-09-07", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-28", + "currentStateOfHealthTimestamp" : "2024-03-09", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -88730,28 +134008,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:93ccfa75-ef37-40cc-863d-b6f892d87752", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:93ccfa75-ef37-40cc-863d-b6f892d87752", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "586045", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "2179", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -88759,31 +134084,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-278682971089174142092472", + "value" : "NO-361394052163820362674142", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:93ccfa75-ef37-40cc-863d-b6f892d87752", + "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f28b5152-b3d9-4510-90fe-080a4ce5ceb7", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -88792,7 +134142,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -89017,7 +134385,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-278682971089174142092472", + "batteryIDDMCCode" : "NO-361394052163820362674142", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -89028,32 +134396,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:93ccfa75-ef37-40cc-863d-b6f892d87752", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-01-13", + "currentStateOfHealthTimestamp" : "2021-08-29", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-12", + "currentStateOfHealthTimestamp" : "2024-02-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -89062,28 +134456,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b02818e7-5ca0-4b8d-9dcc-3706375da3ed", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b02818e7-5ca0-4b8d-9dcc-3706375da3ed", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "45934", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "3486", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -89091,31 +134532,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-662580761024681375740875", + "value" : "NO-405115524948461037888275", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:b02818e7-5ca0-4b8d-9dcc-3706375da3ed", + "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9ec2fa8e-68ab-4d8a-9861-d6ae75494c06", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -89124,7 +134590,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -89349,7 +134833,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-662580761024681375740875", + "batteryIDDMCCode" : "NO-405115524948461037888275", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -89360,32 +134844,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b02818e7-5ca0-4b8d-9dcc-3706375da3ed", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-08-17", + "currentStateOfHealthTimestamp" : "2022-08-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-04", + "currentStateOfHealthTimestamp" : "2024-02-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -89394,28 +134904,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b38b8f90-08ea-4b05-a670-16e2c1225d1d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b38b8f90-08ea-4b05-a670-16e2c1225d1d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "690236", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9327", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -89423,31 +134980,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-245329492532287315297991", + "value" : "NO-687245070682008690060213", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:b38b8f90-08ea-4b05-a670-16e2c1225d1d", + "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f36d1321-7174-413b-a8b4-e7d77755c39e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -89456,7 +135038,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -89681,7 +135281,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-245329492532287315297991", + "batteryIDDMCCode" : "NO-687245070682008690060213", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -89692,32 +135292,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b38b8f90-08ea-4b05-a670-16e2c1225d1d", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-14", + "currentStateOfHealthTimestamp" : "2021-02-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-03", + "currentStateOfHealthTimestamp" : "2024-02-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -89726,60 +135352,159 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:59a235f2-877f-49b2-b301-4aa4bbdcc6c6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:59a235f2-877f-49b2-b301-4aa4bbdcc6c6", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "281167", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "6658", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840837-48", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-452716832824596937736190", + "value" : "NO-153305463722086790275389", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:59a235f2-877f-49b2-b301-4aa4bbdcc6c6", + "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:af2d2529-42b6-41d5-acaa-84b57eb40235", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -90004,7 +135729,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-452716832824596937736190", + "batteryIDDMCCode" : "NO-153305463722086790275389", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -90015,10 +135740,36 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 52, + "recycledContent" : 67, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -90028,7 +135779,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 88, + "recycledContent" : 25, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -90038,7 +135789,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 41, + "recycledContent" : 52, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -90048,361 +135799,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-452716832824596937736190", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:59a235f2-877f-49b2-b301-4aa4bbdcc6c6", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:420a23b0-b220-4a77-b8e2-bcec158f8aec", + "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d83824ad-d7f8-443b-900b-340a3d587229", + "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8d0d3d87-4a00-44cd-b1be-e41e6d81bb13", + "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a1755b01-58a7-4827-98fa-c360db271794", + "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1e6a9ecd-4b6b-42a9-9c14-2fb2a789bbea", + "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4fef5ced-9e00-4a17-ba8c-1bf50506d186", + "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:140ca0de-9e02-4257-8c00-7f9774ceaf9a", + "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:98988113-ae53-4d65-b52a-e9707191bdc0", + "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8028d1c5-3616-4e77-a193-ff354c7f3ad7", + "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3429b1b9-d0c2-4fea-b734-11a4def99809", + "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:420a23b0-b220-4a77-b8e2-bcec158f8aec", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:420a23b0-b220-4a77-b8e2-bcec158f8aec", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "50016", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2244", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-015810316764288306486571", + "value" : "NO-973954279957624820638186", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:420a23b0-b220-4a77-b8e2-bcec158f8aec", + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1678866b-7393-4244-8b51-de9a08dc2f80", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9d75d3ce-c3ec-4244-87f0-019b0c06a5ce", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8103a66c-3e8e-4df3-b7e9-fd1ee82f538b", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:38967ae6-bdaa-4e04-ade3-a6cd43cc650f", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:69d13cd3-847b-4c1b-be63-6c58e96f201c", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0b2aeb67-2cf1-4420-9274-79c04c22fdf0", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7611fea4-7121-4d4c-a6df-ea1a42551d72", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:cb034949-ec53-47ea-ad08-52150fedbdf0", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:02f01928-7865-4497-9c0e-0dda7c851f2d", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ce248ff3-dd7c-49ee-ae10-a20474aa3758", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:08db6c8d-c7c7-435a-8bac-229ad5ace3a3", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -90627,7 +136470,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-015810316764288306486571", + "batteryIDDMCCode" : "NO-973954279957624820638186", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -90638,32 +136481,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:420a23b0-b220-4a77-b8e2-bcec158f8aec", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2021-04-25", + "version" : 1.5, + "status" : "Expired" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6918, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 16 + } + }, + "commercial" : { + "placedOnMarket" : "2021-03-29", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-973954279957624820638186", + "key" : "PartInstanceID" + } ], + "gtin" : " 24293609", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "532048433" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2022-10-06", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 7.1058 ] + }, + "id" : "WX3550" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Copper" + } ], + "critical" : [ "Nickel" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 118 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AYRE", + "manufacturer" : { + "facilityId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-01-20", + "currentStateOfHealthTimestamp" : "2023-02-22", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-05", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -90672,28 +136720,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d83824ad-d7f8-443b-900b-340a3d587229", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d83824ad-d7f8-443b-900b-340a3d587229", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "951213", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "9847", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -90701,31 +136796,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-137047364532554498997411", + "value" : "NO-992195203154788914340114", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:d83824ad-d7f8-443b-900b-340a3d587229", + "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ee06ec61-d892-4f5e-9dbe-5c420fc45df5", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -90734,7 +136854,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -90959,7 +137097,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-137047364532554498997411", + "batteryIDDMCCode" : "NO-992195203154788914340114", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -90970,32 +137108,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d83824ad-d7f8-443b-900b-340a3d587229", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-08-16", + "currentStateOfHealthTimestamp" : "2022-07-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-14", + "currentStateOfHealthTimestamp" : "2024-02-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -91004,28 +137168,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8d0d3d87-4a00-44cd-b1be-e41e6d81bb13", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8d0d3d87-4a00-44cd-b1be-e41e6d81bb13", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "310623", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "5436", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -91033,31 +137244,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-057344578196516678915418", + "value" : "NO-347677125419085124787924", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:8d0d3d87-4a00-44cd-b1be-e41e6d81bb13", + "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ab0b6060-309c-47a6-9fa1-d012c1a1aace", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -91066,7 +137302,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -91291,7 +137545,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-057344578196516678915418", + "batteryIDDMCCode" : "NO-347677125419085124787924", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -91302,32 +137556,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8d0d3d87-4a00-44cd-b1be-e41e6d81bb13", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-11-20", + "currentStateOfHealthTimestamp" : "2015-06-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-09", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -91336,28 +137616,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a1755b01-58a7-4827-98fa-c360db271794", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a1755b01-58a7-4827-98fa-c360db271794", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "890064", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "1846", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -91365,31 +137692,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-715739912967228128859997", + "value" : "NO-758372629663542271212580", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a1755b01-58a7-4827-98fa-c360db271794", + "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:41d8fcb1-775d-4d41-b181-2bb7070835d2", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -91398,7 +137750,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -91623,7 +137993,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-715739912967228128859997", + "batteryIDDMCCode" : "NO-758372629663542271212580", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -91634,32 +138004,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a1755b01-58a7-4827-98fa-c360db271794", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-08", + "currentStateOfHealthTimestamp" : "2018-07-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-17", + "currentStateOfHealthTimestamp" : "2024-02-22", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -91668,28 +138064,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1e6a9ecd-4b6b-42a9-9c14-2fb2a789bbea", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1e6a9ecd-4b6b-42a9-9c14-2fb2a789bbea", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "616887", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "6569", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -91697,31 +138140,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-333225294351565503639129", + "value" : "NO-235749068781688754853632", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:1e6a9ecd-4b6b-42a9-9c14-2fb2a789bbea", + "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:66cb1026-6c8a-42fa-998c-b5d777f2dd98", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -91730,7 +138198,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -91955,7 +138441,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-333225294351565503639129", + "batteryIDDMCCode" : "NO-235749068781688754853632", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -91966,32 +138452,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1e6a9ecd-4b6b-42a9-9c14-2fb2a789bbea", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-09-30", + "currentStateOfHealthTimestamp" : "2020-08-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-29", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -92000,28 +138512,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4fef5ced-9e00-4a17-ba8c-1bf50506d186", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4fef5ced-9e00-4a17-ba8c-1bf50506d186", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "880788", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "8878", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -92029,31 +138588,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-397631030154461493809250", + "value" : "NO-637522255197238915757394", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:4fef5ced-9e00-4a17-ba8c-1bf50506d186", + "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:47f03566-7c54-4ace-968d-8b3580ed8a41", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -92062,7 +138646,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -92287,7 +138889,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-397631030154461493809250", + "batteryIDDMCCode" : "NO-637522255197238915757394", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -92298,32 +138900,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4fef5ced-9e00-4a17-ba8c-1bf50506d186", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-02-10", + "currentStateOfHealthTimestamp" : "2022-02-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-21", + "currentStateOfHealthTimestamp" : "2024-03-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -92332,28 +138960,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:140ca0de-9e02-4257-8c00-7f9774ceaf9a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:140ca0de-9e02-4257-8c00-7f9774ceaf9a", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "459310", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "9876", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -92361,31 +139036,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-601188663966715008750177", + "value" : "NO-013538992992080944605829", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:140ca0de-9e02-4257-8c00-7f9774ceaf9a", + "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:26d4a0c1-dfb8-4c72-a987-f1f189af44bd", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -92394,7 +139094,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -92619,7 +139337,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-601188663966715008750177", + "batteryIDDMCCode" : "NO-013538992992080944605829", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -92630,32 +139348,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:140ca0de-9e02-4257-8c00-7f9774ceaf9a", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-04-09", + "currentStateOfHealthTimestamp" : "2019-06-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-30", + "currentStateOfHealthTimestamp" : "2024-02-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -92664,28 +139408,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:98988113-ae53-4d65-b52a-e9707191bdc0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:98988113-ae53-4d65-b52a-e9707191bdc0", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "800341", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "6894", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -92693,31 +139484,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-850218190511090857762532", + "value" : "NO-642680594659421069431919", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:98988113-ae53-4d65-b52a-e9707191bdc0", + "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a9d5cb5b-3789-4848-a789-4c2867767a16", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -92726,7 +139542,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -92951,7 +139785,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-850218190511090857762532", + "batteryIDDMCCode" : "NO-642680594659421069431919", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -92962,32 +139796,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:98988113-ae53-4d65-b52a-e9707191bdc0", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-09-09", + "currentStateOfHealthTimestamp" : "2022-08-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-11", + "currentStateOfHealthTimestamp" : "2024-02-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -92996,28 +139856,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8028d1c5-3616-4e77-a193-ff354c7f3ad7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8028d1c5-3616-4e77-a193-ff354c7f3ad7", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "550091", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "6258", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -93025,31 +139932,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-775091686288460605384483", + "value" : "NO-827788544499292219780017", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:8028d1c5-3616-4e77-a193-ff354c7f3ad7", + "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:53d01b82-7d7d-40db-b4fb-787bd6d7696a", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -93058,7 +139990,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -93283,7 +140233,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-775091686288460605384483", + "batteryIDDMCCode" : "NO-827788544499292219780017", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -93294,32 +140244,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8028d1c5-3616-4e77-a193-ff354c7f3ad7", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-05-16", + "currentStateOfHealthTimestamp" : "2021-02-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-22", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -93328,28 +140304,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3429b1b9-d0c2-4fea-b734-11a4def99809", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3429b1b9-d0c2-4fea-b734-11a4def99809", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "360508", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "1156", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -93357,31 +140380,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-521678861116200057896198", + "value" : "NO-051211648132031036055007", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:3429b1b9-d0c2-4fea-b734-11a4def99809", + "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9f463c75-5ea6-4f5b-89c8-1d3783be1a54", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -93390,7 +140438,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -93615,7 +140681,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-521678861116200057896198", + "batteryIDDMCCode" : "NO-051211648132031036055007", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -93626,32 +140692,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3429b1b9-d0c2-4fea-b734-11a4def99809", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-12-07", + "currentStateOfHealthTimestamp" : "2023-11-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-05", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -93660,60 +140752,159 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2bddc671-c709-40ac-8a61-135e7af3caf5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2bddc671-c709-40ac-8a61-135e7af3caf5", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "501372", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "8190", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840837-48", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-060195366451989420619689", + "value" : "NO-274639447767522987739067", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:2bddc671-c709-40ac-8a61-135e7af3caf5", + "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:429ccd5f-2019-41d4-ae7b-20aacb54238a", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -93938,7 +141129,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-060195366451989420619689", + "batteryIDDMCCode" : "NO-274639447767522987739067", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -93949,10 +141140,36 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 40, + "recycledContent" : 53, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -93962,7 +141179,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 20, + "recycledContent" : 54, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -93972,7 +141189,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 24, + "recycledContent" : 59, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -93982,361 +141199,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-060195366451989420619689", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2bddc671-c709-40ac-8a61-135e7af3caf5", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7c698a35-c5c7-4415-b54e-341ce3d2c07d", + "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:87e5bfc0-640d-4079-9b97-f5c2c8f3c9a5", + "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:11d919b9-5dca-4ba6-b5f2-34806335f4aa", + "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9410287c-6267-4f0f-a81b-006851773209", + "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d21ea7c2-1cb1-49eb-a0ca-4c4e9b549524", + "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c35f34d4-78e9-40e7-88d4-3708a38b3013", + "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a5984774-3554-4d50-b32d-0cf9b2682e6e", + "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:12ca0545-61fb-4042-92f6-bd883757a261", + "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:16736859-34b2-4624-8177-4f4891d3ffa1", + "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bbcf9200-a231-4413-ac35-4184c81c2e01", + "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:7c698a35-c5c7-4415-b54e-341ce3d2c07d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7c698a35-c5c7-4415-b54e-341ce3d2c07d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "446905", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "1337", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-043755467971167784301544", + "value" : "NO-866219940925227686334114", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:7c698a35-c5c7-4415-b54e-341ce3d2c07d", + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3a22d8ba-a7be-4a60-bb38-f04cb3ab487e", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:bc792b88-9b63-4a83-b291-e3753ce78079", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:766ac4da-face-4c72-ad81-0ff2d8454d60", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8b5c1cc1-8da2-4043-8454-a4fd263639a7", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:17e49d1a-b12d-465f-988f-f60722b5de24", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:38bf8a9a-c7a0-474b-a7de-5e9e6217997d", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:80dacd9f-01ae-45e2-8fff-faf462043825", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:487fd997-6f52-4de3-8256-56a5e3e8d572", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d688d80f-388f-430a-b99a-afb8e785c2d9", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7d159ee5-594a-4922-a4c6-16e178bfaeaa", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:35adc373-22a3-4322-af7f-88f98d763e20", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -94561,7 +141870,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-043755467971167784301544", + "batteryIDDMCCode" : "NO-866219940925227686334114", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -94572,32 +141881,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7c698a35-c5c7-4415-b54e-341ce3d2c07d", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-07-27", + "version" : 2.4, + "status" : "Expired" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6521, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 19 + } + }, + "commercial" : { + "placedOnMarket" : "2023-03-28", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-866219940925227686334114", + "key" : "PartInstanceID" + } ], + "gtin" : " 19599333", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "857042567" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-01-03", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 1.8125 ] + }, + "id" : "WS5730" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Insulator" + } ], + "critical" : [ "Manganese" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 106 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B2OM", + "manufacturer" : { + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-28", + "currentStateOfHealthTimestamp" : "2019-11-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-17", + "currentStateOfHealthTimestamp" : "2024-02-28", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -94606,28 +142120,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:87e5bfc0-640d-4079-9b97-f5c2c8f3c9a5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:87e5bfc0-640d-4079-9b97-f5c2c8f3c9a5", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "593779", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "6516", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -94635,31 +142196,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-579822771667063531453788", + "value" : "NO-372384834342259220312175", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:87e5bfc0-640d-4079-9b97-f5c2c8f3c9a5", + "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e90a86a6-b620-446e-8d31-3ba294e2e6a2", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -94668,7 +142254,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -94893,7 +142497,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-579822771667063531453788", + "batteryIDDMCCode" : "NO-372384834342259220312175", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -94904,32 +142508,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:87e5bfc0-640d-4079-9b97-f5c2c8f3c9a5", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-04-15", + "currentStateOfHealthTimestamp" : "2022-11-15", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-10", + "currentStateOfHealthTimestamp" : "2024-02-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -94938,28 +142568,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:11d919b9-5dca-4ba6-b5f2-34806335f4aa", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:11d919b9-5dca-4ba6-b5f2-34806335f4aa", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "810678", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "1229", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -94967,31 +142644,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-074149157630039075789695", + "value" : "NO-088469934382593208474125", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:11d919b9-5dca-4ba6-b5f2-34806335f4aa", + "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4197d8ec-b394-47b6-a0f5-cc6cf0f42944", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -95000,7 +142702,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -95225,7 +142945,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-074149157630039075789695", + "batteryIDDMCCode" : "NO-088469934382593208474125", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -95236,32 +142956,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:11d919b9-5dca-4ba6-b5f2-34806335f4aa", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-06-22", + "currentStateOfHealthTimestamp" : "2023-10-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-12", + "currentStateOfHealthTimestamp" : "2024-02-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -95270,28 +143016,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9410287c-6267-4f0f-a81b-006851773209", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9410287c-6267-4f0f-a81b-006851773209", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "670796", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "2316", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -95299,31 +143092,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-117556724541527548630300", + "value" : "NO-767840854500043743649525", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:9410287c-6267-4f0f-a81b-006851773209", + "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:00005e49-d0e9-44bc-9cf5-e8da99fba448", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -95332,7 +143150,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -95557,7 +143393,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-117556724541527548630300", + "batteryIDDMCCode" : "NO-767840854500043743649525", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -95568,32 +143404,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9410287c-6267-4f0f-a81b-006851773209", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-12-10", + "currentStateOfHealthTimestamp" : "2018-09-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-02", + "currentStateOfHealthTimestamp" : "2024-02-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -95602,28 +143464,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d21ea7c2-1cb1-49eb-a0ca-4c4e9b549524", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d21ea7c2-1cb1-49eb-a0ca-4c4e9b549524", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "945397", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "8121", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -95631,31 +143540,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-527299205870283964811116", + "value" : "NO-079329468576037813719169", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:d21ea7c2-1cb1-49eb-a0ca-4c4e9b549524", + "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f90e61b6-edf5-4385-b9d0-e6713103ccc9", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -95664,7 +143598,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -95889,7 +143841,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-527299205870283964811116", + "batteryIDDMCCode" : "NO-079329468576037813719169", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -95900,32 +143852,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d21ea7c2-1cb1-49eb-a0ca-4c4e9b549524", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-03-04", + "currentStateOfHealthTimestamp" : "2014-12-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-25", + "currentStateOfHealthTimestamp" : "2024-03-01", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -95934,28 +143912,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c35f34d4-78e9-40e7-88d4-3708a38b3013", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c35f34d4-78e9-40e7-88d4-3708a38b3013", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "814586", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "4609", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -95963,31 +143988,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-158465573702643068390383", + "value" : "NO-860984087418700593268333", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:c35f34d4-78e9-40e7-88d4-3708a38b3013", + "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0b9d3361-1e9f-47ec-be20-1713fa59ec31", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -95996,7 +144046,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -96221,7 +144289,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-158465573702643068390383", + "batteryIDDMCCode" : "NO-860984087418700593268333", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -96232,32 +144300,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c35f34d4-78e9-40e7-88d4-3708a38b3013", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-08-09", + "currentStateOfHealthTimestamp" : "2018-07-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-08", + "currentStateOfHealthTimestamp" : "2024-02-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -96266,28 +144360,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a5984774-3554-4d50-b32d-0cf9b2682e6e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a5984774-3554-4d50-b32d-0cf9b2682e6e", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "47731", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 25 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "9755", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -96295,31 +144436,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-035594716322876178291584", + "value" : "NO-588045754284188865698792", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a5984774-3554-4d50-b32d-0cf9b2682e6e", + "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f09ff04f-923e-446a-bee2-43d9e1e17e4a", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -96328,7 +144494,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -96553,7 +144737,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-035594716322876178291584", + "batteryIDDMCCode" : "NO-588045754284188865698792", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -96564,32 +144748,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a5984774-3554-4d50-b32d-0cf9b2682e6e", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-02-03", + "currentStateOfHealthTimestamp" : "2020-08-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-09", + "currentStateOfHealthTimestamp" : "2024-02-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -96598,28 +144808,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:12ca0545-61fb-4042-92f6-bd883757a261", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:12ca0545-61fb-4042-92f6-bd883757a261", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "459658", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 6 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "2536", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -96627,31 +144884,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-405227411658679079889725", + "value" : "NO-473896456356548303789394", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:12ca0545-61fb-4042-92f6-bd883757a261", + "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:800e224f-deb1-49ab-9b96-b839f98dcfc6", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -96660,7 +144942,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -96885,7 +145185,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-405227411658679079889725", + "batteryIDDMCCode" : "NO-473896456356548303789394", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -96896,32 +145196,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:12ca0545-61fb-4042-92f6-bd883757a261", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-10-09", + "currentStateOfHealthTimestamp" : "2022-05-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-21", + "currentStateOfHealthTimestamp" : "2024-02-14", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -96930,28 +145256,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:16736859-34b2-4624-8177-4f4891d3ffa1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:16736859-34b2-4624-8177-4f4891d3ffa1", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "524027", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "3450", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -96959,31 +145332,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-905944984773956902913001", + "value" : "NO-352472143033398477945379", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:16736859-34b2-4624-8177-4f4891d3ffa1", + "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3f12b395-5e31-415e-a84f-2f0a9af0d78c", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -96992,7 +145390,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -97217,7 +145633,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-905944984773956902913001", + "batteryIDDMCCode" : "NO-352472143033398477945379", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -97228,32 +145644,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:16736859-34b2-4624-8177-4f4891d3ffa1", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-06-19", + "currentStateOfHealthTimestamp" : "2022-05-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-23", + "currentStateOfHealthTimestamp" : "2024-03-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -97262,28 +145704,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:bbcf9200-a231-4413-ac35-4184c81c2e01", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bbcf9200-a231-4413-ac35-4184c81c2e01", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "320239", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "4640", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -97291,31 +145780,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-293064569991403412372897", + "value" : "NO-536814342114624374891194", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:bbcf9200-a231-4413-ac35-4184c81c2e01", + "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:aef1b00c-7fa1-415d-b7bc-553eedd82fb6", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -97324,7 +145838,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -97549,7 +146081,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-293064569991403412372897", + "batteryIDDMCCode" : "NO-536814342114624374891194", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -97560,32 +146092,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bbcf9200-a231-4413-ac35-4184c81c2e01", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-08-26", + "currentStateOfHealthTimestamp" : "2023-02-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-23", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -97594,60 +146152,159 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e732dd74-226e-488c-8ef0-e0bf6b8d0797", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e732dd74-226e-488c-8ef0-e0bf6b8d0797", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "992855", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "4053", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840837-48", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-347601236025865339460077", + "value" : "NO-535040345656499211042489", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:e732dd74-226e-488c-8ef0-e0bf6b8d0797", + "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7f8ce7da-bd67-4909-862c-17f574d7f2fc", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -97872,7 +146529,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-347601236025865339460077", + "batteryIDDMCCode" : "NO-535040345656499211042489", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -97883,10 +146540,36 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 53, + "recycledContent" : 6, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -97896,7 +146579,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 13, + "recycledContent" : 84, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -97906,7 +146589,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 9, + "recycledContent" : 17, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -97916,361 +146599,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-347601236025865339460077", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e732dd74-226e-488c-8ef0-e0bf6b8d0797", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:84df48fd-88f7-4461-8acb-2912085d8eb1", + "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d00e52b8-f35b-4121-b266-5632c31effa6", + "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9381a363-f332-4a9d-b1b2-ce418fce09c9", + "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a279b878-8a85-4cc3-bdd4-f9ac5c068e64", + "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9225f39e-c605-43b7-a227-b45eac061e16", + "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4ae7eb98-fabf-4104-bac1-4d0f152ad36e", + "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e2879acc-4d8b-4050-a443-07ea0304082e", + "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:36f38349-5374-4158-a2dd-b56454e2538b", + "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4b3a9135-9c4a-4675-8129-25d57b111632", + "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a0317c5e-5348-4d0f-ac73-42b71821ddbd", + "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:84df48fd-88f7-4461-8acb-2912085d8eb1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:84df48fd-88f7-4461-8acb-2912085d8eb1", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "461716", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2220", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-921624774214450294703756", + "value" : "NO-770181704086780547564889", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:84df48fd-88f7-4461-8acb-2912085d8eb1", + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0f205c69-39ca-43af-b148-d51cd1e45ed6", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a6f9d394-aee1-4d52-9fee-de07a68edd6f", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e57b2b4c-0859-4bb1-a1e1-69565716e8f4", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:311b83f6-d424-4de7-ae16-8bb8d307e71b", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1d868cd3-c65f-403c-af92-e95e90a61b4b", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a61387e4-1f80-4757-b73a-66e5a8186725", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4b8b2fcb-52f1-4639-98e0-16e8169e38f0", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b5fd97e1-0d5c-4b56-adea-2145c7ffd167", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ad2d63d7-6a30-461b-8bbe-a2cd06448f81", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b99634df-2aa0-4fce-866e-e7222add942d", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a7ef4402-9df8-4c4d-b9cd-790bcdb482b9", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -98495,7 +147270,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-921624774214450294703756", + "batteryIDDMCCode" : "NO-770181704086780547564889", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -98506,32 +147281,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:84df48fd-88f7-4461-8acb-2912085d8eb1", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-06-19", + "version" : 2, + "status" : "Approved" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6676, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 16 + } + }, + "commercial" : { + "placedOnMarket" : "2023-02-05", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-770181704086780547564889", + "key" : "PartInstanceID" + } ], + "gtin" : " 86400073", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "421133551" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Passport", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2023-08-30", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 6.1438 ] + }, + "id" : "GR3626" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Sealant" + } ], + "critical" : [ "Manganese" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 116 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AXS3", + "manufacturer" : { + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-07-24", + "currentStateOfHealthTimestamp" : "2016-02-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-30", + "currentStateOfHealthTimestamp" : "2024-02-16", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -98540,28 +147520,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d00e52b8-f35b-4121-b266-5632c31effa6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d00e52b8-f35b-4121-b266-5632c31effa6", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "46035", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 24 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "5621", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -98569,31 +147596,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-999716352194628445469602", + "value" : "NO-576353883553719482494985", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:d00e52b8-f35b-4121-b266-5632c31effa6", + "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:20fb0219-2f09-4ace-8ac8-6190b4eaf8e8", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -98602,7 +147654,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -98827,7 +147897,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-999716352194628445469602", + "batteryIDDMCCode" : "NO-576353883553719482494985", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -98838,32 +147908,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d00e52b8-f35b-4121-b266-5632c31effa6", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-09-09", + "currentStateOfHealthTimestamp" : "2022-06-22", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-23", + "currentStateOfHealthTimestamp" : "2024-02-14", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -98872,28 +147968,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9381a363-f332-4a9d-b1b2-ce418fce09c9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9381a363-f332-4a9d-b1b2-ce418fce09c9", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "939508", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1305", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -98901,31 +148044,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-083943493496219880499638", + "value" : "NO-314815112889745255848637", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:9381a363-f332-4a9d-b1b2-ce418fce09c9", + "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:418dae1c-9e55-4334-92e4-37696a809049", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -98934,7 +148102,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -99159,7 +148345,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-083943493496219880499638", + "batteryIDDMCCode" : "NO-314815112889745255848637", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -99170,32 +148356,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9381a363-f332-4a9d-b1b2-ce418fce09c9", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-03-28", + "currentStateOfHealthTimestamp" : "2014-12-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-05", + "currentStateOfHealthTimestamp" : "2024-02-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -99204,28 +148416,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a279b878-8a85-4cc3-bdd4-f9ac5c068e64", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a279b878-8a85-4cc3-bdd4-f9ac5c068e64", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "503315", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "3063", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -99233,31 +148492,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-855302451103362878218969", + "value" : "NO-053115580491418530649598", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a279b878-8a85-4cc3-bdd4-f9ac5c068e64", + "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:72bf08bc-b2d5-4bc5-9288-78c02792b85e", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -99266,7 +148550,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -99491,7 +148793,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-855302451103362878218969", + "batteryIDDMCCode" : "NO-053115580491418530649598", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -99502,32 +148804,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a279b878-8a85-4cc3-bdd4-f9ac5c068e64", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-06-14", + "currentStateOfHealthTimestamp" : "2023-01-29", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-03", + "currentStateOfHealthTimestamp" : "2024-02-27", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -99536,28 +148864,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9225f39e-c605-43b7-a227-b45eac061e16", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9225f39e-c605-43b7-a227-b45eac061e16", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "91565", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "1441", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -99565,31 +148940,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-349709676875151403259675", + "value" : "NO-254757851873936956103930", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:9225f39e-c605-43b7-a227-b45eac061e16", + "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0eaef2be-8da2-45b9-8760-803608eaf870", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -99598,7 +148998,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -99823,7 +149241,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-349709676875151403259675", + "batteryIDDMCCode" : "NO-254757851873936956103930", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -99834,32 +149252,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9225f39e-c605-43b7-a227-b45eac061e16", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-01-10", + "currentStateOfHealthTimestamp" : "2019-01-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-07", + "currentStateOfHealthTimestamp" : "2024-03-01", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -99868,28 +149312,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4ae7eb98-fabf-4104-bac1-4d0f152ad36e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4ae7eb98-fabf-4104-bac1-4d0f152ad36e", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "850720", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2230", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -99897,31 +149388,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-692682063804875676215343", + "value" : "NO-316542918139942968601736", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:4ae7eb98-fabf-4104-bac1-4d0f152ad36e", + "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:287ee7a7-9af3-4416-afbd-27b90f68d150", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -99930,7 +149446,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -100155,7 +149689,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-692682063804875676215343", + "batteryIDDMCCode" : "NO-316542918139942968601736", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -100166,32 +149700,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4ae7eb98-fabf-4104-bac1-4d0f152ad36e", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-09-10", + "currentStateOfHealthTimestamp" : "2024-01-22", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-13", + "currentStateOfHealthTimestamp" : "2024-02-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -100200,28 +149760,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e2879acc-4d8b-4050-a443-07ea0304082e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e2879acc-4d8b-4050-a443-07ea0304082e", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "180324", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "4767", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -100229,31 +149836,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-994769037492323307586193", + "value" : "NO-145334258560133215613931", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:e2879acc-4d8b-4050-a443-07ea0304082e", + "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6b356ed3-6029-4a66-9cc3-020505e70d73", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -100262,7 +149894,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -100487,7 +150137,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-994769037492323307586193", + "batteryIDDMCCode" : "NO-145334258560133215613931", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -100498,32 +150148,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e2879acc-4d8b-4050-a443-07ea0304082e", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-04-29", + "currentStateOfHealthTimestamp" : "2022-04-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-02", + "currentStateOfHealthTimestamp" : "2024-02-14", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -100532,28 +150208,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:36f38349-5374-4158-a2dd-b56454e2538b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:36f38349-5374-4158-a2dd-b56454e2538b", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "199207", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "3283", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -100561,31 +150284,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-454622923438505467918887", + "value" : "NO-190658911471063410526864", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:36f38349-5374-4158-a2dd-b56454e2538b", + "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9e79a5b3-9dca-4d40-a1b3-5843bbb318b2", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -100594,7 +150342,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -100819,7 +150585,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-454622923438505467918887", + "batteryIDDMCCode" : "NO-190658911471063410526864", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -100830,32 +150596,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:36f38349-5374-4158-a2dd-b56454e2538b", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-12-19", + "currentStateOfHealthTimestamp" : "2017-07-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-08", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -100864,28 +150656,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4b3a9135-9c4a-4675-8129-25d57b111632", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4b3a9135-9c4a-4675-8129-25d57b111632", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "523247", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "4993", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -100893,31 +150732,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-651598595802290847837192", + "value" : "NO-063455783697007035630988", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:4b3a9135-9c4a-4675-8129-25d57b111632", + "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b4d1e3bf-9c07-47b3-9393-544c11c653df", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -100926,7 +150790,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -101151,7 +151033,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-651598595802290847837192", + "batteryIDDMCCode" : "NO-063455783697007035630988", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -101162,32 +151044,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4b3a9135-9c4a-4675-8129-25d57b111632", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-01-16", + "currentStateOfHealthTimestamp" : "2018-05-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-26", + "currentStateOfHealthTimestamp" : "2024-03-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -101196,28 +151104,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a0317c5e-5348-4d0f-ac73-42b71821ddbd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a0317c5e-5348-4d0f-ac73-42b71821ddbd", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "530781", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2939", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -101225,31 +151180,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-226738443379061871904649", + "value" : "NO-359826011078845138239347", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a0317c5e-5348-4d0f-ac73-42b71821ddbd", + "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:831f684d-6617-4538-b73a-1db77bc3c92e", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -101258,7 +151238,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -101483,7 +151481,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-226738443379061871904649", + "batteryIDDMCCode" : "NO-359826011078845138239347", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -101494,32 +151492,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a0317c5e-5348-4d0f-ac73-42b71821ddbd", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-04-13", + "currentStateOfHealthTimestamp" : "2016-04-07", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-02", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -101528,60 +151552,159 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e48ab9ec-ad32-46e9-afee-848b2bf907ff", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e48ab9ec-ad32-46e9-afee-848b2bf907ff", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "761973", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "7989", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840837-48", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-779876489399309424662376", + "value" : "NO-242290872237139567707577", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:e48ab9ec-ad32-46e9-afee-848b2bf907ff", + "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:eaedbf9a-fed7-4a2f-bd24-d4dd0d5641a5", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -101806,7 +151929,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-779876489399309424662376", + "batteryIDDMCCode" : "NO-242290872237139567707577", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -101817,10 +151940,36 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 59, + "recycledContent" : 6, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -101830,7 +151979,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 4, + "recycledContent" : 59, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -101840,7 +151989,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 62, + "recycledContent" : 61, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -101850,361 +151999,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-779876489399309424662376", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e48ab9ec-ad32-46e9-afee-848b2bf907ff", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c03a3b15-8c76-4eb5-a4bf-fc1058b17508", + "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c48eee0c-b608-405b-a4f8-3144f4cb69ee", + "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f72bd498-2212-4195-a8d2-6e22280544cb", + "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e94118b0-715f-4062-be1d-95b30b23afb2", + "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e9820916-bac9-4742-9a46-629f1437f6d9", + "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4aade21b-751d-4836-aafb-477faa000f6a", + "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:436cdf18-4693-49ae-aaba-86de653759dc", + "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f47ac076-542c-430d-b9e1-50acb88cdf18", + "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a175465c-6651-4e4a-96f6-a66d74f7e821", + "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a6c95546-a6dd-4956-9907-92a4d621088c", + "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:c03a3b15-8c76-4eb5-a4bf-fc1058b17508", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c03a3b15-8c76-4eb5-a4bf-fc1058b17508", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "926754", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1822", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-496901512662878443264437", + "value" : "NO-961586982769257604561524", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:c03a3b15-8c76-4eb5-a4bf-fc1058b17508", + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:674b71f2-c1e4-40dc-8e8f-24a851e456fd", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4728cc86-deb0-4f50-aab8-a28b7dbd87e2", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6960ba04-3f36-46dc-9692-9f2735d14536", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:18778815-6f53-4901-ae8b-058b3814701e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:48a99965-934b-4b52-a8a3-56880b18a006", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:83f815b7-a78b-40c8-adcc-c3ff6f2341e2", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:64aa51bc-f88b-403a-98a7-1a6a3540d6ec", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2feec351-a5ba-40ce-83fe-ff8fdad9fad1", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5b32e660-90aa-4d32-91de-141c3e532e96", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a71aea01-86f3-4cc3-a269-9d2d66416c7b", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:10d2d3d4-fdc4-4b9e-b76a-fd5a13e1ea00", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -102429,7 +152670,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-496901512662878443264437", + "batteryIDDMCCode" : "NO-961586982769257604561524", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -102440,32 +152681,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c03a3b15-8c76-4eb5-a4bf-fc1058b17508", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2021-09-25", + "version" : 2.1, + "status" : "Approved" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6393, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 17 + } + }, + "commercial" : { + "placedOnMarket" : "2020-07-08", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-961586982769257604561524", + "key" : "PartInstanceID" + } ], + "gtin" : " 60297435", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "383428586" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-02-10", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 8.556 ] + }, + "id" : "UZ5630" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Manganese" + } ], + "critical" : [ "Nickel" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 101 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AXS3", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-06-14", + "currentStateOfHealthTimestamp" : "2014-07-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-10", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -102474,28 +152920,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c48eee0c-b608-405b-a4f8-3144f4cb69ee", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c48eee0c-b608-405b-a4f8-3144f4cb69ee", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "985570", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "7618", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -102503,31 +152996,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-656258395391885171749721", + "value" : "NO-888312493038162373043992", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:c48eee0c-b608-405b-a4f8-3144f4cb69ee", + "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:cbc13776-f61f-4fd1-91bb-1efb638dcdc9", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -102536,7 +153054,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -102761,7 +153297,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-656258395391885171749721", + "batteryIDDMCCode" : "NO-888312493038162373043992", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -102772,32 +153308,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c48eee0c-b608-405b-a4f8-3144f4cb69ee", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-10-17", + "currentStateOfHealthTimestamp" : "2016-01-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-13", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -102806,28 +153368,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f72bd498-2212-4195-a8d2-6e22280544cb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f72bd498-2212-4195-a8d2-6e22280544cb", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "541645", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "1540", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -102835,31 +153444,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-380576543771462184016991", + "value" : "NO-114670847427380311843029", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:f72bd498-2212-4195-a8d2-6e22280544cb", + "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ea5c00d9-d225-4ef6-8f04-894dd714f606", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -102868,7 +153502,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -103093,7 +153745,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-380576543771462184016991", + "batteryIDDMCCode" : "NO-114670847427380311843029", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -103104,32 +153756,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f72bd498-2212-4195-a8d2-6e22280544cb", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-05-07", + "currentStateOfHealthTimestamp" : "2015-11-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-21", + "currentStateOfHealthTimestamp" : "2024-02-22", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -103138,28 +153816,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e94118b0-715f-4062-be1d-95b30b23afb2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e94118b0-715f-4062-be1d-95b30b23afb2", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "105441", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "8071", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -103167,31 +153892,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-500874757123630585439593", + "value" : "NO-042328502545500094738731", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:e94118b0-715f-4062-be1d-95b30b23afb2", + "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c75a3e14-3de1-4175-aa60-36ad003ae549", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -103200,7 +153950,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -103425,7 +154193,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-500874757123630585439593", + "batteryIDDMCCode" : "NO-042328502545500094738731", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -103436,32 +154204,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e94118b0-715f-4062-be1d-95b30b23afb2", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-04-27", + "currentStateOfHealthTimestamp" : "2020-10-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-22", + "currentStateOfHealthTimestamp" : "2024-02-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -103470,28 +154264,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e9820916-bac9-4742-9a46-629f1437f6d9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e9820916-bac9-4742-9a46-629f1437f6d9", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "43845", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "1294", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -103499,31 +154340,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-471481654351945041428356", + "value" : "NO-077606097660377021193127", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:e9820916-bac9-4742-9a46-629f1437f6d9", + "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5ae146b2-2596-4f20-b4c4-95179b7fef8c", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -103532,7 +154398,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -103757,7 +154641,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-471481654351945041428356", + "batteryIDDMCCode" : "NO-077606097660377021193127", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -103768,32 +154652,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e9820916-bac9-4742-9a46-629f1437f6d9", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-01-07", + "currentStateOfHealthTimestamp" : "2014-12-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-16", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -103802,28 +154712,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4aade21b-751d-4836-aafb-477faa000f6a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4aade21b-751d-4836-aafb-477faa000f6a", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "412406", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "5611", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -103831,31 +154788,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-360844053610566838544349", + "value" : "NO-808477872124908084381017", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:4aade21b-751d-4836-aafb-477faa000f6a", + "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b3f85dd0-6289-4a0f-b412-e2df2bb4c1d2", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -103864,7 +154846,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -104089,7 +155089,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-360844053610566838544349", + "batteryIDDMCCode" : "NO-808477872124908084381017", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -104100,32 +155100,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4aade21b-751d-4836-aafb-477faa000f6a", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-08-07", + "currentStateOfHealthTimestamp" : "2022-12-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-20", + "currentStateOfHealthTimestamp" : "2024-02-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -104134,28 +155160,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:436cdf18-4693-49ae-aaba-86de653759dc", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:436cdf18-4693-49ae-aaba-86de653759dc", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "906104", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "5705", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -104163,31 +155236,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-891035108071431632081694", + "value" : "NO-656125482639453250677361", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:436cdf18-4693-49ae-aaba-86de653759dc", + "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b7139c96-2bbd-4793-a8ee-968e35ea078f", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -104196,7 +155294,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -104421,7 +155537,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-891035108071431632081694", + "batteryIDDMCCode" : "NO-656125482639453250677361", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -104432,32 +155548,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:436cdf18-4693-49ae-aaba-86de653759dc", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-02-03", + "currentStateOfHealthTimestamp" : "2016-08-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-03", + "currentStateOfHealthTimestamp" : "2024-03-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -104466,28 +155608,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f47ac076-542c-430d-b9e1-50acb88cdf18", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f47ac076-542c-430d-b9e1-50acb88cdf18", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "992623", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "9700", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -104495,31 +155684,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-092571541908567304823396", + "value" : "NO-153177385520734383337939", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:f47ac076-542c-430d-b9e1-50acb88cdf18", + "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:89592ff2-5288-4106-85bc-eab16481d484", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -104528,7 +155742,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -104753,7 +155985,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-092571541908567304823396", + "batteryIDDMCCode" : "NO-153177385520734383337939", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -104764,32 +155996,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f47ac076-542c-430d-b9e1-50acb88cdf18", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-05-26", + "currentStateOfHealthTimestamp" : "2021-11-15", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-15", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -104798,28 +156056,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a175465c-6651-4e4a-96f6-a66d74f7e821", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a175465c-6651-4e4a-96f6-a66d74f7e821", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "824750", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "5909", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -104827,31 +156132,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-244327258195972374319153", + "value" : "NO-804050053485016238437303", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a175465c-6651-4e4a-96f6-a66d74f7e821", + "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:67db5dbe-af19-427e-9147-5b4fab771b17", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -104860,7 +156190,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -105085,7 +156433,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-244327258195972374319153", + "batteryIDDMCCode" : "NO-804050053485016238437303", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -105096,32 +156444,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a175465c-6651-4e4a-96f6-a66d74f7e821", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-04-29", + "currentStateOfHealthTimestamp" : "2023-01-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-23", + "currentStateOfHealthTimestamp" : "2024-02-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -105130,28 +156504,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a6c95546-a6dd-4956-9907-92a4d621088c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a6c95546-a6dd-4956-9907-92a4d621088c", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "605859", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "6122", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -105159,31 +156580,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-357196198313153550514010", + "value" : "NO-960618439422934171911338", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a6c95546-a6dd-4956-9907-92a4d621088c", + "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2da60b18-4bdd-4734-ba77-07ae5ca4c45f", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -105192,7 +156638,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -105417,7 +156881,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-357196198313153550514010", + "batteryIDDMCCode" : "NO-960618439422934171911338", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -105428,32 +156892,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a6c95546-a6dd-4956-9907-92a4d621088c", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-02-25", + "currentStateOfHealthTimestamp" : "2014-07-02", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-08", + "currentStateOfHealthTimestamp" : "2024-03-14", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -105462,60 +156952,159 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4e0f04f1-ce1e-4170-9f2c-63628f648df0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4e0f04f1-ce1e-4170-9f2c-63628f648df0", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "907412", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "3571", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840837-48", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-428415578589751438657285", + "value" : "NO-525934761064530276316729", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:4e0f04f1-ce1e-4170-9f2c-63628f648df0", + "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7f3e32b8-985b-4e87-97b5-e531485457f4", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -105740,7 +157329,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-428415578589751438657285", + "batteryIDDMCCode" : "NO-525934761064530276316729", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -105751,10 +157340,36 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 29, + "recycledContent" : 33, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -105764,7 +157379,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 44, + "recycledContent" : 34, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -105774,7 +157389,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 41, + "recycledContent" : 62, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -105784,361 +157399,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-428415578589751438657285", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4e0f04f1-ce1e-4170-9f2c-63628f648df0", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:96c8f9d4-c0cf-4e85-9891-fad71e0a8acb", + "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:11d18423-d17a-4cb8-99db-bc2cdd80acf7", + "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1ca829e0-9729-46ea-b8c3-240c639d3e8f", + "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:186e1f4c-14dc-41c7-a1b0-3fcfa28db54e", + "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:def64909-892f-4060-9cea-f9c88a5cb2cf", + "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:06d15891-aab3-4a05-9f24-806023702fc5", + "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:813d00df-666d-4568-bcfa-b639c3457040", + "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8dfd76e5-6984-4706-8253-b88653c435dc", + "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1d715e7f-d863-4677-a9bf-29f969a83e1a", + "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d1fe1e36-22d9-491e-bcb2-3b436d46d2ac", + "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:96c8f9d4-c0cf-4e85-9891-fad71e0a8acb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:96c8f9d4-c0cf-4e85-9891-fad71e0a8acb", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "110423", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7708", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-374076338300347151552319", + "value" : "NO-793352892420425441608700", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:96c8f9d4-c0cf-4e85-9891-fad71e0a8acb", + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:914b8c53-dabe-4312-9a36-a07e0581ad2a", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:86b55ae5-8561-42bb-8977-6c3a1028901f", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:458c4d07-09fc-4af7-b6b0-b862bfedb6eb", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:55ba3ac6-fde0-439a-be81-0e2cdad631cc", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8e106643-a959-4467-86df-56908888f54d", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8fee7515-113d-49c8-909c-092acb903933", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a1801c9e-4163-478c-9559-41cfec7061a6", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9250e1a9-3c30-4ee7-916b-0c92bc466de4", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9ad8a564-90e4-4f66-b0d7-8bab3c9790ca", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b4d58852-494e-4011-ab36-be8d1e428636", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7525d075-2592-4446-8f2c-fcd88c4cec10", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -106363,7 +158070,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-374076338300347151552319", + "batteryIDDMCCode" : "NO-793352892420425441608700", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -106374,32 +158081,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:96c8f9d4-c0cf-4e85-9891-fad71e0a8acb", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2024-02-26", + "version" : 1.5, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6291, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 16 + } + }, + "commercial" : { + "placedOnMarket" : "2024-02-22", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-793352892420425441608700", + "key" : "PartInstanceID" + } ], + "gtin" : " 55998351", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "186201518" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-03-11", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 7.4429 ] + }, + "id" : "KH1887" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Steel" + } ], + "critical" : [ "Nickel" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 115 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B3NX", + "manufacturer" : { + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-08-05", + "currentStateOfHealthTimestamp" : "2019-08-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-25", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -106408,28 +158320,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:11d18423-d17a-4cb8-99db-bc2cdd80acf7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:11d18423-d17a-4cb8-99db-bc2cdd80acf7", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "528527", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "5292", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -106437,31 +158396,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-373259816779829599812773", + "value" : "NO-216391419426668087358748", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:11d18423-d17a-4cb8-99db-bc2cdd80acf7", + "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:04ef9794-5054-4671-adef-340ce03f7a7d", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -106470,7 +158454,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -106695,7 +158697,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-373259816779829599812773", + "batteryIDDMCCode" : "NO-216391419426668087358748", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -106706,32 +158708,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:11d18423-d17a-4cb8-99db-bc2cdd80acf7", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-03-29", + "currentStateOfHealthTimestamp" : "2022-09-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-01", + "currentStateOfHealthTimestamp" : "2024-03-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -106740,28 +158768,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1ca829e0-9729-46ea-b8c3-240c639d3e8f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ca829e0-9729-46ea-b8c3-240c639d3e8f", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "533136", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "1275", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -106769,31 +158844,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-030612964599360900826899", + "value" : "NO-070573056146020140114258", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:1ca829e0-9729-46ea-b8c3-240c639d3e8f", + "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a29b9359-bf3f-4ee6-82a9-7fda6c96043f", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -106802,7 +158902,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -107027,7 +159145,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-030612964599360900826899", + "batteryIDDMCCode" : "NO-070573056146020140114258", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -107038,32 +159156,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ca829e0-9729-46ea-b8c3-240c639d3e8f", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-12-04", + "currentStateOfHealthTimestamp" : "2014-09-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-01", + "currentStateOfHealthTimestamp" : "2024-02-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -107072,28 +159216,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:186e1f4c-14dc-41c7-a1b0-3fcfa28db54e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:186e1f4c-14dc-41c7-a1b0-3fcfa28db54e", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "480742", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "4908", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -107101,31 +159292,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-326614545130340573086120", + "value" : "NO-998470145454027100913530", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:186e1f4c-14dc-41c7-a1b0-3fcfa28db54e", + "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3aa721af-7321-4c44-b9fe-02b29bdaed36", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -107134,7 +159350,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -107359,7 +159593,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-326614545130340573086120", + "batteryIDDMCCode" : "NO-998470145454027100913530", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -107370,32 +159604,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:186e1f4c-14dc-41c7-a1b0-3fcfa28db54e", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-10-11", + "currentStateOfHealthTimestamp" : "2021-09-05", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-25", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -107404,28 +159664,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:def64909-892f-4060-9cea-f9c88a5cb2cf", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:def64909-892f-4060-9cea-f9c88a5cb2cf", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "729044", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "2690", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -107433,31 +159740,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-973395105522653049947619", + "value" : "NO-553870064722951756380389", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:def64909-892f-4060-9cea-f9c88a5cb2cf", + "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:276f5550-a09f-41e2-bf05-3c69bc1175be", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -107466,7 +159798,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -107691,7 +160041,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-973395105522653049947619", + "batteryIDDMCCode" : "NO-553870064722951756380389", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -107702,32 +160052,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:def64909-892f-4060-9cea-f9c88a5cb2cf", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-08-18", + "currentStateOfHealthTimestamp" : "2020-10-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-12", + "currentStateOfHealthTimestamp" : "2024-02-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -107736,28 +160112,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:06d15891-aab3-4a05-9f24-806023702fc5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:06d15891-aab3-4a05-9f24-806023702fc5", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "462035", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "8159", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -107765,31 +160188,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-221492443809697258353189", + "value" : "NO-770755434441842670470708", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:06d15891-aab3-4a05-9f24-806023702fc5", + "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:32356d8d-4ce9-4b15-af23-c816b7066f76", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -107798,7 +160246,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -108023,7 +160489,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-221492443809697258353189", + "batteryIDDMCCode" : "NO-770755434441842670470708", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -108034,32 +160500,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:06d15891-aab3-4a05-9f24-806023702fc5", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-05-29", + "currentStateOfHealthTimestamp" : "2016-04-03", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-10", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -108068,28 +160560,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:813d00df-666d-4568-bcfa-b639c3457040", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:813d00df-666d-4568-bcfa-b639c3457040", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "708923", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "8210", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -108097,31 +160636,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-337944804374115028113729", + "value" : "NO-795780647921641316860975", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:813d00df-666d-4568-bcfa-b639c3457040", + "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0267052f-b1a9-4ca4-90d2-40360bf31a49", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -108130,7 +160694,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -108355,7 +160937,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-337944804374115028113729", + "batteryIDDMCCode" : "NO-795780647921641316860975", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -108366,32 +160948,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:813d00df-666d-4568-bcfa-b639c3457040", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-09-21", + "currentStateOfHealthTimestamp" : "2018-06-13", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-04", + "currentStateOfHealthTimestamp" : "2024-02-28", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -108400,28 +161008,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8dfd76e5-6984-4706-8253-b88653c435dc", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8dfd76e5-6984-4706-8253-b88653c435dc", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "706727", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "5671", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -108429,31 +161084,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-846415220221081656400976", + "value" : "NO-651190678479839520199228", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:8dfd76e5-6984-4706-8253-b88653c435dc", + "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:419941ea-191a-4b77-901e-f438a859ecd6", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -108462,7 +161142,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -108687,7 +161385,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-846415220221081656400976", + "batteryIDDMCCode" : "NO-651190678479839520199228", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -108698,32 +161396,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8dfd76e5-6984-4706-8253-b88653c435dc", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-02-09", + "currentStateOfHealthTimestamp" : "2021-12-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-11", + "currentStateOfHealthTimestamp" : "2024-02-14", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -108732,28 +161456,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1d715e7f-d863-4677-a9bf-29f969a83e1a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1d715e7f-d863-4677-a9bf-29f969a83e1a", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "349925", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7656", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -108761,31 +161532,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-898644138020633706872670", + "value" : "NO-428045788323091672467060", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:1d715e7f-d863-4677-a9bf-29f969a83e1a", + "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4eff8d49-ad1b-420c-8162-9eb9fc370238", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -108794,7 +161590,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -109019,7 +161833,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-898644138020633706872670", + "batteryIDDMCCode" : "NO-428045788323091672467060", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -109030,32 +161844,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1d715e7f-d863-4677-a9bf-29f969a83e1a", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-04-27", + "currentStateOfHealthTimestamp" : "2021-07-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-20", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -109064,28 +161904,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d1fe1e36-22d9-491e-bcb2-3b436d46d2ac", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d1fe1e36-22d9-491e-bcb2-3b436d46d2ac", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "47812", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7304", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -109093,31 +161980,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-409508966927690047134822", + "value" : "NO-759557059617093989385682", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:d1fe1e36-22d9-491e-bcb2-3b436d46d2ac", + "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:85ac2def-32fc-4d72-9a32-ca53570392aa", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -109126,7 +162038,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -109351,7 +162281,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-409508966927690047134822", + "batteryIDDMCCode" : "NO-759557059617093989385682", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -109362,32 +162292,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d1fe1e36-22d9-491e-bcb2-3b436d46d2ac", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-11-01", + "currentStateOfHealthTimestamp" : "2022-09-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-08", + "currentStateOfHealthTimestamp" : "2024-03-09", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -109396,74 +162352,424 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Cabrio-Limousine", - "catenaXId" : "urn:uuid:7f022383-4045-420b-bae5-18d383a5d428", - "engine" : { - "size" : 2998, - "power" : 143 - }, - "emptyWeight" : 1.73, - "fuel" : "Elektro", - "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" : "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" : "2016-11-01", - "mileageDistance" : 120000 + } ], + "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "396934", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "1290", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "catenaXId" : "urn:uuid:7f022383-4045-420b-bae5-18d383a5d428", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "LK-58", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "OMCWYJABSCPIQUQRD", + "value" : "NO-066639614700637985131228", "key" : "partInstanceId" - }, { - "value" : "OMCWYJABSCPIQUQRD", - "key" : "van" } ], "manufacturingInformation" : { - "date" : "2018-04-17T09:34:56.000Z", - "country" : "DEU" + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:7f022383-4045-420b-bae5-18d383a5d428", + "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", "partTypeInformation" : { - "manufacturerPartId" : "LK-58", - "classification" : "product", - "nameAtManufacturer" : "Vehicle Fully Electric" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:676db28d-c7e3-4ad1-8ebb-d94c8fd8b770", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" } } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-066639614700637985131228", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Iron", - "recycledContent" : 10, + "recycledContent" : 40, "materialClass" : "1.1", "quantity" : { "unit" : "unit:kilogram", @@ -109473,7 +162779,7 @@ "materialAbbreviation" : "IR334" }, { "materialName" : "Polyethylen", - "recycledContent" : 38, + "recycledContent" : 87, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -109483,7 +162789,7 @@ "materialAbbreviation" : "PE221" }, { "materialName" : "Polyamid6", - "recycledContent" : 39, + "recycledContent" : 32, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -109493,7 +162799,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Aluminium", - "recycledContent" : 76, + "recycledContent" : 62, "materialClass" : "2.1", "quantity" : { "unit" : "unit:kilogram", @@ -109503,7 +162809,7 @@ "materialAbbreviation" : "ALU331" }, { "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", - "recycledContent" : 27, + "recycledContent" : 81, "materialClass" : "0.7", "quantity" : { "unit" : "unit:kilogram", @@ -109513,7 +162819,7 @@ "materialAbbreviation" : "W123" }, { "materialName" : "Glue", - "recycledContent" : 7, + "recycledContent" : 10, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -109523,7 +162829,7 @@ "materialAbbreviation" : "GL338" }, { "materialName" : "Carbon Steel", - "recycledContent" : 86, + "recycledContent" : 74, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -109533,7 +162839,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Cooper", - "recycledContent" : 84, + "recycledContent" : 55, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -109543,7 +162849,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Rubber", - "recycledContent" : 10, + "recycledContent" : 79, "materialClass" : "5.3", "quantity" : { "unit" : "unit:kilogram", @@ -109553,7 +162859,7 @@ "materialAbbreviation" : "R22" }, { "materialName" : "Textiles", - "recycledContent" : 54, + "recycledContent" : 42, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:kilogram", @@ -109563,359 +162869,496 @@ "materialAbbreviation" : "TEX1" } ] } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7f022383-4045-420b-bae5-18d383a5d428", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "childItems" : [ { - "catenaXId" : "urn:uuid:118f93bf-640a-41a9-a5ba-5d9f1048f3f1", + "catenaXId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:786a1e5e-8263-4ea8-b432-3990e739cbc0", + "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6b208fbd-7647-4737-be2a-da7371cdde1b", + "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:78a56210-8de2-45c8-b9f6-176a531ebd8a", + "catenaXId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ff56d637-d6f7-4a97-bbcb-075168a2bf9e", + "catenaXId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b9696c11-f748-46b7-85a2-0a1262050729", + "catenaXId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ded2f043-eadf-4eeb-afa6-731ab2eb54b7", + "catenaXId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2c59b94c-c6b8-49e6-a00f-9764d898d263", + "catenaXId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:92008d75-5b2d-4038-9ecb-33e70e805518", + "catenaXId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:90a63c9a-2089-4597-b026-e755970e6d45", + "catenaXId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1ee2284d-24a6-469c-8e40-8bcadbe80fe5", + "catenaXId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a066eefa-b42b-4ffe-b1fb-4fcba05f23af", + "catenaXId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:330838b5-c9f3-4ed5-8609-a2fb7fdba079", + "catenaXId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b2cac843-e866-4ba7-949e-7048dfb16872", + "catenaXId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2bebcde5-4ac3-4219-a308-b846810326e6", + "catenaXId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a043d6ec-b444-4ebb-b1a1-86285b20a0a4", + "catenaXId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0f95e2e6-f0d6-4767-86a2-9c9fcfbee710", + "catenaXId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:67165906-faa5-458f-8307-79150c383b2c", + "catenaXId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f08e24a7-4efa-4306-96b0-3a8089e5486e", + "catenaXId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1ace8799-d1ad-408a-b960-8f1dc1fabcad", + "catenaXId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bb310e70-b61b-47a3-a225-ace92e7823b9", + "catenaXId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:33404287-d7e9-4145-9527-00f461d4f990", + "catenaXId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ac9b0ccd-d5ba-4274-b253-b5cd6ea26f34", + "catenaXId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:015ff1f1-2ea2-4cb0-91b2-1688cc3b3c59", + "catenaXId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2226cba9-89cc-4f12-afcb-4bf6177a9265", + "catenaXId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:334d9cbf-6fb2-4c20-91d0-d9dacf6152fe", + "catenaXId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0654851d-4886-4ffe-b65d-9abe33ee5fa5", + "catenaXId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6e5b3230-6a3e-4121-9773-ee9443234771", + "catenaXId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f2fa3c64-d281-4307-bd47-4a4f4f9cc23e", + "catenaXId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:48f11887-b132-4daf-8358-5d0be475e7fc", + "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:16d3c4f2-1b37-4911-8408-c496a270e72b", + "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B5MJ", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5e5661bd-9d29-49a3-94f7-3981b9116a46", + "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ], + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "GG-88", + "key" : "manufacturerPartId" + }, { + "value" : "OMAUTSWWLUZIALLQA", + "key" : "partInstanceId" + }, { + "value" : "OMAUTSWWLUZIALLQA", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2013-05-30T05:25:44.000Z", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "partTypeInformation" : { + "manufacturerPartId" : "GG-88", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Vehicle Fully Electric" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Van", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "engine" : { + "size" : 2998, + "power" : 143 + }, + "emptyWeight" : 1.73, + "fuel" : "Elektro", + "vehicleModel" : "Vehicle Fully Electric", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "S2AVB", + "description" : "adaptive drive", + "group" : "special equipment" + }, { + "code" : "S218A", + "description" : "sport automatic transmission", + "group" : "special equipment" + }, { + "code" : "S378B", + "description" : "integrated child seats", + "group" : "special equipment" + }, { + "code" : "B298B", + "description" : "keyless entry", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2014-03-24", + "mileageDistance" : 120000 + } ] } ] }, { - "catenaXId" : "urn:uuid:118f93bf-640a-41a9-a5ba-5d9f1048f3f1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:118f93bf-640a-41a9-a5ba-5d9f1048f3f1", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "catenaXId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "142050", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "7983", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "73849201-61", "key" : "manufacturerPartId" }, { - "value" : "NO-445946237648208180925239", + "value" : "NO-897103492718576075219698", "key" : "partInstanceId" }, { "value" : "Company 10", @@ -109926,25 +163369,55 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:118f93bf-640a-41a9-a5ba-5d9f1048f3f1", + "catenaXId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", "partTypeInformation" : { "manufacturerPartId" : "73849201-61", "customerPartId" : "73849201-61", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Catalysator", "nameAtCustomer" : "Catalysator" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", + "partTypeInformation" : { + "ownerPartId" : "73849201-61", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Catalysator", + "partClassification" : [ { + "value" : "Catalysator", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Catalysator" } - } ] - }, { - "catenaXId" : "urn:uuid:786a1e5e-8263-4ea8-b432-3990e739cbc0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:786a1e5e-8263-4ea8-b432-3990e739cbc0", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -109955,9 +163428,90 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "childItems" : [ { + "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000000BJTL", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "335362", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "2823", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003CSGV", "key" : "manufacturerId" @@ -109965,7 +163519,7 @@ "value" : "22782277-50", "key" : "manufacturerPartId" }, { - "value" : "NO-975912353736157536467736", + "value" : "NO-211534666015366566012745", "key" : "partInstanceId" }, { "value" : "Company 3", @@ -109976,39 +163530,74 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:786a1e5e-8263-4ea8-b432-3990e739cbc0", + "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", "partTypeInformation" : { "manufacturerPartId" : "22782277-50", "customerPartId" : "22782277-50", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door f-l", "nameAtCustomer" : "Door front-left" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:786a1e5e-8263-4ea8-b432-3990e739cbc0", + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { - "catenaXId" : "urn:uuid:10002a46-8349-4757-9ac6-1908b3833a5c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "item" : [ { + "itemClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:26e85232-2b60-47b6-985e-d83772378e0b", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] - } ] - }, { - "catenaXId" : "urn:uuid:10002a46-8349-4757-9ac6-1908b3833a5c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:10002a46-8349-4757-9ac6-1908b3833a5c", + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "partTypeInformation" : { + "ownerPartId" : "22782277-50", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Door front-left", + "partClassification" : [ { + "value" : "Door front-left", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "nameAtOwner" : "Door front-left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003CSGV", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -110019,9 +163608,102 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { + "localIdentifiers" : [ { + "value" : "14388717EVX", + "key" : "jisNumber" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000000BJTL", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-3434-A", + "customerPartId" : "PRT-12345", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "side element A" + } } ], + "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "522039", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "8589", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000000BJTL", "key" : "manufacturerId" @@ -110029,48 +163711,60 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-587093561007193771479885", + "value" : "NO-810295075415539190881160", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:10002a46-8349-4757-9ac6-1908b3833a5c", + "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door Key", "nameAtCustomer" : "Door Key" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "24909278GQW", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "manufacturerId" : "BPNL00000000BJTL", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:10002a46-8349-4757-9ac6-1908b3833a5c", + "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" + "ownerPartId" : "95657762-59", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Door Key", + "partClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000000BJTL:PartFamily" + } ], + "nameAtOwner" : "Door Key" } - } ] - }, { - "catenaXId" : "urn:uuid:6b208fbd-7647-4737-be2a-da7371cdde1b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6b208fbd-7647-4737-be2a-da7371cdde1b", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000000BJTL", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -110081,9 +163775,90 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "childItems" : [ { + "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000000BJTL", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "252563", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "8858", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003CSGV", "key" : "manufacturerId" @@ -110091,7 +163866,7 @@ "value" : "95657362-64", "key" : "manufacturerPartId" }, { - "value" : "NO-691099109339771359055336", + "value" : "NO-522606169119282135007012", "key" : "partInstanceId" }, { "value" : "Company 4", @@ -110102,39 +163877,74 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:6b208fbd-7647-4737-be2a-da7371cdde1b", + "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", "partTypeInformation" : { "manufacturerPartId" : "33740332-54", "customerPartId" : "33740332-54", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door f-r", "nameAtCustomer" : "Door front-right" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6b208fbd-7647-4737-be2a-da7371cdde1b", + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { - "catenaXId" : "urn:uuid:2c4a8551-770a-44a7-9bdc-4586483fdfa4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "item" : [ { + "itemClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c8bb38b4-1ad6-4176-9766-24222d715c9f", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] - } ] - }, { - "catenaXId" : "urn:uuid:2c4a8551-770a-44a7-9bdc-4586483fdfa4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2c4a8551-770a-44a7-9bdc-4586483fdfa4", + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "partTypeInformation" : { + "ownerPartId" : "33740332-54", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Door front-right", + "partClassification" : [ { + "value" : "Door front-right", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "nameAtOwner" : "Door front-right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003CSGV", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -110145,9 +163955,102 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { + "localIdentifiers" : [ { + "value" : "73869864QSZ", + "key" : "jisNumber" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000000BJTL", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-3434-A", + "customerPartId" : "PRT-12345", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "side element A" + } } ], + "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "929989", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 8 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "2393", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000000BJTL", "key" : "manufacturerId" @@ -110155,48 +164058,60 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-238299971277008917114209", + "value" : "NO-526060008250250591571360", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:2c4a8551-770a-44a7-9bdc-4586483fdfa4", + "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door Key", "nameAtCustomer" : "Door Key" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "52762480WXQ", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "manufacturerId" : "BPNL00000000BJTL", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:2c4a8551-770a-44a7-9bdc-4586483fdfa4", + "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" + "ownerPartId" : "95657762-59", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Door Key", + "partClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000000BJTL:PartFamily" + } ], + "nameAtOwner" : "Door Key" } - } ] - }, { - "catenaXId" : "urn:uuid:78a56210-8de2-45c8-b9f6-176a531ebd8a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:78a56210-8de2-45c8-b9f6-176a531ebd8a", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", "customers" : [ { - "businessPartner" : false, + "businessPartner" : "BPNL00000000BJTL", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -110207,40 +164122,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "169179", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "1040", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "15635759-16", "key" : "manufacturerPartId" }, { - "value" : "NO-092527839029900188741256", + "value" : "NO-112437134579525713767718", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:78a56210-8de2-45c8-b9f6-176a531ebd8a", + "catenaXId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", "partTypeInformation" : { "manufacturerPartId" : "15635759-16", "customerPartId" : "15635759-16", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door r-l", "nameAtCustomer" : "Door rear-left" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", + "partTypeInformation" : { + "ownerPartId" : "15635759-16", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Door rear-left", + "partClassification" : [ { + "value" : "Door rear-left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Door rear-left" } - } ] - }, { - "catenaXId" : "urn:uuid:ff56d637-d6f7-4a97-bbcb-075168a2bf9e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ff56d637-d6f7-4a97-bbcb-075168a2bf9e", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -110251,17 +164263,84 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "158072", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "6647", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "28673126-98", "key" : "manufacturerPartId" }, { - "value" : "NO-770631984053712889246870", + "value" : "NO-353669866416007480479809", "key" : "partInstanceId" }, { "value" : "Company 5", @@ -110272,25 +164351,55 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:ff56d637-d6f7-4a97-bbcb-075168a2bf9e", + "catenaXId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", "partTypeInformation" : { "manufacturerPartId" : "28673126-98", "customerPartId" : "28673126-98", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Door r-r", "nameAtCustomer" : "Door rear-right" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", + "partTypeInformation" : { + "ownerPartId" : "28673126-98", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Door rear-right", + "partClassification" : [ { + "value" : "Door rear-right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Door rear-right" } - } ] - }, { - "catenaXId" : "urn:uuid:b9696c11-f748-46b7-85a2-0a1262050729", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b9696c11-f748-46b7-85a2-0a1262050729", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -110301,17 +164410,84 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "295231", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "3221", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "94421589-82", "key" : "manufacturerPartId" }, { - "value" : "NO-155732364047288857797929", + "value" : "NO-745506815228397423604793", "key" : "partInstanceId" }, { "value" : "Company 6", @@ -110322,25 +164498,55 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:b9696c11-f748-46b7-85a2-0a1262050729", + "catenaXId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", "partTypeInformation" : { "manufacturerPartId" : "94421589-82", "customerPartId" : "94421589-82", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Engine hood", "nameAtCustomer" : "Engine hood" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", + "partTypeInformation" : { + "ownerPartId" : "94421589-82", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Engine hood", + "partClassification" : [ { + "value" : "Engine hood", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Engine hood" } - } ] - }, { - "catenaXId" : "urn:uuid:ded2f043-eadf-4eeb-afa6-731ab2eb54b7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ded2f043-eadf-4eeb-afa6-731ab2eb54b7", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -110351,40 +164557,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "780572", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 9 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "4945", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "85023955-75", "key" : "manufacturerPartId" }, { - "value" : "NO-682965224488212461431133", + "value" : "NO-111494423758526603085139", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:ded2f043-eadf-4eeb-afa6-731ab2eb54b7", + "catenaXId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", "partTypeInformation" : { "manufacturerPartId" : "85023955-75", "customerPartId" : "85023955-75", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Tailgate", "nameAtCustomer" : "Tailgate" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", + "partTypeInformation" : { + "ownerPartId" : "85023955-75", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Tailgate", + "partClassification" : [ { + "value" : "Tailgate", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Tailgate" } - } ] - }, { - "catenaXId" : "urn:uuid:2c59b94c-c6b8-49e6-a00f-9764d898d263", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2c59b94c-c6b8-49e6-a00f-9764d898d263", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -110395,40 +164698,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "283160", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "5283", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "13769860-47", "key" : "manufacturerPartId" }, { - "value" : "NO-530788244235511684306757", + "value" : "NO-445614779824118555770555", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:2c59b94c-c6b8-49e6-a00f-9764d898d263", + "catenaXId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", "partTypeInformation" : { "manufacturerPartId" : "13769860-47", "customerPartId" : "13769860-47", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Fender left", "nameAtCustomer" : "Fender right" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", + "partTypeInformation" : { + "ownerPartId" : "13769860-47", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Fender right", + "partClassification" : [ { + "value" : "Fender right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Fender right" } - } ] - }, { - "catenaXId" : "urn:uuid:92008d75-5b2d-4038-9ecb-33e70e805518", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:92008d75-5b2d-4038-9ecb-33e70e805518", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -110439,40 +164839,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "73515", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6978", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "36643162-35", "key" : "manufacturerPartId" }, { - "value" : "NO-429262674094382806080102", + "value" : "NO-379402067665339366723185", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:92008d75-5b2d-4038-9ecb-33e70e805518", + "catenaXId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", "partTypeInformation" : { "manufacturerPartId" : "36643162-35", "customerPartId" : "36643162-35", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Fender right", "nameAtCustomer" : "Fender right" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", + "partTypeInformation" : { + "ownerPartId" : "36643162-35", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Fender right", + "partClassification" : [ { + "value" : "Fender right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Fender right" } - } ] - }, { - "catenaXId" : "urn:uuid:90a63c9a-2089-4597-b026-e755970e6d45", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:90a63c9a-2089-4597-b026-e755970e6d45", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -110483,40 +164980,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "880115", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "5404", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "54165444-59", "key" : "manufacturerPartId" }, { - "value" : "NO-653408152823427120487906", + "value" : "NO-881090076445243310184722", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:90a63c9a-2089-4597-b026-e755970e6d45", + "catenaXId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", "partTypeInformation" : { "manufacturerPartId" : "54165444-59", "customerPartId" : "54165444-59", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Bumper front", "nameAtCustomer" : "Bumper front" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", + "partTypeInformation" : { + "ownerPartId" : "54165444-59", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Bumper front", + "partClassification" : [ { + "value" : "Bumper front", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Bumper front" } - } ] - }, { - "catenaXId" : "urn:uuid:1ee2284d-24a6-469c-8e40-8bcadbe80fe5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ee2284d-24a6-469c-8e40-8bcadbe80fe5", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -110527,40 +165121,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "706395", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "3766", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "22768257-25", "key" : "manufacturerPartId" }, { - "value" : "NO-984865503032346158062555", + "value" : "NO-523618767337566841620574", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:1ee2284d-24a6-469c-8e40-8bcadbe80fe5", + "catenaXId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", "partTypeInformation" : { "manufacturerPartId" : "22768257-25", "customerPartId" : "22768257-25", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Bumper rear", "nameAtCustomer" : "Bumper rear" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", + "partTypeInformation" : { + "ownerPartId" : "22768257-25", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Bumper rear", + "partClassification" : [ { + "value" : "Bumper rear", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Bumper rear" } - } ] - }, { - "catenaXId" : "urn:uuid:a066eefa-b42b-4ffe-b1fb-4fcba05f23af", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a066eefa-b42b-4ffe-b1fb-4fcba05f23af", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -110571,40 +165262,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "136173", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "4297", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "65529521-37", "key" : "manufacturerPartId" }, { - "value" : "NO-488977843715354108079520", + "value" : "NO-134972035386407420689973", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a066eefa-b42b-4ffe-b1fb-4fcba05f23af", + "catenaXId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", "partTypeInformation" : { "manufacturerPartId" : "65529521-37", "customerPartId" : "65529521-37", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Exterior mirror left", "nameAtCustomer" : "Exterior mirror left" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", + "partTypeInformation" : { + "ownerPartId" : "65529521-37", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Exterior mirror left", + "partClassification" : [ { + "value" : "Exterior mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Exterior mirror left" } - } ] - }, { - "catenaXId" : "urn:uuid:330838b5-c9f3-4ed5-8609-a2fb7fdba079", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:330838b5-c9f3-4ed5-8609-a2fb7fdba079", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -110615,40 +165403,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "964210", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "4812", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "58471477-24", "key" : "manufacturerPartId" }, { - "value" : "NO-622405506855936886431683", + "value" : "NO-267889602260734086865808", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:330838b5-c9f3-4ed5-8609-a2fb7fdba079", + "catenaXId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", "partTypeInformation" : { "manufacturerPartId" : "58471477-24", "customerPartId" : "58471477-24", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Exterior mirror right", "nameAtCustomer" : "Exterior mirror right" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", + "partTypeInformation" : { + "ownerPartId" : "58471477-24", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Exterior mirror right", + "partClassification" : [ { + "value" : "Exterior mirror right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Exterior mirror right" } - } ] - }, { - "catenaXId" : "urn:uuid:b2cac843-e866-4ba7-949e-7048dfb16872", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b2cac843-e866-4ba7-949e-7048dfb16872", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -110659,40 +165544,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "326337", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "7271", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "09002013-68", "key" : "manufacturerPartId" }, { - "value" : "NO-529060115775731776823129", + "value" : "NO-202606871824681721163696", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:b2cac843-e866-4ba7-949e-7048dfb16872", + "catenaXId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", "partTypeInformation" : { "manufacturerPartId" : "09002013-68", "customerPartId" : "09002013-68", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Trailer coupling", "nameAtCustomer" : "Tailer coupling" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", + "partTypeInformation" : { + "ownerPartId" : "09002013-68", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Tailer coupling", + "partClassification" : [ { + "value" : "Tailer coupling", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Tailer coupling" } - } ] - }, { - "catenaXId" : "urn:uuid:2bebcde5-4ac3-4219-a308-b846810326e6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2bebcde5-4ac3-4219-a308-b846810326e6", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -110703,40 +165685,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "408093", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "1001", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "43501996-98", "key" : "manufacturerPartId" }, { - "value" : "NO-718758854917669174087104", + "value" : "NO-131978078535616439777638", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:2bebcde5-4ac3-4219-a308-b846810326e6", + "catenaXId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", "partTypeInformation" : { "manufacturerPartId" : "43501996-98", "customerPartId" : "43501996-98", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Dashboard", "nameAtCustomer" : "Dashboard" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", + "partTypeInformation" : { + "ownerPartId" : "43501996-98", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Dashboard", + "partClassification" : [ { + "value" : "Dashboard", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Dashboard" } - } ] - }, { - "catenaXId" : "urn:uuid:a043d6ec-b444-4ebb-b1a1-86285b20a0a4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a043d6ec-b444-4ebb-b1a1-86285b20a0a4", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -110747,40 +165826,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "223934", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "1268", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "77795937-13", "key" : "manufacturerPartId" }, { - "value" : "NO-603439499529770557554455", + "value" : "NO-669032114632615288919023", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:a043d6ec-b444-4ebb-b1a1-86285b20a0a4", + "catenaXId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", "partTypeInformation" : { "manufacturerPartId" : "77795937-13", "customerPartId" : "77795937-13", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Steering wheel", "nameAtCustomer" : "Steering wheel" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", + "partTypeInformation" : { + "ownerPartId" : "77795937-13", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Steering wheel", + "partClassification" : [ { + "value" : "Steering wheel", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Steering wheel" } - } ] - }, { - "catenaXId" : "urn:uuid:0f95e2e6-f0d6-4767-86a2-9c9fcfbee710", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f95e2e6-f0d6-4767-86a2-9c9fcfbee710", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -110791,40 +165967,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "838606", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "1139", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "20125432-59", "key" : "manufacturerPartId" }, { - "value" : "NO-298420281591506553270857", + "value" : "NO-285471949284935640933709", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:0f95e2e6-f0d6-4767-86a2-9c9fcfbee710", + "catenaXId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", "partTypeInformation" : { "manufacturerPartId" : "20125432-59", "customerPartId" : "20125432-59", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Indicator left", "nameAtCustomer" : "Indicator left" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", + "partTypeInformation" : { + "ownerPartId" : "20125432-59", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Indicator left", + "partClassification" : [ { + "value" : "Indicator left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Indicator left" } - } ] - }, { - "catenaXId" : "urn:uuid:67165906-faa5-458f-8307-79150c383b2c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:67165906-faa5-458f-8307-79150c383b2c", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -110835,40 +166108,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "699453", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "4108", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "19073706-76", "key" : "manufacturerPartId" }, { - "value" : "NO-783290256977986974160836", + "value" : "NO-330957184442058171647578", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:67165906-faa5-458f-8307-79150c383b2c", + "catenaXId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", "partTypeInformation" : { "manufacturerPartId" : "19073706-76", "customerPartId" : "19073706-76", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Indicator right", "nameAtCustomer" : "Indicator right" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", + "partTypeInformation" : { + "ownerPartId" : "19073706-76", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Indicator right", + "partClassification" : [ { + "value" : "Indicator right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Indicator right" } - } ] - }, { - "catenaXId" : "urn:uuid:f08e24a7-4efa-4306-96b0-3a8089e5486e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f08e24a7-4efa-4306-96b0-3a8089e5486e", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -110879,40 +166249,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "236482", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "5981", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "45415162-57", "key" : "manufacturerPartId" }, { - "value" : "NO-756385577925140623610541", + "value" : "NO-822796740548188148943670", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:f08e24a7-4efa-4306-96b0-3a8089e5486e", + "catenaXId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", "partTypeInformation" : { "manufacturerPartId" : "45415162-57", "customerPartId" : "45415162-57", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Led headlight", "nameAtCustomer" : "Led headlight" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", + "partTypeInformation" : { + "ownerPartId" : "45415162-57", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Led headlight", + "partClassification" : [ { + "value" : "Led headlight", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Led headlight" } - } ] - }, { - "catenaXId" : "urn:uuid:1ace8799-d1ad-408a-b960-8f1dc1fabcad", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ace8799-d1ad-408a-b960-8f1dc1fabcad", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -110923,40 +166390,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "131404", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "3300", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "78141846-87", "key" : "manufacturerPartId" }, { - "value" : "NO-820729147855727229496823", + "value" : "NO-771564318302097683905104", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:1ace8799-d1ad-408a-b960-8f1dc1fabcad", + "catenaXId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", "partTypeInformation" : { "manufacturerPartId" : "78141846-87", "customerPartId" : "78141846-87", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Starter motor", "nameAtCustomer" : "Starter motor" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", + "partTypeInformation" : { + "ownerPartId" : "78141846-87", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Starter motor", + "partClassification" : [ { + "value" : "Starter motor", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Starter motor" } - } ] - }, { - "catenaXId" : "urn:uuid:bb310e70-b61b-47a3-a225-ace92e7823b9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bb310e70-b61b-47a3-a225-ace92e7823b9", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -110967,40 +166531,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "460640", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2681", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "81324139-23", "key" : "manufacturerPartId" }, { - "value" : "NO-777181352956827651818592", + "value" : "NO-239260272543321279088898", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:bb310e70-b61b-47a3-a225-ace92e7823b9", + "catenaXId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", "partTypeInformation" : { "manufacturerPartId" : "81324139-23", "customerPartId" : "81324139-23", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Alternator", "nameAtCustomer" : "Alternator" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", + "partTypeInformation" : { + "ownerPartId" : "81324139-23", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Alternator", + "partClassification" : [ { + "value" : "Alternator", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Alternator" } - } ] - }, { - "catenaXId" : "urn:uuid:33404287-d7e9-4145-9527-00f461d4f990", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:33404287-d7e9-4145-9527-00f461d4f990", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -111011,40 +166672,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "125824", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "2923", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "57929013-09", "key" : "manufacturerPartId" }, { - "value" : "NO-690585562696189854382131", + "value" : "NO-306396512245970743345151", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:33404287-d7e9-4145-9527-00f461d4f990", + "catenaXId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", "partTypeInformation" : { "manufacturerPartId" : "57929013-09", "customerPartId" : "57929013-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "AC compressor", "nameAtCustomer" : "Air conditioning compressor" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", + "partTypeInformation" : { + "ownerPartId" : "57929013-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Air conditioning compressor", + "partClassification" : [ { + "value" : "Air conditioning compressor", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Air conditioning compressor" } - } ] - }, { - "catenaXId" : "urn:uuid:ac9b0ccd-d5ba-4274-b253-b5cd6ea26f34", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ac9b0ccd-d5ba-4274-b253-b5cd6ea26f34", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -111055,40 +166813,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "969328", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "4926", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "61184040-23", "key" : "manufacturerPartId" }, { - "value" : "NO-780475683403465933263980", + "value" : "NO-895054980590632690004187", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:ac9b0ccd-d5ba-4274-b253-b5cd6ea26f34", + "catenaXId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", "partTypeInformation" : { "manufacturerPartId" : "61184040-23", "customerPartId" : "61184040-23", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Taillight rear", "nameAtCustomer" : "Taillight rear" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", + "partTypeInformation" : { + "ownerPartId" : "61184040-23", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Taillight rear", + "partClassification" : [ { + "value" : "Taillight rear", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Taillight rear" } - } ] - }, { - "catenaXId" : "urn:uuid:015ff1f1-2ea2-4cb0-91b2-1688cc3b3c59", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:015ff1f1-2ea2-4cb0-91b2-1688cc3b3c59", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -111099,40 +166954,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "213237", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "8871", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "78744126-74", "key" : "manufacturerPartId" }, { - "value" : "NO-509924467004324776309699", + "value" : "NO-620547476734310789610821", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:015ff1f1-2ea2-4cb0-91b2-1688cc3b3c59", + "catenaXId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", "partTypeInformation" : { "manufacturerPartId" : "78744126-74", "customerPartId" : "78744126-74", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Taillight front", "nameAtCustomer" : "Taillight front" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", + "partTypeInformation" : { + "ownerPartId" : "78744126-74", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Taillight front", + "partClassification" : [ { + "value" : "Taillight front", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Taillight front" } - } ] - }, { - "catenaXId" : "urn:uuid:2226cba9-89cc-4f12-afcb-4bf6177a9265", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2226cba9-89cc-4f12-afcb-4bf6177a9265", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -111143,40 +167095,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "348657", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "7617", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "12093297-03", "key" : "manufacturerPartId" }, { - "value" : "NO-495436658064746484475092", + "value" : "NO-600852313453046969357341", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:2226cba9-89cc-4f12-afcb-4bf6177a9265", + "catenaXId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", "partTypeInformation" : { "manufacturerPartId" : "12093297-03", "customerPartId" : "12093297-03", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Axle part front", "nameAtCustomer" : "Axle part front" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", + "partTypeInformation" : { + "ownerPartId" : "12093297-03", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Axle part front", + "partClassification" : [ { + "value" : "Axle part front", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Axle part front" } - } ] - }, { - "catenaXId" : "urn:uuid:334d9cbf-6fb2-4c20-91d0-d9dacf6152fe", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:334d9cbf-6fb2-4c20-91d0-d9dacf6152fe", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -111187,40 +167236,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "584409", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "3210", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "88111709-49", "key" : "manufacturerPartId" }, { - "value" : "NO-850077303467847792597182", + "value" : "NO-552693740323920547409688", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:334d9cbf-6fb2-4c20-91d0-d9dacf6152fe", + "catenaXId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", "partTypeInformation" : { "manufacturerPartId" : "88111709-49", "customerPartId" : "88111709-49", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Axle part rear", "nameAtCustomer" : "Axle part rear" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", + "partTypeInformation" : { + "ownerPartId" : "88111709-49", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Axle part rear", + "partClassification" : [ { + "value" : "Axle part rear", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Axle part rear" } - } ] - }, { - "catenaXId" : "urn:uuid:0654851d-4886-4ffe-b65d-9abe33ee5fa5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0654851d-4886-4ffe-b65d-9abe33ee5fa5", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -111231,40 +167377,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "676051", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "5707", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "00871379-44", "key" : "manufacturerPartId" }, { - "value" : "NO-250172776863311560772155", + "value" : "NO-647814508944148501691202", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:0654851d-4886-4ffe-b65d-9abe33ee5fa5", + "catenaXId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", "partTypeInformation" : { "manufacturerPartId" : "00871379-44", "customerPartId" : "00871379-44", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Chassis", "nameAtCustomer" : "Chassis" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", + "partTypeInformation" : { + "ownerPartId" : "00871379-44", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Chassis", + "partClassification" : [ { + "value" : "Chassis", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Chassis" } - } ] - }, { - "catenaXId" : "urn:uuid:6e5b3230-6a3e-4121-9773-ee9443234771", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6e5b3230-6a3e-4121-9773-ee9443234771", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -111275,40 +167518,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "26618", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "8901", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "08901347-87", "key" : "manufacturerPartId" }, { - "value" : "NO-924419152176780168151457", + "value" : "NO-248823758665297496645777", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:6e5b3230-6a3e-4121-9773-ee9443234771", + "catenaXId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", "partTypeInformation" : { "manufacturerPartId" : "08901347-87", "customerPartId" : "08901347-87", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Rims", "nameAtCustomer" : "Rims" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", + "partTypeInformation" : { + "ownerPartId" : "08901347-87", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Rims", + "partClassification" : [ { + "value" : "Rims", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Rims" } - } ] - }, { - "catenaXId" : "urn:uuid:f2fa3c64-d281-4307-bd47-4a4f4f9cc23e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f2fa3c64-d281-4307-bd47-4a4f4f9cc23e", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -111319,40 +167659,137 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "catenaXId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "911188", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "3536", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "45863316-60", "key" : "manufacturerPartId" }, { - "value" : "NO-973317028093725370037400", + "value" : "NO-648856597195950857904627", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:f2fa3c64-d281-4307-bd47-4a4f4f9cc23e", + "catenaXId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", "partTypeInformation" : { "manufacturerPartId" : "45863316-60", "customerPartId" : "45863316-60", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Tires", "nameAtCustomer" : "Tires" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", + "partTypeInformation" : { + "ownerPartId" : "45863316-60", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Tires", + "partClassification" : [ { + "value" : "Tires", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Tires" } - } ] - }, { - "catenaXId" : "urn:uuid:48f11887-b132-4daf-8358-5d0be475e7fc", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:48f11887-b132-4daf-8358-5d0be475e7fc", + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -111363,17 +167800,151 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 57, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 1, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 43, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "childItems" : [ { + "catenaXId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B3NX", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", "bpnl" : "BPNL00000003B2OM", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "836732", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "8877", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003B2OM", "key" : "manufacturerId" }, { - "value" : "1O222E8-43", + "value" : "42555H1-52", "key" : "manufacturerPartId" }, { - "value" : "NO-425877493417098462379397", + "value" : "NO-969650964344996854382343", "key" : "partInstanceId" }, { "value" : "Company 2", @@ -111384,18 +167955,116 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B2OM", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:48f11887-b132-4daf-8358-5d0be475e7fc", + "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", "partTypeInformation" : { - "manufacturerPartId" : "1O222E8-43", - "customerPartId" : "1O222E8-43", - "classification" : "component", + "manufacturerPartId" : "42555H1-52", + "customerPartId" : "42555H1-52", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Transmission", "nameAtCustomer" : "Transmission" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "manufacturerId" : "BPNL00000003B2OM", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9b4e5ec3-51bb-4ced-b0ab-b26c13b4bbf2", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:229a00f0-5b01-4e8b-9d7a-95ae3e94aace", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a9148af8-298a-40cf-8fb9-72e7f9d88edd", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "partTypeInformation" : { + "ownerPartId" : "42555H1-52", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Transmission", + "partClassification" : [ { + "value" : "Transmission", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "nameAtOwner" : "Transmission" } } ], - "urn:bamm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "urn:samm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { "productSpecificParameters" : { "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], "driveType" : "combustion engine", @@ -111436,10 +168105,10 @@ "documentTitle" : "Title A" } ] }, - "catenaXId" : "urn:uuid:48f11887-b132-4daf-8358-5d0be475e7fc", + "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", "identification" : { "localIdentifiers" : [ { - "value" : "NO-425877493417098462379397", + "value" : "NO-969650964344996854382343", "key" : "PartInstanceID" } ], "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", @@ -111505,109 +168174,12 @@ "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] } } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Carbon Steel", - "recycledContent" : 17, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 72.843 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - }, { - "materialName" : "Oil", - "recycledContent" : 22, - "materialClass" : "9.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 6.9 - }, - "aggregateState" : "liquid", - "materialAbbreviation" : "SAE40" - }, { - "materialName" : "Copper", - "recycledContent" : 51, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:48f11887-b132-4daf-8358-5d0be475e7fc", - "childItems" : [ { - "catenaXId" : "urn:uuid:7c6d6e9a-3db7-47da-9d4f-9707b8b453fb", - "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:644c0988-6949-4586-b304-7f46f412a5cc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4cb02c72-29ca-4941-802f-19cea19cb761", - "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:7c6d6e9a-3db7-47da-9d4f-9707b8b453fb", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:7c6d6e9a-3db7-47da-9d4f-9707b8b453fb", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7c6d6e9a-3db7-47da-9d4f-9707b8b453fb", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003B2OM", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -111618,14 +168190,14 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "Engineering Plastics", "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 67, + "recycledContent" : 61, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -111635,7 +168207,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 74, + "recycledContent" : 69, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -111644,15 +168216,128 @@ "aggregateState" : "solid", "materialAbbreviation" : "GF30" } ] - } ] - }, { - "catenaXId" : "urn:uuid:644c0988-6949-4586-b304-7f46f412a5cc", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:644c0988-6949-4586-b304-7f46f412a5cc", + } ], + "catenaXId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "417316", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "7728", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "partTypeInformation" : { + "manufacturerPartId" : "NY-00", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", "customers" : [ { "businessPartner" : "BPNL00000003B0Q0", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -111663,118 +168348,188 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "childItems" : [ { + "catenaXId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "918525", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "4830", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "75403Z4-23", + "value" : "28560P2-12", "key" : "manufacturerPartId" }, { - "value" : "NO-693579327022566743815951", + "value" : "NO-067369307894106711566433", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:644c0988-6949-4586-b304-7f46f412a5cc", + "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", "partTypeInformation" : { - "manufacturerPartId" : "75403Z4-23", - "customerPartId" : "75403Z4-23", - "classification" : "component", + "manufacturerPartId" : "28560P2-12", + "customerPartId" : "28560P2-12", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:644c0988-6949-4586-b304-7f46f412a5cc", + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { - "catenaXId" : "urn:uuid:2afbac90-a662-4f16-9058-4f030e692631", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f409347a-97a4-41b8-a0c5-e461fce6ab20", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:bamm:io.catenax.single_level_bom_as_specified:1.0.0#SingleLevelBomAsSpecified": [ { - "catenaXId": "urn:uuid:644c0988-6949-4586-b304-7f46f412a5cc", - "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:2afbac90-a662-4f16-9058-4f030e692631", - "businessPartner": "BPNL00000003B0Q0" - } ] - } ], - "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:644c0988-6949-4586-b304-7f46f412a5cc" - } ] - }, { - "catenaXId" : "urn:uuid:2afbac90-a662-4f16-9058-4f030e692631", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:2afbac90-a662-4f16-9058-4f030e692631", + "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "NTIER Product" + "ownerPartId" : "28560P2-12", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Sensor", + "partClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "nameAtOwner" : "Sensor" } } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "customers" : [ { + "businessPartner" : "BPNL00000003B3NX", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "NTIER Product", "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 51, + "recycledContent" : 55, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -111784,7 +168539,7 @@ "materialAbbreviation" : "" }, { "materialName" : "Other", - "recycledContent" : 11, + "recycledContent" : 2, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -111793,34 +168548,128 @@ "aggregateState" : "solid", "materialAbbreviation" : "" } ] - } ] - }, { - "catenaXId" : "urn:uuid:4cb02c72-29ca-4941-802f-19cea19cb761", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { + } ], + "catenaXId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "457148", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "2088", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", + "value" : "BPNL00000003B0Q0", "key" : "batchId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:4cb02c72-29ca-4941-802f-19cea19cb761", + "catenaXId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" + "manufacturerPartId" : "IB-48", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" } } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4cb02c72-29ca-4941-802f-19cea19cb761", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003B0Q0", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -111831,9 +168680,13 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "childItems" : [ ] } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Glue", "materialClass" : "6.2", @@ -111845,18 +168698,127 @@ "materialAbbreviation" : "GL338" } ] } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4cb02c72-29ca-4941-802f-19cea19cb761", + "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "179318", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "5658", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] - } ] - }, { - "catenaXId" : "urn:uuid:16d3c4f2-1b37-4911-8408-c496a270e72b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:16d3c4f2-1b37-4911-8408-c496a270e72b", + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "partTypeInformation" : { + "manufacturerPartId" : "BJ-61", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AXS3", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -111867,36 +168829,12 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003B5MJ", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", - "key" : "manufacturerId" - }, { - "value" : "84379G2-38", - "key" : "manufacturerPartId" - }, { - "value" : "NO-420427711721403219696143", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:16d3c4f2-1b37-4911-8408-c496a270e72b", - "partTypeInformation" : { - "manufacturerPartId" : "84379G2-38", - "customerPartId" : "84379G2-38", - "classification" : "component", - "nameAtManufacturer" : "ECU", - "nameAtCustomer" : "ECU" - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Glue", - "recycledContent" : 16, + "recycledContent" : 17, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -111906,67 +168844,226 @@ "materialAbbreviation" : "GL338" } ] } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:16d3c4f2-1b37-4911-8408-c496a270e72b", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", "childItems" : [ { - "catenaXId" : "urn:uuid:6f66152b-abcc-4f5a-98e5-b393934f811a", + "catenaXId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", "quantity" : { "quantityNumber" : 0.3301, "measurementUnit" : "unit:kilogram" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:51e2051d-3da0-45f2-8f1b-44fbb7a66182", + "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4200498b-585c-4f40-810b-593d62f6e531", + "catenaXId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", "quantity" : { "quantityNumber" : 0.2001, "measurementUnit" : "unit:kilogram" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:6f66152b-abcc-4f5a-98e5-b393934f811a", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { + } ], + "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "bpnl" : "BPNL00000003B5MJ", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "549588", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "5925", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", + "value" : "BPNL00000003B5MJ", "key" : "manufacturerId" }, { - "value" : "BID12345678", - "key" : "batchId" + "value" : "64019Q7-00", + "key" : "manufacturerPartId" + }, { + "value" : "NO-826773693399477683890623", + "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B5MJ", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:6f66152b-abcc-4f5a-98e5-b393934f811a", + "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" + "manufacturerPartId" : "64019Q7-00", + "customerPartId" : "64019Q7-00", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "manufacturerId" : "BPNL00000003B5MJ", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:be280555-de15-4b87-9b91-94684e83e0c9", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f78b0e12-91d7-43c1-ac31-fc5fa8057e24", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:99552ffe-2354-4627-9275-fab0debcd9da", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "partTypeInformation" : { + "ownerPartId" : "64019Q7-00", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ECU", + "partClassification" : [ { + "value" : "ECU", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "nameAtOwner" : "ECU" } } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6f66152b-abcc-4f5a-98e5-b393934f811a", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", "customers" : [ { "businessPartner" : "BPNL00000003B5MJ", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -111977,14 +169074,14 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "Glue", "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 33, + "recycledContent" : 66, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -111994,7 +169091,7 @@ "materialAbbreviation" : "AL7" }, { "materialName" : "Other", - "recycledContent" : 79, + "recycledContent" : 77, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -112003,15 +169100,128 @@ "aggregateState" : "solid", "materialAbbreviation" : "" } ] - } ] - }, { - "catenaXId" : "urn:uuid:51e2051d-3da0-45f2-8f1b-44fbb7a66182", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:51e2051d-3da0-45f2-8f1b-44fbb7a66182", + } ], + "catenaXId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "798954", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "9906", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "manufacturerId" : "BPNL00000003AXS3", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "partTypeInformation" : { + "manufacturerPartId" : "TQ-65", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AXS3", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -112022,74 +169232,188 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "childItems" : [ { + "catenaXId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], + "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "324779", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "8959", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "94117T3-09", + "value" : "81438W4-69", "key" : "manufacturerPartId" }, { - "value" : "NO-351591456348520108240514", + "value" : "NO-995949081304639517654037", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:51e2051d-3da0-45f2-8f1b-44fbb7a66182", + "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", "partTypeInformation" : { - "manufacturerPartId" : "94117T3-09", - "customerPartId" : "94117T3-09", - "classification" : "component", + "manufacturerPartId" : "81438W4-69", + "customerPartId" : "81438W4-69", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:51e2051d-3da0-45f2-8f1b-44fbb7a66182", + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { - "catenaXId" : "urn:uuid:fddfd05a-b0f1-4d9e-ace8-57bef6ccee3b", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fe8e1f2b-6448-41ac-9ade-d6586fc28853", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] - } ] - }, { - "catenaXId" : "urn:uuid:fddfd05a-b0f1-4d9e-ace8-57bef6ccee3b", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:fddfd05a-b0f1-4d9e-ace8-57bef6ccee3b", + "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" + "ownerPartId" : "81438W4-69", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Sensor", + "partClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "nameAtOwner" : "Sensor" } } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "customers" : [ { + "businessPartner" : "BPNL00000003B3NX", + "parentItems" : [ { + "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "Engineering Plastics", "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 35, + "recycledContent" : 31, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -112099,7 +169423,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 25, + "recycledContent" : 35, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -112108,57 +169432,146 @@ "aggregateState" : "solid", "materialAbbreviation" : "GF30" } ] - } ] - }, { - "catenaXId" : "urn:uuid:4200498b-585c-4f40-810b-593d62f6e531", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4200498b-585c-4f40-810b-593d62f6e531", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "368264", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "3966", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "13068L7-29", - "key" : "manufacturerPartId" - }, { - "value" : "NO-640922638213219348987097", - "key" : "partInstanceId" + "key" : "batchId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:4200498b-585c-4f40-810b-593d62f6e531", + "catenaXId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", "partTypeInformation" : { - "manufacturerPartId" : "13068L7-29", - "customerPartId" : "13068L7-29", - "classification" : "component", - "nameAtManufacturer" : "Engineering Plastics", - "nameAtCustomer" : "Engineering Plastics" + "manufacturerPartId" : "CW-13", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" } } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "materialName" : "Engineering Plastics", "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 84, + "recycledContent" : 4, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -112168,7 +169581,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 50, + "recycledContent" : 53, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -112177,26 +169590,136 @@ "aggregateState" : "solid", "materialAbbreviation" : "GF30" } ] - } ] - }, { - "urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { - "productConditions" : "at least 1990 model", - "desiredPrice" : { - "cost" : 15340, - "currency" : "EUR" + } ], + "catenaXId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "627552", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "2856", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "46106B9-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-016852990645172955032259", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] }, - "returnConditions" : "Wishes to buy", - "requestDate" : "2022-01-01", - "needsReturn" : true, - "latestReturnDate" : "2025-01-01" + "catenaXId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "partTypeInformation" : { + "manufacturerPartId" : "46106B9-16", + "customerPartId" : "46106B9-16", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "partTypeInformation" : { + "ownerPartId" : "46106B9-16", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Engineering Plastics", + "partClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "Engineering Plastics" + } } ], - "catenaXId" : "urn:uuid:5e5661bd-9d29-49a3-94f7-3981b9116a46", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5e5661bd-9d29-49a3-94f7-3981b9116a46", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003B0Q0", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -112207,17 +169730,19 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + } ] + }, { + "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "38049661-08", "key" : "manufacturerPartId" }, { - "value" : "NO-976472246108960547394078", + "value" : "NO-191917430528725375106893", "key" : "partInstanceId" }, { "value" : "Company 1", @@ -112228,295 +169753,27 @@ } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:5e5661bd-9d29-49a3-94f7-3981b9116a46", + "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", "partTypeInformation" : { "manufacturerPartId" : "38049661-08", "customerPartId" : "38049661-08", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "Battery", "nameAtCustomer" : "Battery" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "pack" - } ], - "productType" : "pack" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-976472246108960547394078", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 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" : 83, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { + "urn:samm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { "incoterms" : "DAP (Delivered at Place)", "image" : { "name" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -112553,7 +169810,7 @@ "key" : "JxkyvRnL" } ], "productLink" : "https://123", - "oeNumber" : "NO-976472246108960547394078", + "oeNumber" : "NO-191917430528725375106893", "category" : { "subCategory" : [ "Battery" ], "mainCategory" : [ "Audio, video, navigation" ] @@ -112565,7 +169822,126 @@ "sku" : "1002090, xYz.09, ABcXYZ", "mileage" : 120000.06 } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a272da79-26d7-4fbc-95d6-d45867b72487", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2c70eb5d-d1db-46d7-a5a4-968e4632e40c", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:926f4443-f04a-4ba2-93dd-a5f7db4b9ec1", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ae74877d-3423-484c-b431-71cc85145850", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d2dbda1c-1a8e-4a44-9cf3-b9ddde82d89e", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c7412f24-fd1f-49d5-8492-376df636a0b3", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:befab831-7855-4c24-a69d-82db4902c5ac", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:27ca6efa-3f00-41f9-9f47-51c8f244c473", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:cc88364a-4358-4b85-a61d-2b45391348ae", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", @@ -112576,99 +169952,99 @@ "value" : 1 }, "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" + "customerPartId" : "38049661-08", + "manufacturerPartId" : "38049661-08" } }, "typology" : { "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", + "description" : "This is the product description of a Battery", "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" + "code" : "27-05-02-91", + "definition" : "Traction battery, starter battery (parts)" }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" }, "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" + "issueDate" : "2023-10-09", + "version" : 1.7, + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 + "diameter" : 1086.0725, + "width" : 1086, + "length" : 2005, + "weight" : 661, + "height" : 318 }, "lifespan" : { - "unit" : "unit:day", - "value" : 36 + "unit" : "unit:year", + "value" : 19 } }, "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 + "placedOnMarket" : "2022-12-19", + "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-976472246108960547394078", + "value" : "NO-191917430528725375106893", "key" : "PartInstanceID" } ], - "gtin" : "12345678", + "gtin" : " 27217354", "additionalCode" : [ { "name" : "TARIC", - "value" : "8703 24 10 00" + "value" : "464053879" } ] }, "sources" : { "optional" : [ { "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, - "name" : "other" + "name" : "sustainability" } ], "mandatory" : { "safetyTransportation" : { - "header" : "Sustainability Document Material XY", + "header" : "Shipping guidelines", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", + "header" : "Laboratory test results HVB Module HV MODUL", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "safetyPackaging" : { - "header" : "Sustainability Document Material XY", + "header" : "Packaging instruction for HVB Module HV MODUL", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "declarationOfConformity" : [ { "document" : { "header" : "Sustainability Document Material XY", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "name" : "other" } ] @@ -112676,10 +170052,10 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2000-01-01", + "date" : "2024-01-13", "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" + "description" : "Battery test", + "title" : "Maintenance Service" } ], "reusablePackaging" : true, "spareParts" : [ { @@ -112688,179 +170064,260 @@ "producerId" : "BPNL1234567890ZZ" } ], "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", + "unit" : "unit:percent", "name" : "Lead", - "location" : "Housing", + "location" : "HvbCell", "concentration" : { - "left" : [ 3.592682E37 ] + "left" : [ 6.3151 ] }, - "id" : "RC0402" + "id" : "YM2584" } ] }, "additionalData" : [ { "data" : "23", "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", + "data" : "", + "description" : "", + "label" : "", "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" + "dataType" : "xsd:string", + "typeUnit" : "" } } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", + "description" : "", + "label" : "", "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" + "dataType" : "xsd:string", + "typeUnit" : "" } } ], "sustainability" : { "material" : [ { "recycled" : false, - "renewable" : true, + "renewable" : false, "percentage" : 5, "name" : "Aluminium" } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], + "critical" : [ "Cobalt" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { "extWBCSD_otherOperatorName" : "NSF", "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { + "productOrSectorSpecificRules" : [ { "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } + } ] } ], - "carbonContentTotal" : 2.5 + "carbonContentTotal" : 112 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL1234567890ZZ", + "importer" : "BPNL00000003B2OM", "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" + "facilityId" : "BPNL00000003B3NX", + "manufacturerId" : "BPNL00000003AYRE" } } } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5e5661bd-9d29-49a3-94f7-3981b9116a46", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 69, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 42, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 2, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", "childItems" : [ { - "catenaXId" : "urn:uuid:9a1fead0-c773-4429-8315-798363b1e688", + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2e1e4c68-4037-4e2c-b941-aced5c31c6e5", + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b6f2a91c-3493-450b-8e0a-4b06dc068091", + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:749b0248-a58e-4fbb-894b-2283cc63e9da", + "catenaXId" : "urn:uuid:d2dbda1c-1a8e-4a44-9cf3-b9ddde82d89e", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d895a759-5d14-42d5-a8e9-227e06dcb2c4", + "catenaXId" : "urn:uuid:befab831-7855-4c24-a69d-82db4902c5ac", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0d5ccdee-3518-430f-93ee-a8cd281ec3fa", + "catenaXId" : "urn:uuid:cc88364a-4358-4b85-a61d-2b45391348ae", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:9a1fead0-c773-4429-8315-798363b1e688", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9a1fead0-c773-4429-8315-798363b1e688", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "887964", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "1783", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-512541803832321624757924", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:9a1fead0-c773-4429-8315-798363b1e688", + "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "ownerPartId" : "38049661-08", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Battery", + "partClassification" : [ { + "value" : "Battery", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Battery" } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -113085,7 +170542,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-512541803832321624757924", + "batteryIDDMCCode" : "NO-191917430528725375106893", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -113096,10 +170553,30 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "pack" + } ], + "productType" : "pack" + } ], + "urn:samm: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:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 34, + "recycledContent" : 77, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -113109,7 +170586,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 24, + "recycledContent" : 89, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -113119,7 +170596,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 63, + "recycledContent" : 22, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -113129,361 +170606,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-512541803832321624757924", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9a1fead0-c773-4429-8315-798363b1e688", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c00f803b-44dd-4b9f-b7ce-6c33e8fccc8c", + "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:602a052a-7bba-4655-92b4-e757c0a9aa17", + "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d3dba80b-2178-4459-95d2-352dbf8c013a", + "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bdb1abbc-4850-4177-b082-a5621b9ec401", + "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6193d5fc-3473-4ec0-98d4-81313ef8165a", + "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8cf50fa7-4776-48ad-a3a7-e1a4ab136bc3", + "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1e109713-c265-447f-aa2e-a9af0a2800a0", + "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5a47df52-f924-42dc-9b95-80ee37f87d34", + "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:71ff9911-6269-4e6c-9b20-ec854f310075", + "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f7bd1570-504d-4c0e-a9e4-5aa20bb40582", + "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:c00f803b-44dd-4b9f-b7ce-6c33e8fccc8c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c00f803b-44dd-4b9f-b7ce-6c33e8fccc8c", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "298796", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "5373", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-663773695099474871124839", + "value" : "NO-225047452744455302636553", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:c00f803b-44dd-4b9f-b7ce-6c33e8fccc8c", + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4abdf863-5c92-4597-acc4-df683a905d42", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c931e6e6-f903-4bd9-9fb1-198c62b74bd8", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fa3e56c6-550c-4f2a-970d-2c7cad4b962d", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:52b808cd-bd9b-451a-baba-99be73c3c7dd", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:70c2a674-8246-4922-ac74-5cf37d0f3df4", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:bae04eaa-ae94-4153-8708-a69bb7cf1da6", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:676d16ce-6204-4fb7-b2bb-9ba0dd87666d", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d47d5975-669c-4c11-8b27-2aadfd3ebe71", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:458090b2-a5d3-44cf-843c-70a8c2d07464", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9b9ca33c-7116-40c6-8634-12c43e84c5d8", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:50d33e5f-89b3-40b5-b1fe-3a3884174be3", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -113708,7 +171277,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-663773695099474871124839", + "batteryIDDMCCode" : "NO-225047452744455302636553", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -113719,32 +171288,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c00f803b-44dd-4b9f-b7ce-6c33e8fccc8c", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2024-02-18", + "version" : 1.3, + "status" : "Approved" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6302, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 17 + } + }, + "commercial" : { + "placedOnMarket" : "2024-02-05", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-225047452744455302636553", + "key" : "PartInstanceID" + } ], + "gtin" : " 14780081", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "409566483" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "SubstanceOfConcern", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-02-26", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 1.9548 ] + }, + "id" : "SS5922" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Others" + } ], + "critical" : [ "Cobalt" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 101 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AXS3", + "manufacturer" : { + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-02-13", + "currentStateOfHealthTimestamp" : "2019-03-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-20", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -113753,28 +171527,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:602a052a-7bba-4655-92b4-e757c0a9aa17", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:602a052a-7bba-4655-92b4-e757c0a9aa17", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "725804", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 9 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "2851", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -113782,31 +171603,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-620315123591647885753743", + "value" : "NO-053023736599742615848117", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:602a052a-7bba-4655-92b4-e757c0a9aa17", + "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:54182658-d04f-465b-8f01-a728b833239e", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -113815,7 +171661,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -114040,7 +171904,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-620315123591647885753743", + "batteryIDDMCCode" : "NO-053023736599742615848117", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -114051,32 +171915,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:602a052a-7bba-4655-92b4-e757c0a9aa17", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-07-20", + "currentStateOfHealthTimestamp" : "2022-03-23", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-13", + "currentStateOfHealthTimestamp" : "2024-02-18", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -114085,28 +171975,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d3dba80b-2178-4459-95d2-352dbf8c013a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d3dba80b-2178-4459-95d2-352dbf8c013a", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "816796", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "1874", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -114114,31 +172051,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-726392138657610388185617", + "value" : "NO-732864797332146475523520", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:d3dba80b-2178-4459-95d2-352dbf8c013a", + "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:59835551-c523-48bf-b101-a46ac58c71af", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -114147,7 +172109,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -114372,7 +172352,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-726392138657610388185617", + "batteryIDDMCCode" : "NO-732864797332146475523520", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -114383,32 +172363,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d3dba80b-2178-4459-95d2-352dbf8c013a", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-03-15", + "currentStateOfHealthTimestamp" : "2021-05-03", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-11", + "currentStateOfHealthTimestamp" : "2024-02-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -114417,28 +172423,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:bdb1abbc-4850-4177-b082-a5621b9ec401", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bdb1abbc-4850-4177-b082-a5621b9ec401", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] } ], + "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "544648", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "8094", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -114446,31 +172499,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-101218796599706195990497", + "value" : "NO-319097498421815324263900", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:bdb1abbc-4850-4177-b082-a5621b9ec401", + "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:44f7751a-913f-440f-ac80-fb65c2995962", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -114479,7 +172557,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -114704,7 +172800,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-101218796599706195990497", + "batteryIDDMCCode" : "NO-319097498421815324263900", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -114715,32 +172811,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bdb1abbc-4850-4177-b082-a5621b9ec401", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-05-01", + "currentStateOfHealthTimestamp" : "2016-01-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-05", + "currentStateOfHealthTimestamp" : "2024-03-09", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -114749,28 +172871,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6193d5fc-3473-4ec0-98d4-81313ef8165a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6193d5fc-3473-4ec0-98d4-81313ef8165a", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "858159", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "8825", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -114778,31 +172947,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-247582276812002481058190", + "value" : "NO-640293564015841806077713", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:6193d5fc-3473-4ec0-98d4-81313ef8165a", + "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:af32bd0f-dfc8-4288-842c-0f271e7897a2", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -114811,7 +173005,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -115036,7 +173248,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-247582276812002481058190", + "batteryIDDMCCode" : "NO-640293564015841806077713", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -115047,32 +173259,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6193d5fc-3473-4ec0-98d4-81313ef8165a", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-07-31", + "currentStateOfHealthTimestamp" : "2022-01-23", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-27", + "currentStateOfHealthTimestamp" : "2024-02-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -115081,28 +173319,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8cf50fa7-4776-48ad-a3a7-e1a4ab136bc3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8cf50fa7-4776-48ad-a3a7-e1a4ab136bc3", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "487026", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 9 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "6119", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -115110,31 +173395,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-437256345126091469875524", + "value" : "NO-407255088704313260876574", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:8cf50fa7-4776-48ad-a3a7-e1a4ab136bc3", + "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ca42c12d-0261-411f-ac01-f5470fdf6dcc", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -115143,7 +173453,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -115368,7 +173696,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-437256345126091469875524", + "batteryIDDMCCode" : "NO-407255088704313260876574", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -115379,32 +173707,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8cf50fa7-4776-48ad-a3a7-e1a4ab136bc3", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-02-03", + "currentStateOfHealthTimestamp" : "2018-12-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-09", + "currentStateOfHealthTimestamp" : "2024-03-14", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -115413,28 +173767,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1e109713-c265-447f-aa2e-a9af0a2800a0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1e109713-c265-447f-aa2e-a9af0a2800a0", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "377925", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "3125", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -115442,31 +173843,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-332207189859704722234653", + "value" : "NO-005247654431541669301900", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:1e109713-c265-447f-aa2e-a9af0a2800a0", + "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4e658c29-5d6c-450c-8e38-22b1e7865515", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -115475,7 +173901,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -115700,7 +174144,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-332207189859704722234653", + "batteryIDDMCCode" : "NO-005247654431541669301900", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -115711,32 +174155,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1e109713-c265-447f-aa2e-a9af0a2800a0", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-08-04", + "currentStateOfHealthTimestamp" : "2022-04-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-11", + "currentStateOfHealthTimestamp" : "2024-03-09", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -115745,28 +174215,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5a47df52-f924-42dc-9b95-80ee37f87d34", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5a47df52-f924-42dc-9b95-80ee37f87d34", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "899144", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "4990", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -115774,31 +174291,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-715046808791460064881548", + "value" : "NO-780079092640291814128113", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:5a47df52-f924-42dc-9b95-80ee37f87d34", + "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ac6e4d6e-7747-4276-b180-de7de0434af9", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -115807,7 +174349,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -116032,7 +174592,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-715046808791460064881548", + "batteryIDDMCCode" : "NO-780079092640291814128113", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -116043,32 +174603,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5a47df52-f924-42dc-9b95-80ee37f87d34", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-07-15", + "currentStateOfHealthTimestamp" : "2021-06-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-15", + "currentStateOfHealthTimestamp" : "2024-03-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -116077,28 +174663,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:71ff9911-6269-4e6c-9b20-ec854f310075", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:71ff9911-6269-4e6c-9b20-ec854f310075", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "235877", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "6294", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -116106,31 +174739,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-838485911761861451054805", + "value" : "NO-498860958581428795638850", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:71ff9911-6269-4e6c-9b20-ec854f310075", + "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:508524ec-32c0-44e1-a888-5792e65b603e", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -116139,7 +174797,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -116364,7 +175040,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-838485911761861451054805", + "batteryIDDMCCode" : "NO-498860958581428795638850", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -116375,32 +175051,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:71ff9911-6269-4e6c-9b20-ec854f310075", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-10-27", + "currentStateOfHealthTimestamp" : "2017-08-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-20", + "currentStateOfHealthTimestamp" : "2024-02-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -116409,28 +175111,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f7bd1570-504d-4c0e-a9e4-5aa20bb40582", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f7bd1570-504d-4c0e-a9e4-5aa20bb40582", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "641749", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "7206", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -116438,31 +175187,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-825277456494895731976082", + "value" : "NO-439183532206865037256516", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:f7bd1570-504d-4c0e-a9e4-5aa20bb40582", + "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:135aad36-9dcc-4371-80aa-dd154f43b993", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -116471,7 +175245,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -116696,7 +175488,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-825277456494895731976082", + "batteryIDDMCCode" : "NO-439183532206865037256516", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -116707,32 +175499,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f7bd1570-504d-4c0e-a9e4-5aa20bb40582", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-04-29", + "currentStateOfHealthTimestamp" : "2015-02-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-09", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -116741,60 +175559,159 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2e1e4c68-4037-4e2c-b941-aced5c31c6e5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2e1e4c68-4037-4e2c-b941-aced5c31c6e5", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "395682", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9300", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840837-48", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-655658653329694417120323", + "value" : "NO-677437679047578781943212", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:2e1e4c68-4037-4e2c-b941-aced5c31c6e5", + "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:634cd7dd-9090-468e-9e91-cc286eccb9e1", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -117019,7 +175936,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-655658653329694417120323", + "batteryIDDMCCode" : "NO-677437679047578781943212", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -117030,10 +175947,36 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 12, + "recycledContent" : 43, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -117043,7 +175986,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 16, + "recycledContent" : 11, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -117053,7 +175996,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 51, + "recycledContent" : 12, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -117063,361 +176006,453 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-655658653329694417120323", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2e1e4c68-4037-4e2c-b941-aced5c31c6e5", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e7556add-9360-4b5b-9ee2-6ca7bfdbc8f0", + "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:20e94bb0-76c8-4442-b4d1-1989682145b4", + "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:dee6e146-d1ac-4b4c-9324-994d487ebc3b", + "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:15c84dd5-3499-46d3-8b0c-ef6322405847", + "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:50f12916-ac5b-4c09-ab5f-d8cc15925a63", + "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:51ff2452-5ff8-4b63-b073-7c12067b433f", + "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:51f1472c-0d83-47ca-9dbb-de6c6e3cf79c", + "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4b3b34f8-4a6d-4704-8f97-254e077dfe9e", + "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4771a5e3-41a2-4570-a7c2-e3d3c088d356", + "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:450320d9-8e82-4a78-bb51-c91f0ad49a52", + "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:e7556add-9360-4b5b-9ee2-6ca7bfdbc8f0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e7556add-9360-4b5b-9ee2-6ca7bfdbc8f0", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "174324", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "3450", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-190561599305610952387805", + "value" : "NO-501018305274784241602073", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:e7556add-9360-4b5b-9ee2-6ca7bfdbc8f0", + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7005e9ff-95c3-4bd2-8bfd-66ab8fbc303b", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d3f3cf42-a96e-4d3c-8d03-7d066ea0036b", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ea6af487-5e6c-4f3f-843d-61f43eaea0c3", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fae704ff-3e17-44b9-bdee-193c432cf0f3", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fdd6c61a-0001-4800-8abb-1be0a38c170c", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2ea28c34-ca0e-4f63-ad60-55e245621623", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:598c43f3-72c8-4951-906a-a3798416e804", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:703769af-1d9a-4acc-a985-30ef7290e07a", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:030202dc-0537-4956-bcfb-f7418398730c", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a6e0d698-113b-49d9-a766-e3f0c60b9c3e", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:752a5318-a0c1-42c6-b2ee-05b355f8f9e6", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -117642,7 +176677,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-190561599305610952387805", + "batteryIDDMCCode" : "NO-501018305274784241602073", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -117653,32 +176688,237 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e7556add-9360-4b5b-9ee2-6ca7bfdbc8f0", + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-09-10", + "version" : 2.5, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.682, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 17 + } + }, + "commercial" : { + "placedOnMarket" : "2020-01-27", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-501018305274784241602073", + "key" : "PartInstanceID" + } ], + "gtin" : " 94170391", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "717119110" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2023-11-17", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 8.5621 ] + }, + "id" : "JU8706" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "UV Varnish" + } ], + "critical" : [ "Graphite" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 113 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AYRE", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-10-24", + "currentStateOfHealthTimestamp" : "2019-08-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-01", + "currentStateOfHealthTimestamp" : "2024-03-06", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -117687,28 +176927,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:20e94bb0-76c8-4442-b4d1-1989682145b4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:20e94bb0-76c8-4442-b4d1-1989682145b4", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "68136", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "4731", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -117716,31 +177003,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-280225426191935868353640", + "value" : "NO-713498680690089344875157", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:20e94bb0-76c8-4442-b4d1-1989682145b4", + "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:db2e23a7-d8ef-4bb6-9711-b63286662691", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -117749,7 +177061,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -117974,7 +177304,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-280225426191935868353640", + "batteryIDDMCCode" : "NO-713498680690089344875157", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -117985,32 +177315,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:20e94bb0-76c8-4442-b4d1-1989682145b4", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-31", + "currentStateOfHealthTimestamp" : "2014-12-02", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-04", + "currentStateOfHealthTimestamp" : "2024-02-22", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -118019,28 +177375,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:dee6e146-d1ac-4b4c-9324-994d487ebc3b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:dee6e146-d1ac-4b4c-9324-994d487ebc3b", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "489279", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "8875", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -118048,31 +177451,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-335548916428002012126381", + "value" : "NO-754901179164912952471287", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:dee6e146-d1ac-4b4c-9324-994d487ebc3b", + "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1004fb48-3648-4f61-bc67-dd0112550aaf", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -118081,7 +177509,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -118306,7 +177752,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-335548916428002012126381", + "batteryIDDMCCode" : "NO-754901179164912952471287", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -118317,32 +177763,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:dee6e146-d1ac-4b4c-9324-994d487ebc3b", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-09-09", + "currentStateOfHealthTimestamp" : "2018-12-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-04", + "currentStateOfHealthTimestamp" : "2024-02-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -118351,28 +177823,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:15c84dd5-3499-46d3-8b0c-ef6322405847", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:15c84dd5-3499-46d3-8b0c-ef6322405847", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "659447", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "2372", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -118380,31 +177899,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-104931362838122480667135", + "value" : "NO-212384038764272037807021", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:15c84dd5-3499-46d3-8b0c-ef6322405847", + "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ac4d19b7-72da-4a03-a860-98bcdb1bf69d", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -118413,7 +177957,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -118638,7 +178200,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-104931362838122480667135", + "batteryIDDMCCode" : "NO-212384038764272037807021", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -118649,32 +178211,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:15c84dd5-3499-46d3-8b0c-ef6322405847", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-07-31", + "currentStateOfHealthTimestamp" : "2016-07-23", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-28", + "currentStateOfHealthTimestamp" : "2024-02-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -118683,28 +178271,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:50f12916-ac5b-4c09-ab5f-d8cc15925a63", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:50f12916-ac5b-4c09-ab5f-d8cc15925a63", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "474433", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "6538", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -118712,31 +178347,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-943472158936211585763962", + "value" : "NO-281978893666347349939292", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:50f12916-ac5b-4c09-ab5f-d8cc15925a63", + "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f1e4467c-8639-4f9c-a119-7cd31e41d021", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -118745,7 +178405,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -118970,7 +178648,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-943472158936211585763962", + "batteryIDDMCCode" : "NO-281978893666347349939292", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -118981,32 +178659,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:50f12916-ac5b-4c09-ab5f-d8cc15925a63", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-07-13", + "currentStateOfHealthTimestamp" : "2021-05-16", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-27", + "currentStateOfHealthTimestamp" : "2024-02-22", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -119015,28 +178719,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:51ff2452-5ff8-4b63-b073-7c12067b433f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:51ff2452-5ff8-4b63-b073-7c12067b433f", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "681473", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "6801", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -119044,31 +178795,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-965342311999428080018916", + "value" : "NO-197282769557955963065227", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:51ff2452-5ff8-4b63-b073-7c12067b433f", + "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e30d0e57-17ac-442f-8793-874349153f9a", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -119077,7 +178853,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -119302,7 +179096,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-965342311999428080018916", + "batteryIDDMCCode" : "NO-197282769557955963065227", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -119313,32 +179107,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:51ff2452-5ff8-4b63-b073-7c12067b433f", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-11-21", + "currentStateOfHealthTimestamp" : "2016-02-22", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-19", + "currentStateOfHealthTimestamp" : "2024-02-16", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -119347,28 +179167,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:51f1472c-0d83-47ca-9dbb-de6c6e3cf79c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:51f1472c-0d83-47ca-9dbb-de6c6e3cf79c", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "614739", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "2371", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -119376,31 +179243,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-904716457208572902158263", + "value" : "NO-513627497057751447854533", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:51f1472c-0d83-47ca-9dbb-de6c6e3cf79c", + "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8efa5dca-68db-4de1-979a-59cad63e1c6d", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -119409,7 +179301,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -119634,7 +179544,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-904716457208572902158263", + "batteryIDDMCCode" : "NO-513627497057751447854533", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -119645,49 +179555,20 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:51f1472c-0d83-47ca-9dbb-de6c6e3cf79c", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-09-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4b3b34f8-4a6d-4704-8f97-254e077dfe9e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4b3b34f8-4a6d-4704-8f97-254e077dfe9e", + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -119698,311 +179579,34 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-049825724890310330436831", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4b3b34f8-4a6d-4704-8f97-254e077dfe9e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-049825724890310330436831", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4b3b34f8-4a6d-4704-8f97-254e077dfe9e", + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-03-07", + "currentStateOfHealthTimestamp" : "2014-07-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-05", + "currentStateOfHealthTimestamp" : "2024-02-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -120011,28 +179615,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4771a5e3-41a2-4570-a7c2-e3d3c088d356", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4771a5e3-41a2-4570-a7c2-e3d3c088d356", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "970142", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "2928", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -120040,31 +179691,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-699263661800789355434144", + "value" : "NO-222036500728807004532007", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:4771a5e3-41a2-4570-a7c2-e3d3c088d356", + "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6a68c0ef-5bcd-4851-8be8-9c7594c4d226", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -120073,7 +179749,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -120298,7 +179992,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-699263661800789355434144", + "batteryIDDMCCode" : "NO-222036500728807004532007", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -120309,32 +180003,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4771a5e3-41a2-4570-a7c2-e3d3c088d356", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-05-06", + "currentStateOfHealthTimestamp" : "2020-04-29", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-07", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -120343,28 +180063,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:450320d9-8e82-4a78-bb51-c91f0ad49a52", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:450320d9-8e82-4a78-bb51-c91f0ad49a52", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "577396", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "5747", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -120372,363 +180139,83 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-187266885145459446362104", + "value" : "NO-867497373255801160984990", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:450320d9-8e82-4a78-bb51-c91f0ad49a52", + "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-187266885145459446362104", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:450320d9-8e82-4a78-bb51-c91f0ad49a52", + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-03-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b6f2a91c-3493-450b-8e0a-4b06dc068091", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b6f2a91c-3493-450b-8e0a-4b06dc068091", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, "measurementUnit" : "unit:litre" }, + "ownerItemId" : "urn:uuid:9302bb26-ce53-4b0f-8d74-2ef39075b3ef", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-296149391334455694628790", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b6f2a91c-3493-450b-8e0a-4b06dc068091", + "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -120945,207526 +180432,39 @@ "value" : "68161-12" }, "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-296149391334455694628790", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 60, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-296149391334455694628790", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b6f2a91c-3493-450b-8e0a-4b06dc068091", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ca920333-83ab-4be6-952e-59c565ba5481", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d479e0b7-7345-4bdd-8043-df841ebf08d7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7296bdd8-097b-4abf-bb0a-9966850b9f30", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:78fe51a9-1af5-4118-88c9-49427f686a1f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7701c6ac-fd19-4ea0-af9e-8b2b0bd16ea6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:319c9f39-c04a-49b6-b2e8-094618d3ba73", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0fe5b8f8-264a-4019-8186-ae5a6e81b353", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:64a2fd8c-cec4-4416-aa5e-d78d41aea118", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c0c97f21-9792-4d27-aef9-8057b770109b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2dfb63d9-3af5-4261-9e7b-ecf9d99960c1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:ca920333-83ab-4be6-952e-59c565ba5481", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ca920333-83ab-4be6-952e-59c565ba5481", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-214612854753293243037297", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ca920333-83ab-4be6-952e-59c565ba5481", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-214612854753293243037297", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ca920333-83ab-4be6-952e-59c565ba5481", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-08-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d479e0b7-7345-4bdd-8043-df841ebf08d7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d479e0b7-7345-4bdd-8043-df841ebf08d7", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-461616223018807187495423", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d479e0b7-7345-4bdd-8043-df841ebf08d7", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-461616223018807187495423", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d479e0b7-7345-4bdd-8043-df841ebf08d7", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-04-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7296bdd8-097b-4abf-bb0a-9966850b9f30", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7296bdd8-097b-4abf-bb0a-9966850b9f30", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-351817244186809429333060", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7296bdd8-097b-4abf-bb0a-9966850b9f30", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-351817244186809429333060", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7296bdd8-097b-4abf-bb0a-9966850b9f30", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-08-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:78fe51a9-1af5-4118-88c9-49427f686a1f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:78fe51a9-1af5-4118-88c9-49427f686a1f", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-085497910364695779755279", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:78fe51a9-1af5-4118-88c9-49427f686a1f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-085497910364695779755279", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:78fe51a9-1af5-4118-88c9-49427f686a1f", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-11-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7701c6ac-fd19-4ea0-af9e-8b2b0bd16ea6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7701c6ac-fd19-4ea0-af9e-8b2b0bd16ea6", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-762326650491128713035383", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7701c6ac-fd19-4ea0-af9e-8b2b0bd16ea6", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-762326650491128713035383", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7701c6ac-fd19-4ea0-af9e-8b2b0bd16ea6", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-09-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-23", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:319c9f39-c04a-49b6-b2e8-094618d3ba73", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:319c9f39-c04a-49b6-b2e8-094618d3ba73", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-093239386793593753417607", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:319c9f39-c04a-49b6-b2e8-094618d3ba73", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-093239386793593753417607", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:319c9f39-c04a-49b6-b2e8-094618d3ba73", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-07-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0fe5b8f8-264a-4019-8186-ae5a6e81b353", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0fe5b8f8-264a-4019-8186-ae5a6e81b353", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-963257885703358124185698", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0fe5b8f8-264a-4019-8186-ae5a6e81b353", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-963257885703358124185698", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0fe5b8f8-264a-4019-8186-ae5a6e81b353", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-05-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-23", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:64a2fd8c-cec4-4416-aa5e-d78d41aea118", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:64a2fd8c-cec4-4416-aa5e-d78d41aea118", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-204936026608469260217969", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:64a2fd8c-cec4-4416-aa5e-d78d41aea118", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-204936026608469260217969", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:64a2fd8c-cec4-4416-aa5e-d78d41aea118", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-01-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-10", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c0c97f21-9792-4d27-aef9-8057b770109b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c0c97f21-9792-4d27-aef9-8057b770109b", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-122220500019443867943981", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c0c97f21-9792-4d27-aef9-8057b770109b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-122220500019443867943981", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c0c97f21-9792-4d27-aef9-8057b770109b", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-10-24", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2dfb63d9-3af5-4261-9e7b-ecf9d99960c1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2dfb63d9-3af5-4261-9e7b-ecf9d99960c1", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-867974788934517640327591", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2dfb63d9-3af5-4261-9e7b-ecf9d99960c1", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-867974788934517640327591", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2dfb63d9-3af5-4261-9e7b-ecf9d99960c1", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-06-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:749b0248-a58e-4fbb-894b-2283cc63e9da", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:749b0248-a58e-4fbb-894b-2283cc63e9da", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-470920464374004526327852", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:749b0248-a58e-4fbb-894b-2283cc63e9da", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-470920464374004526327852", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 2, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-470920464374004526327852", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:749b0248-a58e-4fbb-894b-2283cc63e9da", - "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cd1f3fe7-d6ac-40af-81e0-c0d11ea413c7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3aeac318-8692-41a6-a478-f80e0633f525", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f82ace40-a08e-4f7c-a7b6-0775778c91fa", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8d9ce701-b9df-49f6-b282-351d169e9981", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9f89caa4-d3ef-4814-9f45-c968d77177c4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4c536669-bb7f-425f-8243-9791233bad81", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1ca70990-f33b-428d-8609-2e4eee765159", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7f1184a8-2998-48a3-8b28-3713e9ac9b46", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8315060a-942e-42f2-8007-49d767bcb370", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ae426400-4535-41c6-946e-b53f4cdf62fc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:cd1f3fe7-d6ac-40af-81e0-c0d11ea413c7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cd1f3fe7-d6ac-40af-81e0-c0d11ea413c7", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-772850861034728968615278", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cd1f3fe7-d6ac-40af-81e0-c0d11ea413c7", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-772850861034728968615278", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cd1f3fe7-d6ac-40af-81e0-c0d11ea413c7", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-06-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3aeac318-8692-41a6-a478-f80e0633f525", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3aeac318-8692-41a6-a478-f80e0633f525", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-392662037625281939228419", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3aeac318-8692-41a6-a478-f80e0633f525", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-392662037625281939228419", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3aeac318-8692-41a6-a478-f80e0633f525", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-04-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f82ace40-a08e-4f7c-a7b6-0775778c91fa", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f82ace40-a08e-4f7c-a7b6-0775778c91fa", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-274637345268334886134733", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f82ace40-a08e-4f7c-a7b6-0775778c91fa", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-274637345268334886134733", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f82ace40-a08e-4f7c-a7b6-0775778c91fa", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-08-12", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8d9ce701-b9df-49f6-b282-351d169e9981", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8d9ce701-b9df-49f6-b282-351d169e9981", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-651557452630090626502820", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8d9ce701-b9df-49f6-b282-351d169e9981", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-651557452630090626502820", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8d9ce701-b9df-49f6-b282-351d169e9981", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-01-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9f89caa4-d3ef-4814-9f45-c968d77177c4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9f89caa4-d3ef-4814-9f45-c968d77177c4", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-201446530704802271068132", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9f89caa4-d3ef-4814-9f45-c968d77177c4", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-201446530704802271068132", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9f89caa4-d3ef-4814-9f45-c968d77177c4", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-01-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4c536669-bb7f-425f-8243-9791233bad81", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4c536669-bb7f-425f-8243-9791233bad81", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-391999647967748865966542", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4c536669-bb7f-425f-8243-9791233bad81", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-391999647967748865966542", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4c536669-bb7f-425f-8243-9791233bad81", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-04-09", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1ca70990-f33b-428d-8609-2e4eee765159", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ca70990-f33b-428d-8609-2e4eee765159", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-237524800105673819746983", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1ca70990-f33b-428d-8609-2e4eee765159", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-237524800105673819746983", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ca70990-f33b-428d-8609-2e4eee765159", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-09-14", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7f1184a8-2998-48a3-8b28-3713e9ac9b46", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7f1184a8-2998-48a3-8b28-3713e9ac9b46", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-510228143072492978257553", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7f1184a8-2998-48a3-8b28-3713e9ac9b46", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-510228143072492978257553", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7f1184a8-2998-48a3-8b28-3713e9ac9b46", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-02-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8315060a-942e-42f2-8007-49d767bcb370", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8315060a-942e-42f2-8007-49d767bcb370", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-426238303511728246019169", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8315060a-942e-42f2-8007-49d767bcb370", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-426238303511728246019169", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8315060a-942e-42f2-8007-49d767bcb370", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-01-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:ae426400-4535-41c6-946e-b53f4cdf62fc", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ae426400-4535-41c6-946e-b53f4cdf62fc", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-465440317080808691675620", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ae426400-4535-41c6-946e-b53f4cdf62fc", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-465440317080808691675620", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ae426400-4535-41c6-946e-b53f4cdf62fc", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-07-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-28", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d895a759-5d14-42d5-a8e9-227e06dcb2c4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d895a759-5d14-42d5-a8e9-227e06dcb2c4", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-844728925257692002730907", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d895a759-5d14-42d5-a8e9-227e06dcb2c4", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-844728925257692002730907", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 73, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-844728925257692002730907", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d895a759-5d14-42d5-a8e9-227e06dcb2c4", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:74bd600f-21d7-41d1-9b71-3089f795115d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:639ee0eb-e96e-426f-8523-5a4e71ed0e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:53a23db7-56b9-43c8-85c4-ede30dcd2dcb", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5cc94add-1245-4cd9-9ac0-6b964c14bc8a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:58521e67-5f43-47a7-9e4f-2412a44c17f8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4e4871b6-2e1f-4f9a-9bf4-b9e6fd44ac0b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5b7fb7c3-3158-4ee0-8558-309c6e5e932a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ad9a83cd-f2eb-4164-b267-9354a458d537", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c655cff6-8542-459f-818d-84507a7ad7be", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5a2c7816-235f-4811-bc61-4d1c0b4d3de9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:74bd600f-21d7-41d1-9b71-3089f795115d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:74bd600f-21d7-41d1-9b71-3089f795115d", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-779943361663569641790074", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:74bd600f-21d7-41d1-9b71-3089f795115d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-779943361663569641790074", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:74bd600f-21d7-41d1-9b71-3089f795115d", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-08-31", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-11", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:639ee0eb-e96e-426f-8523-5a4e71ed0e8c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:639ee0eb-e96e-426f-8523-5a4e71ed0e8c", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-358601835708940616487445", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:639ee0eb-e96e-426f-8523-5a4e71ed0e8c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-358601835708940616487445", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:639ee0eb-e96e-426f-8523-5a4e71ed0e8c", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-05-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:53a23db7-56b9-43c8-85c4-ede30dcd2dcb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:53a23db7-56b9-43c8-85c4-ede30dcd2dcb", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-079812977033606026644793", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:53a23db7-56b9-43c8-85c4-ede30dcd2dcb", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-079812977033606026644793", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:53a23db7-56b9-43c8-85c4-ede30dcd2dcb", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-04-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-03", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5cc94add-1245-4cd9-9ac0-6b964c14bc8a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5cc94add-1245-4cd9-9ac0-6b964c14bc8a", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-611197991621931631452570", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5cc94add-1245-4cd9-9ac0-6b964c14bc8a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-611197991621931631452570", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5cc94add-1245-4cd9-9ac0-6b964c14bc8a", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-04-13", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:58521e67-5f43-47a7-9e4f-2412a44c17f8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:58521e67-5f43-47a7-9e4f-2412a44c17f8", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-803085332960305656434043", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:58521e67-5f43-47a7-9e4f-2412a44c17f8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-803085332960305656434043", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:58521e67-5f43-47a7-9e4f-2412a44c17f8", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-09-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4e4871b6-2e1f-4f9a-9bf4-b9e6fd44ac0b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4e4871b6-2e1f-4f9a-9bf4-b9e6fd44ac0b", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-327912846948626430749009", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4e4871b6-2e1f-4f9a-9bf4-b9e6fd44ac0b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-327912846948626430749009", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4e4871b6-2e1f-4f9a-9bf4-b9e6fd44ac0b", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-10-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5b7fb7c3-3158-4ee0-8558-309c6e5e932a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5b7fb7c3-3158-4ee0-8558-309c6e5e932a", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-752516763915208066216950", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5b7fb7c3-3158-4ee0-8558-309c6e5e932a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-752516763915208066216950", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5b7fb7c3-3158-4ee0-8558-309c6e5e932a", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-01-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:ad9a83cd-f2eb-4164-b267-9354a458d537", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ad9a83cd-f2eb-4164-b267-9354a458d537", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-172947289448499955509736", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ad9a83cd-f2eb-4164-b267-9354a458d537", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-172947289448499955509736", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ad9a83cd-f2eb-4164-b267-9354a458d537", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-11-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c655cff6-8542-459f-818d-84507a7ad7be", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c655cff6-8542-459f-818d-84507a7ad7be", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-679995592835910133202724", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c655cff6-8542-459f-818d-84507a7ad7be", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-679995592835910133202724", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c655cff6-8542-459f-818d-84507a7ad7be", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-02-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5a2c7816-235f-4811-bc61-4d1c0b4d3de9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5a2c7816-235f-4811-bc61-4d1c0b4d3de9", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-425676071086723281260559", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5a2c7816-235f-4811-bc61-4d1c0b4d3de9", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-425676071086723281260559", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5a2c7816-235f-4811-bc61-4d1c0b4d3de9", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-01-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0d5ccdee-3518-430f-93ee-a8cd281ec3fa", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0d5ccdee-3518-430f-93ee-a8cd281ec3fa", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-348686341256525252231605", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0d5ccdee-3518-430f-93ee-a8cd281ec3fa", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-348686341256525252231605", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 23, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 24, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-348686341256525252231605", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0d5ccdee-3518-430f-93ee-a8cd281ec3fa", - "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:75669917-1838-4d1f-8294-017d5bf38d38", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4e16f84a-2976-4b5a-aa70-864f17d0ec12", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:12d90acd-bae1-4278-b040-5c44635e90b9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d9395c05-7d08-4339-a03f-a8bad65610d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c3f14397-f0c1-4a99-82d7-0b19bc9738d2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:917fc4c7-d1f7-4e94-ab0a-13e5da4c79d1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:16883ad9-fe7a-4317-a4d1-1ba24d4266a9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4cec1572-0690-4feb-b667-374080176fe1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6e1011d7-6618-48c9-9c8f-e4152d9e8e66", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b26cffd8-f355-49a3-8b77-463259974756", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:75669917-1838-4d1f-8294-017d5bf38d38", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:75669917-1838-4d1f-8294-017d5bf38d38", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-763809895455868588823315", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:75669917-1838-4d1f-8294-017d5bf38d38", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-763809895455868588823315", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:75669917-1838-4d1f-8294-017d5bf38d38", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-06-10", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4e16f84a-2976-4b5a-aa70-864f17d0ec12", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4e16f84a-2976-4b5a-aa70-864f17d0ec12", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-153605747620131755747083", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4e16f84a-2976-4b5a-aa70-864f17d0ec12", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-153605747620131755747083", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4e16f84a-2976-4b5a-aa70-864f17d0ec12", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-11-18", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:12d90acd-bae1-4278-b040-5c44635e90b9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:12d90acd-bae1-4278-b040-5c44635e90b9", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-945216538118233553841396", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:12d90acd-bae1-4278-b040-5c44635e90b9", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-945216538118233553841396", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:12d90acd-bae1-4278-b040-5c44635e90b9", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-08-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d9395c05-7d08-4339-a03f-a8bad65610d3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d9395c05-7d08-4339-a03f-a8bad65610d3", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-629215963245860229677936", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d9395c05-7d08-4339-a03f-a8bad65610d3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-629215963245860229677936", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d9395c05-7d08-4339-a03f-a8bad65610d3", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-08-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-06", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c3f14397-f0c1-4a99-82d7-0b19bc9738d2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c3f14397-f0c1-4a99-82d7-0b19bc9738d2", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-196386266171408655113612", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c3f14397-f0c1-4a99-82d7-0b19bc9738d2", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-196386266171408655113612", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c3f14397-f0c1-4a99-82d7-0b19bc9738d2", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-05-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:917fc4c7-d1f7-4e94-ab0a-13e5da4c79d1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:917fc4c7-d1f7-4e94-ab0a-13e5da4c79d1", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-956402231548252154827590", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:917fc4c7-d1f7-4e94-ab0a-13e5da4c79d1", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-956402231548252154827590", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:917fc4c7-d1f7-4e94-ab0a-13e5da4c79d1", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-10-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-10", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:16883ad9-fe7a-4317-a4d1-1ba24d4266a9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:16883ad9-fe7a-4317-a4d1-1ba24d4266a9", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-390368693774839025101744", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:16883ad9-fe7a-4317-a4d1-1ba24d4266a9", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-390368693774839025101744", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:16883ad9-fe7a-4317-a4d1-1ba24d4266a9", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-04-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4cec1572-0690-4feb-b667-374080176fe1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4cec1572-0690-4feb-b667-374080176fe1", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-606259927249080892173070", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4cec1572-0690-4feb-b667-374080176fe1", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-606259927249080892173070", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4cec1572-0690-4feb-b667-374080176fe1", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-03-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6e1011d7-6618-48c9-9c8f-e4152d9e8e66", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6e1011d7-6618-48c9-9c8f-e4152d9e8e66", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-120756435928378839184899", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6e1011d7-6618-48c9-9c8f-e4152d9e8e66", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-120756435928378839184899", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6e1011d7-6618-48c9-9c8f-e4152d9e8e66", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-08-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-20", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b26cffd8-f355-49a3-8b77-463259974756", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b26cffd8-f355-49a3-8b77-463259974756", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-409630792810856747617110", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b26cffd8-f355-49a3-8b77-463259974756", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-409630792810856747617110", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b26cffd8-f355-49a3-8b77-463259974756", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-07-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Schräghecklimousine", - "catenaXId" : "urn:uuid:4a792137-7159-4d09-916c-fd64d1dae45b", - "engine" : { - "size" : 2998, - "power" : 143 - }, - "emptyWeight" : 1.73, - "fuel" : "Elektro", - "vehicleModel" : "Vehicle Fully Electric", - "productionDateGMT" : "2010-01-01", - "equipmentVariants" : [ { - "code" : "S218A", - "description" : "sport automatic transmission", - "group" : "special equipment" - }, { - "code" : "S2AVB", - "description" : "adaptive drive", - "group" : "special equipment" - }, { - "code" : "A01CR", - "description" : "remote engine start", - "group" : "special equipment" - }, { - "code" : "C247R", - "description" : "trailer hitch", - "group" : "special equipment" - } ], - "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", - "mileage" : [ { - "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2019-07-07", - "mileageDistance" : 120000 - } ] - } ], - "catenaXId" : "urn:uuid:4a792137-7159-4d09-916c-fd64d1dae45b", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "MM-41", - "key" : "manufacturerPartId" - }, { - "value" : "OMCENOSGJGEFIIHJX", - "key" : "partInstanceId" - }, { - "value" : "OMCENOSGJGEFIIHJX", - "key" : "van" - } ], - "manufacturingInformation" : { - "date" : "2016-01-18T15:01:12.000Z", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4a792137-7159-4d09-916c-fd64d1dae45b", - "partTypeInformation" : { - "manufacturerPartId" : "MM-41", - "classification" : "product", - "nameAtManufacturer" : "Vehicle Fully Electric" - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Iron", - "recycledContent" : 85, - "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" : 88, - "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" : 53, - "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" : 8, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 382.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - }, { - "materialName" : "Cooper", - "recycledContent" : 67, - "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" : 52, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 5.12 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "TEX1" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4a792137-7159-4d09-916c-fd64d1dae45b", - "childItems" : [ { - "catenaXId" : "urn:uuid:43353feb-1f4f-4051-87e3-74d50af3cb13", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5486ef4b-5dd0-4f4b-9104-9dc48a382419", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:67e40371-70fe-4b4b-8b0e-f14b53cd0eaa", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:70714edc-2137-4062-90a4-68ad23959fbf", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c81baac1-142e-4d4f-b6a8-aae23aabe121", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:84a1c103-0d82-4713-a469-15692eef5d08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f8fbff9d-12f4-421f-812b-28e7aab6c84c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2bb96d88-176d-4791-922c-8589b071cf28", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ce101161-9043-4562-b55b-b00541d77709", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:62e4ec07-c039-4129-a593-111f52d79736", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:393d618c-5e42-4841-a482-bc0c882caa33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d70faafa-78bf-4f5e-8b9f-8aaf8687abec", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ffb6a444-dbb3-4350-a754-acc2cffeb323", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:064e260d-4522-4f7c-ad2d-36d1f6ee8f7a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:385721c2-27ff-4c7a-a420-859a011e8997", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e75ddb4d-423b-4160-a9c1-add9c3b47fe5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:267cfdf1-a4c4-485d-9122-ea497833691e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5a2bb2b0-724f-4b29-ae5a-bac111db3e32", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1868cac3-6712-47ad-882c-0db700b45e83", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4b8c9b70-0c09-4ce1-b2fe-9223a48a7d22", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:bb0d9666-dad2-4c5c-9f1f-3f96f76c0755", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6a9dd084-798d-4c98-b544-32b13ce56c53", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cfedb351-4f2d-432c-9e67-5dff3c08a5b3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d5bb8537-de85-4be8-bf81-4ca32da9e18b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:67e38ea3-3e97-4ca3-9fb1-a4c3930ea955", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cc9b3841-d918-4a20-b9a3-e98175e38a2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:74ce3948-f52f-4424-a198-8b4389c02e97", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:eca58b2d-9e2c-41d9-8b2e-130e93fe2cbe", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:dea3f0e5-d741-493f-a5b8-9b00e5656be6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:91d117c0-7d40-4fb1-b5c3-c4f7db28ea6f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B2OM", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:02fb3bbd-62e0-46f5-936e-f789ed0f58d2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B5MJ", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1e9d8ee6-29a8-4b6b-ac8d-d00cb9ce080b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:43353feb-1f4f-4051-87e3-74d50af3cb13", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:43353feb-1f4f-4051-87e3-74d50af3cb13", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "73849201-61", - "key" : "manufacturerPartId" - }, { - "value" : "NO-772355862814389798858391", - "key" : "partInstanceId" - }, { - "value" : "Company 10", - "key" : "company" - }, { - "value" : "Brand 10", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:43353feb-1f4f-4051-87e3-74d50af3cb13", - "partTypeInformation" : { - "manufacturerPartId" : "73849201-61", - "customerPartId" : "73849201-61", - "classification" : "component", - "nameAtManufacturer" : "Catalysator", - "nameAtCustomer" : "Catalysator" - } - } ] - }, { - "catenaXId" : "urn:uuid:5486ef4b-5dd0-4f4b-9104-9dc48a382419", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5486ef4b-5dd0-4f4b-9104-9dc48a382419", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "22782277-50", - "key" : "manufacturerPartId" - }, { - "value" : "NO-686723972286002062357448", - "key" : "partInstanceId" - }, { - "value" : "Company 3", - "key" : "company" - }, { - "value" : "Brand 3", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5486ef4b-5dd0-4f4b-9104-9dc48a382419", - "partTypeInformation" : { - "manufacturerPartId" : "22782277-50", - "customerPartId" : "22782277-50", - "classification" : "component", - "nameAtManufacturer" : "Door f-l", - "nameAtCustomer" : "Door front-left" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5486ef4b-5dd0-4f4b-9104-9dc48a382419", - "childItems" : [ { - "catenaXId" : "urn:uuid:9eaa9058-d49e-42ea-a2c8-ac2d9afdc05d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:9eaa9058-d49e-42ea-a2c8-ac2d9afdc05d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9eaa9058-d49e-42ea-a2c8-ac2d9afdc05d", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-545484830535096427036344", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9eaa9058-d49e-42ea-a2c8-ac2d9afdc05d", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "62068135JWQ", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:9eaa9058-d49e-42ea-a2c8-ac2d9afdc05d", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:67e40371-70fe-4b4b-8b0e-f14b53cd0eaa", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:67e40371-70fe-4b4b-8b0e-f14b53cd0eaa", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "95657362-64", - "key" : "manufacturerPartId" - }, { - "value" : "NO-591909102405887160464705", - "key" : "partInstanceId" - }, { - "value" : "Company 4", - "key" : "company" - }, { - "value" : "Brand 4", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:67e40371-70fe-4b4b-8b0e-f14b53cd0eaa", - "partTypeInformation" : { - "manufacturerPartId" : "33740332-54", - "customerPartId" : "33740332-54", - "classification" : "component", - "nameAtManufacturer" : "Door f-r", - "nameAtCustomer" : "Door front-right" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:67e40371-70fe-4b4b-8b0e-f14b53cd0eaa", - "childItems" : [ { - "catenaXId" : "urn:uuid:6a9d326b-f72d-4892-82ca-f4297910e929", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:6a9d326b-f72d-4892-82ca-f4297910e929", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6a9d326b-f72d-4892-82ca-f4297910e929", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-577788665696177589309181", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6a9d326b-f72d-4892-82ca-f4297910e929", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "73478204JDF", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:6a9d326b-f72d-4892-82ca-f4297910e929", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:70714edc-2137-4062-90a4-68ad23959fbf", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:70714edc-2137-4062-90a4-68ad23959fbf", - "customers" : [ { - "businessPartner" : false, - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "15635759-16", - "key" : "manufacturerPartId" - }, { - "value" : "NO-311627887882907050463425", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:70714edc-2137-4062-90a4-68ad23959fbf", - "partTypeInformation" : { - "manufacturerPartId" : "15635759-16", - "customerPartId" : "15635759-16", - "classification" : "component", - "nameAtManufacturer" : "Door r-l", - "nameAtCustomer" : "Door rear-left" - } - } ] - }, { - "catenaXId" : "urn:uuid:c81baac1-142e-4d4f-b6a8-aae23aabe121", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c81baac1-142e-4d4f-b6a8-aae23aabe121", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "28673126-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-323388421140177048114721", - "key" : "partInstanceId" - }, { - "value" : "Company 5", - "key" : "company" - }, { - "value" : "Brand 5", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c81baac1-142e-4d4f-b6a8-aae23aabe121", - "partTypeInformation" : { - "manufacturerPartId" : "28673126-98", - "customerPartId" : "28673126-98", - "classification" : "component", - "nameAtManufacturer" : "Door r-r", - "nameAtCustomer" : "Door rear-right" - } - } ] - }, { - "catenaXId" : "urn:uuid:84a1c103-0d82-4713-a469-15692eef5d08", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:84a1c103-0d82-4713-a469-15692eef5d08", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "94421589-82", - "key" : "manufacturerPartId" - }, { - "value" : "NO-834367437580208819929533", - "key" : "partInstanceId" - }, { - "value" : "Company 6", - "key" : "company" - }, { - "value" : "Brand 6", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:84a1c103-0d82-4713-a469-15692eef5d08", - "partTypeInformation" : { - "manufacturerPartId" : "94421589-82", - "customerPartId" : "94421589-82", - "classification" : "component", - "nameAtManufacturer" : "Engine hood", - "nameAtCustomer" : "Engine hood" - } - } ] - }, { - "catenaXId" : "urn:uuid:f8fbff9d-12f4-421f-812b-28e7aab6c84c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f8fbff9d-12f4-421f-812b-28e7aab6c84c", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "85023955-75", - "key" : "manufacturerPartId" - }, { - "value" : "NO-408719180648338545381206", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f8fbff9d-12f4-421f-812b-28e7aab6c84c", - "partTypeInformation" : { - "manufacturerPartId" : "85023955-75", - "customerPartId" : "85023955-75", - "classification" : "component", - "nameAtManufacturer" : "Tailgate", - "nameAtCustomer" : "Tailgate" - } - } ] - }, { - "catenaXId" : "urn:uuid:2bb96d88-176d-4791-922c-8589b071cf28", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2bb96d88-176d-4791-922c-8589b071cf28", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "13769860-47", - "key" : "manufacturerPartId" - }, { - "value" : "NO-564267035947964566790859", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2bb96d88-176d-4791-922c-8589b071cf28", - "partTypeInformation" : { - "manufacturerPartId" : "13769860-47", - "customerPartId" : "13769860-47", - "classification" : "component", - "nameAtManufacturer" : "Fender left", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:ce101161-9043-4562-b55b-b00541d77709", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ce101161-9043-4562-b55b-b00541d77709", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "36643162-35", - "key" : "manufacturerPartId" - }, { - "value" : "NO-085631245585765715654767", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ce101161-9043-4562-b55b-b00541d77709", - "partTypeInformation" : { - "manufacturerPartId" : "36643162-35", - "customerPartId" : "36643162-35", - "classification" : "component", - "nameAtManufacturer" : "Fender right", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:62e4ec07-c039-4129-a593-111f52d79736", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:62e4ec07-c039-4129-a593-111f52d79736", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "54165444-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-327267141065577834725641", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:62e4ec07-c039-4129-a593-111f52d79736", - "partTypeInformation" : { - "manufacturerPartId" : "54165444-59", - "customerPartId" : "54165444-59", - "classification" : "component", - "nameAtManufacturer" : "Bumper front", - "nameAtCustomer" : "Bumper front" - } - } ] - }, { - "catenaXId" : "urn:uuid:393d618c-5e42-4841-a482-bc0c882caa33", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:393d618c-5e42-4841-a482-bc0c882caa33", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "22768257-25", - "key" : "manufacturerPartId" - }, { - "value" : "NO-406734375374926893794124", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:393d618c-5e42-4841-a482-bc0c882caa33", - "partTypeInformation" : { - "manufacturerPartId" : "22768257-25", - "customerPartId" : "22768257-25", - "classification" : "component", - "nameAtManufacturer" : "Bumper rear", - "nameAtCustomer" : "Bumper rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:d70faafa-78bf-4f5e-8b9f-8aaf8687abec", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d70faafa-78bf-4f5e-8b9f-8aaf8687abec", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "65529521-37", - "key" : "manufacturerPartId" - }, { - "value" : "NO-722595458415097424724311", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d70faafa-78bf-4f5e-8b9f-8aaf8687abec", - "partTypeInformation" : { - "manufacturerPartId" : "65529521-37", - "customerPartId" : "65529521-37", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror left", - "nameAtCustomer" : "Exterior mirror left" - } - } ] - }, { - "catenaXId" : "urn:uuid:ffb6a444-dbb3-4350-a754-acc2cffeb323", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ffb6a444-dbb3-4350-a754-acc2cffeb323", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "58471477-24", - "key" : "manufacturerPartId" - }, { - "value" : "NO-890393589405219930804294", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ffb6a444-dbb3-4350-a754-acc2cffeb323", - "partTypeInformation" : { - "manufacturerPartId" : "58471477-24", - "customerPartId" : "58471477-24", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror right", - "nameAtCustomer" : "Exterior mirror right" - } - } ] - }, { - "catenaXId" : "urn:uuid:064e260d-4522-4f7c-ad2d-36d1f6ee8f7a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:064e260d-4522-4f7c-ad2d-36d1f6ee8f7a", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "09002013-68", - "key" : "manufacturerPartId" - }, { - "value" : "NO-407156986173194731537012", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:064e260d-4522-4f7c-ad2d-36d1f6ee8f7a", - "partTypeInformation" : { - "manufacturerPartId" : "09002013-68", - "customerPartId" : "09002013-68", - "classification" : "component", - "nameAtManufacturer" : "Trailer coupling", - "nameAtCustomer" : "Tailer coupling" - } - } ] - }, { - "catenaXId" : "urn:uuid:385721c2-27ff-4c7a-a420-859a011e8997", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:385721c2-27ff-4c7a-a420-859a011e8997", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "43501996-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-797657851719748581120005", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:385721c2-27ff-4c7a-a420-859a011e8997", - "partTypeInformation" : { - "manufacturerPartId" : "43501996-98", - "customerPartId" : "43501996-98", - "classification" : "component", - "nameAtManufacturer" : "Dashboard", - "nameAtCustomer" : "Dashboard" - } - } ] - }, { - "catenaXId" : "urn:uuid:e75ddb4d-423b-4160-a9c1-add9c3b47fe5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e75ddb4d-423b-4160-a9c1-add9c3b47fe5", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "77795937-13", - "key" : "manufacturerPartId" - }, { - "value" : "NO-549673964943634756932924", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e75ddb4d-423b-4160-a9c1-add9c3b47fe5", - "partTypeInformation" : { - "manufacturerPartId" : "77795937-13", - "customerPartId" : "77795937-13", - "classification" : "component", - "nameAtManufacturer" : "Steering wheel", - "nameAtCustomer" : "Steering wheel" - } - } ] - }, { - "catenaXId" : "urn:uuid:267cfdf1-a4c4-485d-9122-ea497833691e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:267cfdf1-a4c4-485d-9122-ea497833691e", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "20125432-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-029707135839229372443953", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:267cfdf1-a4c4-485d-9122-ea497833691e", - "partTypeInformation" : { - "manufacturerPartId" : "20125432-59", - "customerPartId" : "20125432-59", - "classification" : "component", - "nameAtManufacturer" : "Indicator left", - "nameAtCustomer" : "Indicator left" - } - } ] - }, { - "catenaXId" : "urn:uuid:5a2bb2b0-724f-4b29-ae5a-bac111db3e32", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5a2bb2b0-724f-4b29-ae5a-bac111db3e32", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "19073706-76", - "key" : "manufacturerPartId" - }, { - "value" : "NO-021291235994403555089980", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5a2bb2b0-724f-4b29-ae5a-bac111db3e32", - "partTypeInformation" : { - "manufacturerPartId" : "19073706-76", - "customerPartId" : "19073706-76", - "classification" : "component", - "nameAtManufacturer" : "Indicator right", - "nameAtCustomer" : "Indicator right" - } - } ] - }, { - "catenaXId" : "urn:uuid:1868cac3-6712-47ad-882c-0db700b45e83", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1868cac3-6712-47ad-882c-0db700b45e83", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "45415162-57", - "key" : "manufacturerPartId" - }, { - "value" : "NO-494633191660304117071815", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1868cac3-6712-47ad-882c-0db700b45e83", - "partTypeInformation" : { - "manufacturerPartId" : "45415162-57", - "customerPartId" : "45415162-57", - "classification" : "component", - "nameAtManufacturer" : "Led headlight", - "nameAtCustomer" : "Led headlight" - } - } ] - }, { - "catenaXId" : "urn:uuid:4b8c9b70-0c09-4ce1-b2fe-9223a48a7d22", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4b8c9b70-0c09-4ce1-b2fe-9223a48a7d22", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "78141846-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-901282334242985511143003", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4b8c9b70-0c09-4ce1-b2fe-9223a48a7d22", - "partTypeInformation" : { - "manufacturerPartId" : "78141846-87", - "customerPartId" : "78141846-87", - "classification" : "component", - "nameAtManufacturer" : "Starter motor", - "nameAtCustomer" : "Starter motor" - } - } ] - }, { - "catenaXId" : "urn:uuid:bb0d9666-dad2-4c5c-9f1f-3f96f76c0755", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bb0d9666-dad2-4c5c-9f1f-3f96f76c0755", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "81324139-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-793061968047670443382724", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:bb0d9666-dad2-4c5c-9f1f-3f96f76c0755", - "partTypeInformation" : { - "manufacturerPartId" : "81324139-23", - "customerPartId" : "81324139-23", - "classification" : "component", - "nameAtManufacturer" : "Alternator", - "nameAtCustomer" : "Alternator" - } - } ] - }, { - "catenaXId" : "urn:uuid:6a9dd084-798d-4c98-b544-32b13ce56c53", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6a9dd084-798d-4c98-b544-32b13ce56c53", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "57929013-09", - "key" : "manufacturerPartId" - }, { - "value" : "NO-433900185185365488949332", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6a9dd084-798d-4c98-b544-32b13ce56c53", - "partTypeInformation" : { - "manufacturerPartId" : "57929013-09", - "customerPartId" : "57929013-09", - "classification" : "component", - "nameAtManufacturer" : "AC compressor", - "nameAtCustomer" : "Air conditioning compressor" - } - } ] - }, { - "catenaXId" : "urn:uuid:cfedb351-4f2d-432c-9e67-5dff3c08a5b3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cfedb351-4f2d-432c-9e67-5dff3c08a5b3", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "61184040-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-262794647106748834263379", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cfedb351-4f2d-432c-9e67-5dff3c08a5b3", - "partTypeInformation" : { - "manufacturerPartId" : "61184040-23", - "customerPartId" : "61184040-23", - "classification" : "component", - "nameAtManufacturer" : "Taillight rear", - "nameAtCustomer" : "Taillight rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:d5bb8537-de85-4be8-bf81-4ca32da9e18b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d5bb8537-de85-4be8-bf81-4ca32da9e18b", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "78744126-74", - "key" : "manufacturerPartId" - }, { - "value" : "NO-893482093614525902677434", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d5bb8537-de85-4be8-bf81-4ca32da9e18b", - "partTypeInformation" : { - "manufacturerPartId" : "78744126-74", - "customerPartId" : "78744126-74", - "classification" : "component", - "nameAtManufacturer" : "Taillight front", - "nameAtCustomer" : "Taillight front" - } - } ] - }, { - "catenaXId" : "urn:uuid:67e38ea3-3e97-4ca3-9fb1-a4c3930ea955", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:67e38ea3-3e97-4ca3-9fb1-a4c3930ea955", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "12093297-03", - "key" : "manufacturerPartId" - }, { - "value" : "NO-177937750579382949211281", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:67e38ea3-3e97-4ca3-9fb1-a4c3930ea955", - "partTypeInformation" : { - "manufacturerPartId" : "12093297-03", - "customerPartId" : "12093297-03", - "classification" : "component", - "nameAtManufacturer" : "Axle part front", - "nameAtCustomer" : "Axle part front" - } - } ] - }, { - "catenaXId" : "urn:uuid:cc9b3841-d918-4a20-b9a3-e98175e38a2f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cc9b3841-d918-4a20-b9a3-e98175e38a2f", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "88111709-49", - "key" : "manufacturerPartId" - }, { - "value" : "NO-398096452671871533527945", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cc9b3841-d918-4a20-b9a3-e98175e38a2f", - "partTypeInformation" : { - "manufacturerPartId" : "88111709-49", - "customerPartId" : "88111709-49", - "classification" : "component", - "nameAtManufacturer" : "Axle part rear", - "nameAtCustomer" : "Axle part rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:74ce3948-f52f-4424-a198-8b4389c02e97", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:74ce3948-f52f-4424-a198-8b4389c02e97", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "00871379-44", - "key" : "manufacturerPartId" - }, { - "value" : "NO-700112455904607972016523", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:74ce3948-f52f-4424-a198-8b4389c02e97", - "partTypeInformation" : { - "manufacturerPartId" : "00871379-44", - "customerPartId" : "00871379-44", - "classification" : "component", - "nameAtManufacturer" : "Chassis", - "nameAtCustomer" : "Chassis" - } - } ] - }, { - "catenaXId" : "urn:uuid:eca58b2d-9e2c-41d9-8b2e-130e93fe2cbe", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:eca58b2d-9e2c-41d9-8b2e-130e93fe2cbe", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "08901347-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-785401836021189024799272", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:eca58b2d-9e2c-41d9-8b2e-130e93fe2cbe", - "partTypeInformation" : { - "manufacturerPartId" : "08901347-87", - "customerPartId" : "08901347-87", - "classification" : "component", - "nameAtManufacturer" : "Rims", - "nameAtCustomer" : "Rims" - } - } ] - }, { - "catenaXId" : "urn:uuid:dea3f0e5-d741-493f-a5b8-9b00e5656be6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:dea3f0e5-d741-493f-a5b8-9b00e5656be6", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "45863316-60", - "key" : "manufacturerPartId" - }, { - "value" : "NO-652993218710556572660210", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:dea3f0e5-d741-493f-a5b8-9b00e5656be6", - "partTypeInformation" : { - "manufacturerPartId" : "45863316-60", - "customerPartId" : "45863316-60", - "classification" : "component", - "nameAtManufacturer" : "Tires", - "nameAtCustomer" : "Tires" - } - } ] - }, { - "catenaXId" : "urn:uuid:91d117c0-7d40-4fb1-b5c3-c4f7db28ea6f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:91d117c0-7d40-4fb1-b5c3-c4f7db28ea6f", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B2OM", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B2OM", - "key" : "manufacturerId" - }, { - "value" : "1O222E8-43", - "key" : "manufacturerPartId" - }, { - "value" : "NO-998376991812467209383793", - "key" : "partInstanceId" - }, { - "value" : "Company 2", - "key" : "company" - }, { - "value" : "Brand 2", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:91d117c0-7d40-4fb1-b5c3-c4f7db28ea6f", - "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:91d117c0-7d40-4fb1-b5c3-c4f7db28ea6f", - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-998376991812467209383793", - "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.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Carbon Steel", - "recycledContent" : 39, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 72.843 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - }, { - "materialName" : "Oil", - "recycledContent" : 49, - "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" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:91d117c0-7d40-4fb1-b5c3-c4f7db28ea6f", - "childItems" : [ { - "catenaXId" : "urn:uuid:337f1d67-5b96-41c7-b640-faaa7cd53baf", - "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6cf80b07-07eb-4a3d-82b8-db326bbda4f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f2f34b2a-1af4-46b2-9a54-6a9cc43158a9", - "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:337f1d67-5b96-41c7-b640-faaa7cd53baf", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:337f1d67-5b96-41c7-b640-faaa7cd53baf", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:337f1d67-5b96-41c7-b640-faaa7cd53baf", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B0Q0", - "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" : 81, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 30 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:6cf80b07-07eb-4a3d-82b8-db326bbda4f2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6cf80b07-07eb-4a3d-82b8-db326bbda4f2", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "40913L1-49", - "key" : "manufacturerPartId" - }, { - "value" : "NO-112993717125719362820957", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6cf80b07-07eb-4a3d-82b8-db326bbda4f2", - "partTypeInformation" : { - "manufacturerPartId" : "40913L1-49", - "customerPartId" : "40913L1-49", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6cf80b07-07eb-4a3d-82b8-db326bbda4f2", - "childItems" : [ { - "catenaXId" : "urn:uuid:e23e6e9c-849b-47ea-ba49-4fc426fe2c94", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:e23e6e9c-849b-47ea-ba49-4fc426fe2c94", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:e23e6e9c-849b-47ea-ba49-4fc426fe2c94", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "NTIER Product" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "NTIER Product", - "materialClass" : "5.5", - "component" : [ { - "materialName" : "Aluminium oxide", - "recycledContent" : 54, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 60 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - }, { - "materialName" : "Other", - "recycledContent" : 55, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:percent", - "value" : 40 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:f2f34b2a-1af4-46b2-9a54-6a9cc43158a9", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:f2f34b2a-1af4-46b2-9a54-6a9cc43158a9", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f2f34b2a-1af4-46b2-9a54-6a9cc43158a9", - "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.2341", - "materialAbbreviation" : "GL338" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f2f34b2a-1af4-46b2-9a54-6a9cc43158a9", - "childItems" : [ ] - } ] - }, { - "catenaXId" : "urn:uuid:02fb3bbd-62e0-46f5-936e-f789ed0f58d2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:02fb3bbd-62e0-46f5-936e-f789ed0f58d2", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B5MJ", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", - "key" : "manufacturerId" - }, { - "value" : "56825K0-03", - "key" : "manufacturerPartId" - }, { - "value" : "NO-892754222922867493766475", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:02fb3bbd-62e0-46f5-936e-f789ed0f58d2", - "partTypeInformation" : { - "manufacturerPartId" : "56825K0-03", - "customerPartId" : "56825K0-03", - "classification" : "component", - "nameAtManufacturer" : "ECU", - "nameAtCustomer" : "ECU" - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "recycledContent" : 30, - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.3301 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GL338" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:02fb3bbd-62e0-46f5-936e-f789ed0f58d2", - "childItems" : [ { - "catenaXId" : "urn:uuid:9468f25a-0ee2-4580-9b5c-ead47afc4574", - "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e78ff72e-1994-4cef-8012-bd95eb9f16e7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:914030ef-bd06-4141-bbb8-f9319ba0f53d", - "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:9468f25a-0ee2-4580-9b5c-ead47afc4574", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:9468f25a-0ee2-4580-9b5c-ead47afc4574", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9468f25a-0ee2-4580-9b5c-ead47afc4574", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Glue", - "materialClass" : "5.5", - "component" : [ { - "materialName" : "Aluminium oxide", - "recycledContent" : 73, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "AL7" - }, { - "materialName" : "Other", - "recycledContent" : 11, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:e78ff72e-1994-4cef-8012-bd95eb9f16e7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e78ff72e-1994-4cef-8012-bd95eb9f16e7", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "93595S6-42", - "key" : "manufacturerPartId" - }, { - "value" : "NO-770069045513913772633034", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e78ff72e-1994-4cef-8012-bd95eb9f16e7", - "partTypeInformation" : { - "manufacturerPartId" : "93595S6-42", - "customerPartId" : "93595S6-42", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e78ff72e-1994-4cef-8012-bd95eb9f16e7", - "childItems" : [ { - "catenaXId" : "urn:uuid:2e29c5a3-de63-4c54-b0f3-3ebd0574eeb7", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:2e29c5a3-de63-4c54-b0f3-3ebd0574eeb7", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:2e29c5a3-de63-4c54-b0f3-3ebd0574eeb7", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "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" : 55, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 30 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:914030ef-bd06-4141-bbb8-f9319ba0f53d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:914030ef-bd06-4141-bbb8-f9319ba0f53d", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "55332T7-56", - "key" : "manufacturerPartId" - }, { - "value" : "NO-542204223203744364449635", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:914030ef-bd06-4141-bbb8-f9319ba0f53d", - "partTypeInformation" : { - "manufacturerPartId" : "55332T7-56", - "customerPartId" : "55332T7-56", - "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" : 69, - "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.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" - } ], - "catenaXId" : "urn:uuid:1e9d8ee6-29a8-4b6b-ac8d-d00cb9ce080b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1e9d8ee6-29a8-4b6b-ac8d-d00cb9ce080b", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "38049661-08", - "key" : "manufacturerPartId" - }, { - "value" : "NO-916123911823597620540702", - "key" : "partInstanceId" - }, { - "value" : "Company 1", - "key" : "company" - }, { - "value" : "Brand 1", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1e9d8ee6-29a8-4b6b-ac8d-d00cb9ce080b", - "partTypeInformation" : { - "manufacturerPartId" : "38049661-08", - "customerPartId" : "38049661-08", - "classification" : "component", - "nameAtManufacturer" : "Battery", - "nameAtCustomer" : "Battery" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "pack" - } ], - "productType" : "pack" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-916123911823597620540702", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 5.4 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 16, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 11.75 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 44, - "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" : false, - "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" : "38049661-08", - "technicalSpecification" : [ { - "technicalValue" : "RYtGKbgicZaHCBRQDSx", - "key" : "JxkyvRnL" - } ], - "productLink" : "https://123", - "oeNumber" : "NO-916123911823597620540702", - "category" : { - "subCategory" : [ "Battery" ], - "mainCategory" : [ "Audio, video, navigation" ] - }, - "originalManufacturer" : "Company 1", - "brand" : "Brand 1", - "productDescription" : "Battery" - }, - "sku" : "1002090, xYz.09, ABcXYZ", - "mileage" : 120000.06 - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-916123911823597620540702", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1e9d8ee6-29a8-4b6b-ac8d-d00cb9ce080b", - "childItems" : [ { - "catenaXId" : "urn:uuid:6adbe8cf-5c30-41c3-ba28-d729b55c6ae9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:37889454-c6dd-4086-b638-c3cc567bda16", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:92ef5ced-37cf-4152-897b-989e1a121a0d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3a5046ff-82b0-44aa-b475-e289c7a2f682", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1503e965-9cbe-42be-894b-0c101c2407e1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a2c7db2e-fa9c-4781-9140-ca7a890d0ac3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:6adbe8cf-5c30-41c3-ba28-d729b55c6ae9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6adbe8cf-5c30-41c3-ba28-d729b55c6ae9", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-353470798228729008252823", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6adbe8cf-5c30-41c3-ba28-d729b55c6ae9", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-353470798228729008252823", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 73, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-353470798228729008252823", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6adbe8cf-5c30-41c3-ba28-d729b55c6ae9", - "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e361669b-0c6e-4300-81a3-04c62e293df8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:70e67638-1a6e-45be-9bd3-eefba7bea027", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7db37fef-67dd-4fbc-80be-fda06a57b9b9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a68f71b4-287e-4ae8-9b75-0e37297e29cd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cf56a4a8-ec63-49b6-8294-4475f6ca4595", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e9927708-11d1-4f4c-bcac-65d9d52c4e05", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:83f6531f-4cbe-4aac-bdd2-c37401f3fc4e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f6079e08-e9b7-4faa-81c1-aab28d466bc5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:72bc38b1-6e93-4115-82dd-e20475dc5c14", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:232c26da-676e-4078-bbba-77a68ccdc442", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:e361669b-0c6e-4300-81a3-04c62e293df8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e361669b-0c6e-4300-81a3-04c62e293df8", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-656647359705061447843761", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e361669b-0c6e-4300-81a3-04c62e293df8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-656647359705061447843761", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e361669b-0c6e-4300-81a3-04c62e293df8", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-05-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-16", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:70e67638-1a6e-45be-9bd3-eefba7bea027", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:70e67638-1a6e-45be-9bd3-eefba7bea027", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-536284334588490315438245", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:70e67638-1a6e-45be-9bd3-eefba7bea027", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-536284334588490315438245", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:70e67638-1a6e-45be-9bd3-eefba7bea027", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-06-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-31", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7db37fef-67dd-4fbc-80be-fda06a57b9b9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7db37fef-67dd-4fbc-80be-fda06a57b9b9", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-098539781696136274042500", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7db37fef-67dd-4fbc-80be-fda06a57b9b9", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-098539781696136274042500", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7db37fef-67dd-4fbc-80be-fda06a57b9b9", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-06-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a68f71b4-287e-4ae8-9b75-0e37297e29cd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a68f71b4-287e-4ae8-9b75-0e37297e29cd", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-080276888297578917676612", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a68f71b4-287e-4ae8-9b75-0e37297e29cd", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-080276888297578917676612", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a68f71b4-287e-4ae8-9b75-0e37297e29cd", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-09-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:cf56a4a8-ec63-49b6-8294-4475f6ca4595", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cf56a4a8-ec63-49b6-8294-4475f6ca4595", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-830114967535085473494276", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cf56a4a8-ec63-49b6-8294-4475f6ca4595", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-830114967535085473494276", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cf56a4a8-ec63-49b6-8294-4475f6ca4595", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-12-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-31", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e9927708-11d1-4f4c-bcac-65d9d52c4e05", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e9927708-11d1-4f4c-bcac-65d9d52c4e05", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-887613814009393844449462", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e9927708-11d1-4f4c-bcac-65d9d52c4e05", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-887613814009393844449462", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e9927708-11d1-4f4c-bcac-65d9d52c4e05", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-10-12", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:83f6531f-4cbe-4aac-bdd2-c37401f3fc4e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:83f6531f-4cbe-4aac-bdd2-c37401f3fc4e", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-566581393086729544566333", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:83f6531f-4cbe-4aac-bdd2-c37401f3fc4e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-566581393086729544566333", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:83f6531f-4cbe-4aac-bdd2-c37401f3fc4e", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-09-13", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-23", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f6079e08-e9b7-4faa-81c1-aab28d466bc5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f6079e08-e9b7-4faa-81c1-aab28d466bc5", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-866543443189722095836517", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f6079e08-e9b7-4faa-81c1-aab28d466bc5", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-866543443189722095836517", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f6079e08-e9b7-4faa-81c1-aab28d466bc5", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-07-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:72bc38b1-6e93-4115-82dd-e20475dc5c14", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:72bc38b1-6e93-4115-82dd-e20475dc5c14", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-735725460337255750785259", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:72bc38b1-6e93-4115-82dd-e20475dc5c14", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-735725460337255750785259", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:72bc38b1-6e93-4115-82dd-e20475dc5c14", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-06-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:232c26da-676e-4078-bbba-77a68ccdc442", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:232c26da-676e-4078-bbba-77a68ccdc442", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-314972626787111453761186", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:232c26da-676e-4078-bbba-77a68ccdc442", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-314972626787111453761186", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:232c26da-676e-4078-bbba-77a68ccdc442", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-03-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:37889454-c6dd-4086-b638-c3cc567bda16", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:37889454-c6dd-4086-b638-c3cc567bda16", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-776408330622907049339649", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:37889454-c6dd-4086-b638-c3cc567bda16", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-776408330622907049339649", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 72, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-776408330622907049339649", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:37889454-c6dd-4086-b638-c3cc567bda16", - "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:47271cad-9905-442d-ad01-0cb4f5057277", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:313fc4cb-85b9-4c7f-b787-b347d35aaf0e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7ca0887b-b8f6-4494-8573-49d8e45f8d59", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:50291336-87d6-4fb0-98f0-7830f676d290", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:08cc7a9e-e568-4a75-a7e9-1bc4a8e0a694", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a6bcf17c-0d17-4b1c-ba2e-cb17292bd680", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4b73604f-6407-4389-83d1-12a62319a2a1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f2d8de9f-9833-478c-a804-ec659a072253", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f9b184fd-c951-4e33-87cc-a5604cfea42c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2113f19f-d8b4-405a-9d5d-deabe4d21781", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:47271cad-9905-442d-ad01-0cb4f5057277", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:47271cad-9905-442d-ad01-0cb4f5057277", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-407828948463856718286550", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:47271cad-9905-442d-ad01-0cb4f5057277", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-407828948463856718286550", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:47271cad-9905-442d-ad01-0cb4f5057277", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-11-24", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:313fc4cb-85b9-4c7f-b787-b347d35aaf0e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:313fc4cb-85b9-4c7f-b787-b347d35aaf0e", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-575020744882342632641479", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:313fc4cb-85b9-4c7f-b787-b347d35aaf0e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-575020744882342632641479", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:313fc4cb-85b9-4c7f-b787-b347d35aaf0e", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-11-18", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7ca0887b-b8f6-4494-8573-49d8e45f8d59", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7ca0887b-b8f6-4494-8573-49d8e45f8d59", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-809028888965457076000610", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7ca0887b-b8f6-4494-8573-49d8e45f8d59", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-809028888965457076000610", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7ca0887b-b8f6-4494-8573-49d8e45f8d59", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-06-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:50291336-87d6-4fb0-98f0-7830f676d290", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:50291336-87d6-4fb0-98f0-7830f676d290", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-572119264854541939019957", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:50291336-87d6-4fb0-98f0-7830f676d290", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-572119264854541939019957", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:50291336-87d6-4fb0-98f0-7830f676d290", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-01-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:08cc7a9e-e568-4a75-a7e9-1bc4a8e0a694", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:08cc7a9e-e568-4a75-a7e9-1bc4a8e0a694", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-363652223732838411006462", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:08cc7a9e-e568-4a75-a7e9-1bc4a8e0a694", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-363652223732838411006462", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:08cc7a9e-e568-4a75-a7e9-1bc4a8e0a694", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-06-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a6bcf17c-0d17-4b1c-ba2e-cb17292bd680", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a6bcf17c-0d17-4b1c-ba2e-cb17292bd680", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-152854396463205182210336", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a6bcf17c-0d17-4b1c-ba2e-cb17292bd680", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-152854396463205182210336", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a6bcf17c-0d17-4b1c-ba2e-cb17292bd680", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-03-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-28", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4b73604f-6407-4389-83d1-12a62319a2a1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4b73604f-6407-4389-83d1-12a62319a2a1", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-225125760120277102371778", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4b73604f-6407-4389-83d1-12a62319a2a1", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-225125760120277102371778", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4b73604f-6407-4389-83d1-12a62319a2a1", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-10-10", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f2d8de9f-9833-478c-a804-ec659a072253", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f2d8de9f-9833-478c-a804-ec659a072253", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-320360217233278437549605", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f2d8de9f-9833-478c-a804-ec659a072253", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-320360217233278437549605", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f2d8de9f-9833-478c-a804-ec659a072253", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-09-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f9b184fd-c951-4e33-87cc-a5604cfea42c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f9b184fd-c951-4e33-87cc-a5604cfea42c", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-880482928460234452687518", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f9b184fd-c951-4e33-87cc-a5604cfea42c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-880482928460234452687518", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f9b184fd-c951-4e33-87cc-a5604cfea42c", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-01-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-04", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2113f19f-d8b4-405a-9d5d-deabe4d21781", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2113f19f-d8b4-405a-9d5d-deabe4d21781", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-506966159506396774981875", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2113f19f-d8b4-405a-9d5d-deabe4d21781", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-506966159506396774981875", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2113f19f-d8b4-405a-9d5d-deabe4d21781", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-07-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-10", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:92ef5ced-37cf-4152-897b-989e1a121a0d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:92ef5ced-37cf-4152-897b-989e1a121a0d", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-144536483459403361866182", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:92ef5ced-37cf-4152-897b-989e1a121a0d", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-144536483459403361866182", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 34, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 45, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-144536483459403361866182", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:92ef5ced-37cf-4152-897b-989e1a121a0d", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ef578587-2233-4426-a8b3-1c172c7e7f81", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:feaadea8-6d9f-4da0-8f8c-a5d49f9b55a8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d075f0b6-0073-4f50-b79e-33f3d828d0fb", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1878fc54-80cd-4297-b738-f3000a2237f7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:710e6025-beb4-42ea-b2c2-7e2bb414892e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2ab9ddd0-b941-4ca0-aae0-7ff2f9493395", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b05a4411-f65f-47d9-a4bd-b2f93ba59aa0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d9ac1ce4-a47b-4f22-a9b7-82835dc2c901", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:71d6a31d-ee8d-4db8-b141-e211698df798", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:98fbd7b4-200a-4a5c-9afb-076fd3db0bc6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:ef578587-2233-4426-a8b3-1c172c7e7f81", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ef578587-2233-4426-a8b3-1c172c7e7f81", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-184294272574060167657741", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ef578587-2233-4426-a8b3-1c172c7e7f81", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-184294272574060167657741", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ef578587-2233-4426-a8b3-1c172c7e7f81", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-10-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:feaadea8-6d9f-4da0-8f8c-a5d49f9b55a8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:feaadea8-6d9f-4da0-8f8c-a5d49f9b55a8", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-742561503842545151492680", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:feaadea8-6d9f-4da0-8f8c-a5d49f9b55a8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-742561503842545151492680", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:feaadea8-6d9f-4da0-8f8c-a5d49f9b55a8", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-10-09", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-10", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d075f0b6-0073-4f50-b79e-33f3d828d0fb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d075f0b6-0073-4f50-b79e-33f3d828d0fb", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-587462418420508928081587", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d075f0b6-0073-4f50-b79e-33f3d828d0fb", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-587462418420508928081587", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d075f0b6-0073-4f50-b79e-33f3d828d0fb", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-10-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1878fc54-80cd-4297-b738-f3000a2237f7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1878fc54-80cd-4297-b738-f3000a2237f7", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-304388387677594321912766", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1878fc54-80cd-4297-b738-f3000a2237f7", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-304388387677594321912766", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1878fc54-80cd-4297-b738-f3000a2237f7", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-02-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:710e6025-beb4-42ea-b2c2-7e2bb414892e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:710e6025-beb4-42ea-b2c2-7e2bb414892e", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-018766443358893493665159", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:710e6025-beb4-42ea-b2c2-7e2bb414892e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-018766443358893493665159", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:710e6025-beb4-42ea-b2c2-7e2bb414892e", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-04-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2ab9ddd0-b941-4ca0-aae0-7ff2f9493395", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2ab9ddd0-b941-4ca0-aae0-7ff2f9493395", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-135053306399524904149968", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2ab9ddd0-b941-4ca0-aae0-7ff2f9493395", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-135053306399524904149968", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2ab9ddd0-b941-4ca0-aae0-7ff2f9493395", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-05-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-11", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b05a4411-f65f-47d9-a4bd-b2f93ba59aa0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b05a4411-f65f-47d9-a4bd-b2f93ba59aa0", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-804399074731347020522130", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b05a4411-f65f-47d9-a4bd-b2f93ba59aa0", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-804399074731347020522130", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b05a4411-f65f-47d9-a4bd-b2f93ba59aa0", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-03-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d9ac1ce4-a47b-4f22-a9b7-82835dc2c901", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d9ac1ce4-a47b-4f22-a9b7-82835dc2c901", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-363238333514389745736174", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d9ac1ce4-a47b-4f22-a9b7-82835dc2c901", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-363238333514389745736174", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d9ac1ce4-a47b-4f22-a9b7-82835dc2c901", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-09-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:71d6a31d-ee8d-4db8-b141-e211698df798", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:71d6a31d-ee8d-4db8-b141-e211698df798", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-600356989026352450563767", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:71d6a31d-ee8d-4db8-b141-e211698df798", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-600356989026352450563767", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:71d6a31d-ee8d-4db8-b141-e211698df798", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-03-24", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:98fbd7b4-200a-4a5c-9afb-076fd3db0bc6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:98fbd7b4-200a-4a5c-9afb-076fd3db0bc6", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-137777033512448812201263", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:98fbd7b4-200a-4a5c-9afb-076fd3db0bc6", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-137777033512448812201263", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:98fbd7b4-200a-4a5c-9afb-076fd3db0bc6", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-08-14", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3a5046ff-82b0-44aa-b475-e289c7a2f682", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3a5046ff-82b0-44aa-b475-e289c7a2f682", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-342172743762774250479368", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3a5046ff-82b0-44aa-b475-e289c7a2f682", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-342172743762774250479368", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 52, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 50, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 8, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-342172743762774250479368", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3a5046ff-82b0-44aa-b475-e289c7a2f682", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:97fb70b5-fc77-4a4d-9e62-4d46b8b687f8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:aa4afb47-d882-4fe3-a9c6-33a82d5e97d1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2216fb2e-a2c8-4827-8271-cf84c460a86c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:64dac341-6ac8-4bf4-84c5-de6df2c80b90", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0f1b7a64-fdaf-45fe-9ba8-e32b9fcf302b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e22c30df-7075-419e-8e7f-52bfe56f175c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1bbae2f6-11a1-4319-a9dc-06c6d149d583", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:39432744-883d-40cd-b435-da6e07a44ee9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6bc595e6-f8e5-4a9e-8e5f-791a7ced06e2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b6f97423-a423-4077-b2a7-f742242f2864", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:97fb70b5-fc77-4a4d-9e62-4d46b8b687f8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:97fb70b5-fc77-4a4d-9e62-4d46b8b687f8", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-227930400315329073562025", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:97fb70b5-fc77-4a4d-9e62-4d46b8b687f8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-227930400315329073562025", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:97fb70b5-fc77-4a4d-9e62-4d46b8b687f8", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-08-24", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:aa4afb47-d882-4fe3-a9c6-33a82d5e97d1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:aa4afb47-d882-4fe3-a9c6-33a82d5e97d1", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-050267915951792488635833", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:aa4afb47-d882-4fe3-a9c6-33a82d5e97d1", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-050267915951792488635833", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:aa4afb47-d882-4fe3-a9c6-33a82d5e97d1", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-06-30", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2216fb2e-a2c8-4827-8271-cf84c460a86c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2216fb2e-a2c8-4827-8271-cf84c460a86c", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-288560143242939487181997", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2216fb2e-a2c8-4827-8271-cf84c460a86c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-288560143242939487181997", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2216fb2e-a2c8-4827-8271-cf84c460a86c", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-04-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:64dac341-6ac8-4bf4-84c5-de6df2c80b90", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:64dac341-6ac8-4bf4-84c5-de6df2c80b90", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-823399665493943877436512", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:64dac341-6ac8-4bf4-84c5-de6df2c80b90", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-823399665493943877436512", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:64dac341-6ac8-4bf4-84c5-de6df2c80b90", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-11-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0f1b7a64-fdaf-45fe-9ba8-e32b9fcf302b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f1b7a64-fdaf-45fe-9ba8-e32b9fcf302b", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-404038158855803659163841", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0f1b7a64-fdaf-45fe-9ba8-e32b9fcf302b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-404038158855803659163841", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f1b7a64-fdaf-45fe-9ba8-e32b9fcf302b", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-08-12", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-03", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e22c30df-7075-419e-8e7f-52bfe56f175c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e22c30df-7075-419e-8e7f-52bfe56f175c", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-504994974084350239045521", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e22c30df-7075-419e-8e7f-52bfe56f175c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-504994974084350239045521", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e22c30df-7075-419e-8e7f-52bfe56f175c", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-09-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1bbae2f6-11a1-4319-a9dc-06c6d149d583", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1bbae2f6-11a1-4319-a9dc-06c6d149d583", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-152746334907538259985610", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1bbae2f6-11a1-4319-a9dc-06c6d149d583", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-152746334907538259985610", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1bbae2f6-11a1-4319-a9dc-06c6d149d583", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-11-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:39432744-883d-40cd-b435-da6e07a44ee9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:39432744-883d-40cd-b435-da6e07a44ee9", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-714283188830845423158718", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:39432744-883d-40cd-b435-da6e07a44ee9", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-714283188830845423158718", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:39432744-883d-40cd-b435-da6e07a44ee9", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-14", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6bc595e6-f8e5-4a9e-8e5f-791a7ced06e2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6bc595e6-f8e5-4a9e-8e5f-791a7ced06e2", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-392630975973436404657228", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6bc595e6-f8e5-4a9e-8e5f-791a7ced06e2", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-392630975973436404657228", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6bc595e6-f8e5-4a9e-8e5f-791a7ced06e2", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-10-31", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b6f97423-a423-4077-b2a7-f742242f2864", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b6f97423-a423-4077-b2a7-f742242f2864", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-620779275159541101505482", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b6f97423-a423-4077-b2a7-f742242f2864", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-620779275159541101505482", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b6f97423-a423-4077-b2a7-f742242f2864", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-12-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-06", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1503e965-9cbe-42be-894b-0c101c2407e1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1503e965-9cbe-42be-894b-0c101c2407e1", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-567597654892078435695114", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1503e965-9cbe-42be-894b-0c101c2407e1", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-567597654892078435695114", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 27, - "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" : 63, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-567597654892078435695114", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1503e965-9cbe-42be-894b-0c101c2407e1", - "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7262669b-694b-42bf-b03e-410ba1d4cd24", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f2e78b29-db0a-4f09-a421-13a930a38a07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:eab991d3-f1f5-4bea-8ddb-6f1188ccfca1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:15da57c6-3872-4290-9169-08edc370bfeb", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5e2ab93b-73c7-4a61-9081-79887a422923", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8a57c24a-5250-489b-afb8-87bb3e057594", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d4f957d0-7f5c-4611-8641-c0c2721886a3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6ccc52de-ce34-4565-a687-015f2e0b807d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2ea324fc-ca2a-4763-baa7-0220ffa9e909", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c4c99af7-96fd-43b3-8a20-c5c16b1650ff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:7262669b-694b-42bf-b03e-410ba1d4cd24", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7262669b-694b-42bf-b03e-410ba1d4cd24", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-156945232257778817408894", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7262669b-694b-42bf-b03e-410ba1d4cd24", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-156945232257778817408894", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7262669b-694b-42bf-b03e-410ba1d4cd24", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-07-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f2e78b29-db0a-4f09-a421-13a930a38a07", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f2e78b29-db0a-4f09-a421-13a930a38a07", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-695049701742507372894372", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f2e78b29-db0a-4f09-a421-13a930a38a07", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-695049701742507372894372", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f2e78b29-db0a-4f09-a421-13a930a38a07", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-02-09", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:eab991d3-f1f5-4bea-8ddb-6f1188ccfca1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:eab991d3-f1f5-4bea-8ddb-6f1188ccfca1", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-859193355925015156091672", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:eab991d3-f1f5-4bea-8ddb-6f1188ccfca1", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-859193355925015156091672", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:eab991d3-f1f5-4bea-8ddb-6f1188ccfca1", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-11-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:15da57c6-3872-4290-9169-08edc370bfeb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:15da57c6-3872-4290-9169-08edc370bfeb", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-535668291938160253344475", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:15da57c6-3872-4290-9169-08edc370bfeb", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-535668291938160253344475", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:15da57c6-3872-4290-9169-08edc370bfeb", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-06-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5e2ab93b-73c7-4a61-9081-79887a422923", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5e2ab93b-73c7-4a61-9081-79887a422923", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-827566814437623855116086", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5e2ab93b-73c7-4a61-9081-79887a422923", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-827566814437623855116086", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5e2ab93b-73c7-4a61-9081-79887a422923", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-11-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8a57c24a-5250-489b-afb8-87bb3e057594", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8a57c24a-5250-489b-afb8-87bb3e057594", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-100323953280812775892663", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8a57c24a-5250-489b-afb8-87bb3e057594", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-100323953280812775892663", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8a57c24a-5250-489b-afb8-87bb3e057594", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-05-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d4f957d0-7f5c-4611-8641-c0c2721886a3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d4f957d0-7f5c-4611-8641-c0c2721886a3", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-473455115871772551601215", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d4f957d0-7f5c-4611-8641-c0c2721886a3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-473455115871772551601215", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d4f957d0-7f5c-4611-8641-c0c2721886a3", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-01-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-11", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6ccc52de-ce34-4565-a687-015f2e0b807d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6ccc52de-ce34-4565-a687-015f2e0b807d", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-210243136750698853683543", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6ccc52de-ce34-4565-a687-015f2e0b807d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-210243136750698853683543", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6ccc52de-ce34-4565-a687-015f2e0b807d", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-04-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2ea324fc-ca2a-4763-baa7-0220ffa9e909", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2ea324fc-ca2a-4763-baa7-0220ffa9e909", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-748478146276540947678328", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2ea324fc-ca2a-4763-baa7-0220ffa9e909", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-748478146276540947678328", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2ea324fc-ca2a-4763-baa7-0220ffa9e909", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-11-13", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-23", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c4c99af7-96fd-43b3-8a20-c5c16b1650ff", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c4c99af7-96fd-43b3-8a20-c5c16b1650ff", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-833096064844811644455253", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c4c99af7-96fd-43b3-8a20-c5c16b1650ff", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-833096064844811644455253", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c4c99af7-96fd-43b3-8a20-c5c16b1650ff", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-09-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a2c7db2e-fa9c-4781-9140-ca7a890d0ac3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a2c7db2e-fa9c-4781-9140-ca7a890d0ac3", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-551972134009847385300016", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a2c7db2e-fa9c-4781-9140-ca7a890d0ac3", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-551972134009847385300016", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 64, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-551972134009847385300016", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a2c7db2e-fa9c-4781-9140-ca7a890d0ac3", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5bcab437-c4ca-46a6-a781-8a08fe784629", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b2877bba-87d9-476c-b523-0a00e9fb10d4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cc0924c5-1fc9-43ef-9c60-1361c91e7b0c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9cf62b10-4d87-4b90-8c15-b38bfd373a61", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4cd82413-bb88-43c3-b018-59e7ae888086", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:73b082eb-86d5-4cbf-9b2f-ac140079c649", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:519ba796-6ec5-4726-84e5-0ac8494a2f75", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:95770b49-62cd-4fa2-8345-371cc78430a1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:34c20fee-9079-4c34-b832-9dd816e9ae8e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:daa5c284-996f-4a80-a923-2c4879cb0ecd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:5bcab437-c4ca-46a6-a781-8a08fe784629", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5bcab437-c4ca-46a6-a781-8a08fe784629", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-522334108427123076844618", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5bcab437-c4ca-46a6-a781-8a08fe784629", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-522334108427123076844618", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5bcab437-c4ca-46a6-a781-8a08fe784629", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b2877bba-87d9-476c-b523-0a00e9fb10d4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b2877bba-87d9-476c-b523-0a00e9fb10d4", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-007112220497976308799740", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b2877bba-87d9-476c-b523-0a00e9fb10d4", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-007112220497976308799740", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b2877bba-87d9-476c-b523-0a00e9fb10d4", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-05-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:cc0924c5-1fc9-43ef-9c60-1361c91e7b0c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cc0924c5-1fc9-43ef-9c60-1361c91e7b0c", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-247393760167307165163935", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cc0924c5-1fc9-43ef-9c60-1361c91e7b0c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-247393760167307165163935", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cc0924c5-1fc9-43ef-9c60-1361c91e7b0c", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-04-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9cf62b10-4d87-4b90-8c15-b38bfd373a61", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9cf62b10-4d87-4b90-8c15-b38bfd373a61", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-292719489036751474744380", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9cf62b10-4d87-4b90-8c15-b38bfd373a61", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-292719489036751474744380", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9cf62b10-4d87-4b90-8c15-b38bfd373a61", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-04-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4cd82413-bb88-43c3-b018-59e7ae888086", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4cd82413-bb88-43c3-b018-59e7ae888086", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-048615135385815854500755", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4cd82413-bb88-43c3-b018-59e7ae888086", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-048615135385815854500755", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4cd82413-bb88-43c3-b018-59e7ae888086", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-02-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-23", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:73b082eb-86d5-4cbf-9b2f-ac140079c649", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:73b082eb-86d5-4cbf-9b2f-ac140079c649", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-344501855811148348284649", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:73b082eb-86d5-4cbf-9b2f-ac140079c649", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-344501855811148348284649", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:73b082eb-86d5-4cbf-9b2f-ac140079c649", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-01-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:519ba796-6ec5-4726-84e5-0ac8494a2f75", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:519ba796-6ec5-4726-84e5-0ac8494a2f75", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-034369323184032664195621", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:519ba796-6ec5-4726-84e5-0ac8494a2f75", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-034369323184032664195621", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:519ba796-6ec5-4726-84e5-0ac8494a2f75", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-07-10", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:95770b49-62cd-4fa2-8345-371cc78430a1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:95770b49-62cd-4fa2-8345-371cc78430a1", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-896014888626995516234647", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:95770b49-62cd-4fa2-8345-371cc78430a1", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-896014888626995516234647", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:95770b49-62cd-4fa2-8345-371cc78430a1", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-06-12", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:34c20fee-9079-4c34-b832-9dd816e9ae8e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:34c20fee-9079-4c34-b832-9dd816e9ae8e", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-020030682249639907934296", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:34c20fee-9079-4c34-b832-9dd816e9ae8e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-020030682249639907934296", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:34c20fee-9079-4c34-b832-9dd816e9ae8e", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-02-18", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:daa5c284-996f-4a80-a923-2c4879cb0ecd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:daa5c284-996f-4a80-a923-2c4879cb0ecd", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-327475202785241593327653", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:daa5c284-996f-4a80-a923-2c4879cb0ecd", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-327475202785241593327653", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:daa5c284-996f-4a80-a923-2c4879cb0ecd", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-03-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Schräghecklimousine", - "catenaXId" : "urn:uuid:ce2076fb-9d00-4acf-8dc1-668f7cf2c09b", - "engine" : { - "size" : 2998, - "power" : 143 - }, - "emptyWeight" : 1.73, - "fuel" : "Elektro", - "vehicleModel" : "Vehicle Fully Electric", - "productionDateGMT" : "2010-01-01", - "equipmentVariants" : [ { - "code" : "S218A", - "description" : "sport automatic transmission", - "group" : "special equipment" - }, { - "code" : "S763C", - "description" : "sport package", - "group" : "special equipment" - }, { - "code" : "S2AVB", - "description" : "adaptive drive", - "group" : "special equipment" - }, { - "code" : "S388C", - "description" : "security plus", - "group" : "special equipment" - } ], - "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", - "mileage" : [ { - "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2022-06-17", - "mileageDistance" : 120000 - } ] - } ], - "catenaXId" : "urn:uuid:ce2076fb-9d00-4acf-8dc1-668f7cf2c09b", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "TV-38", - "key" : "manufacturerPartId" - }, { - "value" : "OMBGTUGAPIOBBBFIH", - "key" : "partInstanceId" - }, { - "value" : "OMBGTUGAPIOBBBFIH", - "key" : "van" - } ], - "manufacturingInformation" : { - "date" : "2015-11-16T14:00:41.000Z", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ce2076fb-9d00-4acf-8dc1-668f7cf2c09b", - "partTypeInformation" : { - "manufacturerPartId" : "TV-38", - "classification" : "product", - "nameAtManufacturer" : "Vehicle Fully Electric" - } - } ], - "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" : 65, - "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" : 83, - "materialClass" : "2.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 286.65 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "ALU331" - }, { - "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", - "recycledContent" : 70, - "materialClass" : "0.7", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 109.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "W123" - }, { - "materialName" : "Glue", - "recycledContent" : 9, - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 54.6 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GL338" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 1, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 382.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - }, { - "materialName" : "Cooper", - "recycledContent" : 53, - "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" : 52, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 5.12 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "TEX1" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ce2076fb-9d00-4acf-8dc1-668f7cf2c09b", - "childItems" : [ { - "catenaXId" : "urn:uuid:2cc44905-e2ec-445b-a5b9-705bc8652123", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:37301508-eb9f-4c1c-be3c-2948b132a4a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ad06ccff-7c2c-4486-a297-f612a069c947", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d1fb6da7-c72d-4ee7-bcd6-2507dedda89d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:fc6c67a1-5f0d-4dbf-a6f8-a475824b8003", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e2c9efe8-6e71-4103-83bc-5746b3c46863", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1b078a36-39f6-433b-8f9f-6632f30a4a34", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:753d47f4-5702-47cb-bf6e-d97c4758e5e2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b7d56aec-b01d-40f3-9899-bb0045469cef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:20db46bf-84d3-4b5f-bacb-02c990e5657e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1d9c6104-8bec-4b59-bc42-21e5cf4f7c30", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:bb9d9dca-699e-49fc-a9c8-5f66f7224d19", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:57e9ac4c-c473-4590-b99c-f4dd4dbf1a4e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:57d72510-e9b5-44f4-883d-156d8c2094f6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7b56e107-e62d-4048-bdaa-be84dc50f84c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:03db8eff-c48d-4c22-ad00-bd31449817aa", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:499dadf5-7392-4c38-904e-f96aa1478e43", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6ae2d1ae-ff4b-413a-b333-ec0108d828a8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9836fa93-6a35-4fbf-a80b-e068ec388e38", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2758cd5d-3b3b-4918-957e-c42453b6b242", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1339ba04-ff5a-4227-8e26-adcfc6ec4bf5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:56620fe4-d271-4327-83dc-a3d4b376416d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8ea7502e-91e8-46ed-a83a-2276a407c26a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b2849e5a-1f20-4dff-9bba-3cfefb39d057", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:12e881f8-d79c-4e3c-afd9-b390b0594e48", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5b77ff2b-761d-4d74-ae58-e88a85d6889b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1e046cb6-00f8-4a02-b8e2-9dbd8d5366fd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:bb666cc2-4853-43f7-a5aa-2c0629d170e8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5e5aebfe-5bbc-4006-8786-fc79ac9de93d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f5708942-81fc-44c8-ba0b-41e08a7270b2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B2OM", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:915145cf-7496-4e91-a489-d9f6f85f343c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B5MJ", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f0829c4f-f95b-4229-b2bf-d2101bee21ee", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:2cc44905-e2ec-445b-a5b9-705bc8652123", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2cc44905-e2ec-445b-a5b9-705bc8652123", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "73849201-61", - "key" : "manufacturerPartId" - }, { - "value" : "NO-026187347357622239363493", - "key" : "partInstanceId" - }, { - "value" : "Company 10", - "key" : "company" - }, { - "value" : "Brand 10", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2cc44905-e2ec-445b-a5b9-705bc8652123", - "partTypeInformation" : { - "manufacturerPartId" : "73849201-61", - "customerPartId" : "73849201-61", - "classification" : "component", - "nameAtManufacturer" : "Catalysator", - "nameAtCustomer" : "Catalysator" - } - } ] - }, { - "catenaXId" : "urn:uuid:37301508-eb9f-4c1c-be3c-2948b132a4a7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:37301508-eb9f-4c1c-be3c-2948b132a4a7", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "22782277-50", - "key" : "manufacturerPartId" - }, { - "value" : "NO-483356909709337844676356", - "key" : "partInstanceId" - }, { - "value" : "Company 3", - "key" : "company" - }, { - "value" : "Brand 3", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:37301508-eb9f-4c1c-be3c-2948b132a4a7", - "partTypeInformation" : { - "manufacturerPartId" : "22782277-50", - "customerPartId" : "22782277-50", - "classification" : "component", - "nameAtManufacturer" : "Door f-l", - "nameAtCustomer" : "Door front-left" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:37301508-eb9f-4c1c-be3c-2948b132a4a7", - "childItems" : [ { - "catenaXId" : "urn:uuid:22f6516b-ad73-4cce-936d-5c8068b20c22", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:22f6516b-ad73-4cce-936d-5c8068b20c22", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:22f6516b-ad73-4cce-936d-5c8068b20c22", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-488379533753775497646939", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:22f6516b-ad73-4cce-936d-5c8068b20c22", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "23713038WJC", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:22f6516b-ad73-4cce-936d-5c8068b20c22", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:ad06ccff-7c2c-4486-a297-f612a069c947", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ad06ccff-7c2c-4486-a297-f612a069c947", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "95657362-64", - "key" : "manufacturerPartId" - }, { - "value" : "NO-641959010006841733082899", - "key" : "partInstanceId" - }, { - "value" : "Company 4", - "key" : "company" - }, { - "value" : "Brand 4", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ad06ccff-7c2c-4486-a297-f612a069c947", - "partTypeInformation" : { - "manufacturerPartId" : "33740332-54", - "customerPartId" : "33740332-54", - "classification" : "component", - "nameAtManufacturer" : "Door f-r", - "nameAtCustomer" : "Door front-right" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ad06ccff-7c2c-4486-a297-f612a069c947", - "childItems" : [ { - "catenaXId" : "urn:uuid:ce4dcb96-e34a-4d66-aafc-a3bda78dada6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:ce4dcb96-e34a-4d66-aafc-a3bda78dada6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ce4dcb96-e34a-4d66-aafc-a3bda78dada6", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-466508069365214484328121", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ce4dcb96-e34a-4d66-aafc-a3bda78dada6", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "90909902RXR", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:ce4dcb96-e34a-4d66-aafc-a3bda78dada6", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:d1fb6da7-c72d-4ee7-bcd6-2507dedda89d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d1fb6da7-c72d-4ee7-bcd6-2507dedda89d", - "customers" : [ { - "businessPartner" : false, - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "15635759-16", - "key" : "manufacturerPartId" - }, { - "value" : "NO-859347146936442271168807", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d1fb6da7-c72d-4ee7-bcd6-2507dedda89d", - "partTypeInformation" : { - "manufacturerPartId" : "15635759-16", - "customerPartId" : "15635759-16", - "classification" : "component", - "nameAtManufacturer" : "Door r-l", - "nameAtCustomer" : "Door rear-left" - } - } ] - }, { - "catenaXId" : "urn:uuid:fc6c67a1-5f0d-4dbf-a6f8-a475824b8003", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fc6c67a1-5f0d-4dbf-a6f8-a475824b8003", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "28673126-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-044289196227624924354401", - "key" : "partInstanceId" - }, { - "value" : "Company 5", - "key" : "company" - }, { - "value" : "Brand 5", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:fc6c67a1-5f0d-4dbf-a6f8-a475824b8003", - "partTypeInformation" : { - "manufacturerPartId" : "28673126-98", - "customerPartId" : "28673126-98", - "classification" : "component", - "nameAtManufacturer" : "Door r-r", - "nameAtCustomer" : "Door rear-right" - } - } ] - }, { - "catenaXId" : "urn:uuid:e2c9efe8-6e71-4103-83bc-5746b3c46863", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e2c9efe8-6e71-4103-83bc-5746b3c46863", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "94421589-82", - "key" : "manufacturerPartId" - }, { - "value" : "NO-410354606378696734352780", - "key" : "partInstanceId" - }, { - "value" : "Company 6", - "key" : "company" - }, { - "value" : "Brand 6", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e2c9efe8-6e71-4103-83bc-5746b3c46863", - "partTypeInformation" : { - "manufacturerPartId" : "94421589-82", - "customerPartId" : "94421589-82", - "classification" : "component", - "nameAtManufacturer" : "Engine hood", - "nameAtCustomer" : "Engine hood" - } - } ] - }, { - "catenaXId" : "urn:uuid:1b078a36-39f6-433b-8f9f-6632f30a4a34", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1b078a36-39f6-433b-8f9f-6632f30a4a34", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "85023955-75", - "key" : "manufacturerPartId" - }, { - "value" : "NO-335781793395301714609757", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1b078a36-39f6-433b-8f9f-6632f30a4a34", - "partTypeInformation" : { - "manufacturerPartId" : "85023955-75", - "customerPartId" : "85023955-75", - "classification" : "component", - "nameAtManufacturer" : "Tailgate", - "nameAtCustomer" : "Tailgate" - } - } ] - }, { - "catenaXId" : "urn:uuid:753d47f4-5702-47cb-bf6e-d97c4758e5e2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:753d47f4-5702-47cb-bf6e-d97c4758e5e2", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "13769860-47", - "key" : "manufacturerPartId" - }, { - "value" : "NO-356112929065870935237932", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:753d47f4-5702-47cb-bf6e-d97c4758e5e2", - "partTypeInformation" : { - "manufacturerPartId" : "13769860-47", - "customerPartId" : "13769860-47", - "classification" : "component", - "nameAtManufacturer" : "Fender left", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:b7d56aec-b01d-40f3-9899-bb0045469cef", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b7d56aec-b01d-40f3-9899-bb0045469cef", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "36643162-35", - "key" : "manufacturerPartId" - }, { - "value" : "NO-309866507678216063294497", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b7d56aec-b01d-40f3-9899-bb0045469cef", - "partTypeInformation" : { - "manufacturerPartId" : "36643162-35", - "customerPartId" : "36643162-35", - "classification" : "component", - "nameAtManufacturer" : "Fender right", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:20db46bf-84d3-4b5f-bacb-02c990e5657e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:20db46bf-84d3-4b5f-bacb-02c990e5657e", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "54165444-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-933089360581318634659446", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:20db46bf-84d3-4b5f-bacb-02c990e5657e", - "partTypeInformation" : { - "manufacturerPartId" : "54165444-59", - "customerPartId" : "54165444-59", - "classification" : "component", - "nameAtManufacturer" : "Bumper front", - "nameAtCustomer" : "Bumper front" - } - } ] - }, { - "catenaXId" : "urn:uuid:1d9c6104-8bec-4b59-bc42-21e5cf4f7c30", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1d9c6104-8bec-4b59-bc42-21e5cf4f7c30", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "22768257-25", - "key" : "manufacturerPartId" - }, { - "value" : "NO-779782674600943193747653", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1d9c6104-8bec-4b59-bc42-21e5cf4f7c30", - "partTypeInformation" : { - "manufacturerPartId" : "22768257-25", - "customerPartId" : "22768257-25", - "classification" : "component", - "nameAtManufacturer" : "Bumper rear", - "nameAtCustomer" : "Bumper rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:bb9d9dca-699e-49fc-a9c8-5f66f7224d19", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bb9d9dca-699e-49fc-a9c8-5f66f7224d19", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "65529521-37", - "key" : "manufacturerPartId" - }, { - "value" : "NO-137902671536975930968523", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:bb9d9dca-699e-49fc-a9c8-5f66f7224d19", - "partTypeInformation" : { - "manufacturerPartId" : "65529521-37", - "customerPartId" : "65529521-37", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror left", - "nameAtCustomer" : "Exterior mirror left" - } - } ] - }, { - "catenaXId" : "urn:uuid:57e9ac4c-c473-4590-b99c-f4dd4dbf1a4e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:57e9ac4c-c473-4590-b99c-f4dd4dbf1a4e", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "58471477-24", - "key" : "manufacturerPartId" - }, { - "value" : "NO-128501014519253781288263", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:57e9ac4c-c473-4590-b99c-f4dd4dbf1a4e", - "partTypeInformation" : { - "manufacturerPartId" : "58471477-24", - "customerPartId" : "58471477-24", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror right", - "nameAtCustomer" : "Exterior mirror right" - } - } ] - }, { - "catenaXId" : "urn:uuid:57d72510-e9b5-44f4-883d-156d8c2094f6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:57d72510-e9b5-44f4-883d-156d8c2094f6", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "09002013-68", - "key" : "manufacturerPartId" - }, { - "value" : "NO-251974824338030246190164", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:57d72510-e9b5-44f4-883d-156d8c2094f6", - "partTypeInformation" : { - "manufacturerPartId" : "09002013-68", - "customerPartId" : "09002013-68", - "classification" : "component", - "nameAtManufacturer" : "Trailer coupling", - "nameAtCustomer" : "Tailer coupling" - } - } ] - }, { - "catenaXId" : "urn:uuid:7b56e107-e62d-4048-bdaa-be84dc50f84c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7b56e107-e62d-4048-bdaa-be84dc50f84c", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "43501996-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-836112011472138244428871", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7b56e107-e62d-4048-bdaa-be84dc50f84c", - "partTypeInformation" : { - "manufacturerPartId" : "43501996-98", - "customerPartId" : "43501996-98", - "classification" : "component", - "nameAtManufacturer" : "Dashboard", - "nameAtCustomer" : "Dashboard" - } - } ] - }, { - "catenaXId" : "urn:uuid:03db8eff-c48d-4c22-ad00-bd31449817aa", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:03db8eff-c48d-4c22-ad00-bd31449817aa", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "77795937-13", - "key" : "manufacturerPartId" - }, { - "value" : "NO-343205665171044493725889", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:03db8eff-c48d-4c22-ad00-bd31449817aa", - "partTypeInformation" : { - "manufacturerPartId" : "77795937-13", - "customerPartId" : "77795937-13", - "classification" : "component", - "nameAtManufacturer" : "Steering wheel", - "nameAtCustomer" : "Steering wheel" - } - } ] - }, { - "catenaXId" : "urn:uuid:499dadf5-7392-4c38-904e-f96aa1478e43", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:499dadf5-7392-4c38-904e-f96aa1478e43", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "20125432-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-039794220905749067890894", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:499dadf5-7392-4c38-904e-f96aa1478e43", - "partTypeInformation" : { - "manufacturerPartId" : "20125432-59", - "customerPartId" : "20125432-59", - "classification" : "component", - "nameAtManufacturer" : "Indicator left", - "nameAtCustomer" : "Indicator left" - } - } ] - }, { - "catenaXId" : "urn:uuid:6ae2d1ae-ff4b-413a-b333-ec0108d828a8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6ae2d1ae-ff4b-413a-b333-ec0108d828a8", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "19073706-76", - "key" : "manufacturerPartId" - }, { - "value" : "NO-360314767588672967536918", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6ae2d1ae-ff4b-413a-b333-ec0108d828a8", - "partTypeInformation" : { - "manufacturerPartId" : "19073706-76", - "customerPartId" : "19073706-76", - "classification" : "component", - "nameAtManufacturer" : "Indicator right", - "nameAtCustomer" : "Indicator right" - } - } ] - }, { - "catenaXId" : "urn:uuid:9836fa93-6a35-4fbf-a80b-e068ec388e38", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9836fa93-6a35-4fbf-a80b-e068ec388e38", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "45415162-57", - "key" : "manufacturerPartId" - }, { - "value" : "NO-466987059282504554547722", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9836fa93-6a35-4fbf-a80b-e068ec388e38", - "partTypeInformation" : { - "manufacturerPartId" : "45415162-57", - "customerPartId" : "45415162-57", - "classification" : "component", - "nameAtManufacturer" : "Led headlight", - "nameAtCustomer" : "Led headlight" - } - } ] - }, { - "catenaXId" : "urn:uuid:2758cd5d-3b3b-4918-957e-c42453b6b242", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2758cd5d-3b3b-4918-957e-c42453b6b242", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "78141846-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-870356925436104557622548", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2758cd5d-3b3b-4918-957e-c42453b6b242", - "partTypeInformation" : { - "manufacturerPartId" : "78141846-87", - "customerPartId" : "78141846-87", - "classification" : "component", - "nameAtManufacturer" : "Starter motor", - "nameAtCustomer" : "Starter motor" - } - } ] - }, { - "catenaXId" : "urn:uuid:1339ba04-ff5a-4227-8e26-adcfc6ec4bf5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1339ba04-ff5a-4227-8e26-adcfc6ec4bf5", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "81324139-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-478301635721881816671294", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1339ba04-ff5a-4227-8e26-adcfc6ec4bf5", - "partTypeInformation" : { - "manufacturerPartId" : "81324139-23", - "customerPartId" : "81324139-23", - "classification" : "component", - "nameAtManufacturer" : "Alternator", - "nameAtCustomer" : "Alternator" - } - } ] - }, { - "catenaXId" : "urn:uuid:56620fe4-d271-4327-83dc-a3d4b376416d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:56620fe4-d271-4327-83dc-a3d4b376416d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "57929013-09", - "key" : "manufacturerPartId" - }, { - "value" : "NO-612037892218134692148448", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:56620fe4-d271-4327-83dc-a3d4b376416d", - "partTypeInformation" : { - "manufacturerPartId" : "57929013-09", - "customerPartId" : "57929013-09", - "classification" : "component", - "nameAtManufacturer" : "AC compressor", - "nameAtCustomer" : "Air conditioning compressor" - } - } ] - }, { - "catenaXId" : "urn:uuid:8ea7502e-91e8-46ed-a83a-2276a407c26a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8ea7502e-91e8-46ed-a83a-2276a407c26a", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "61184040-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-922143474395871228720906", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8ea7502e-91e8-46ed-a83a-2276a407c26a", - "partTypeInformation" : { - "manufacturerPartId" : "61184040-23", - "customerPartId" : "61184040-23", - "classification" : "component", - "nameAtManufacturer" : "Taillight rear", - "nameAtCustomer" : "Taillight rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:b2849e5a-1f20-4dff-9bba-3cfefb39d057", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b2849e5a-1f20-4dff-9bba-3cfefb39d057", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "78744126-74", - "key" : "manufacturerPartId" - }, { - "value" : "NO-681502455816737211982888", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b2849e5a-1f20-4dff-9bba-3cfefb39d057", - "partTypeInformation" : { - "manufacturerPartId" : "78744126-74", - "customerPartId" : "78744126-74", - "classification" : "component", - "nameAtManufacturer" : "Taillight front", - "nameAtCustomer" : "Taillight front" - } - } ] - }, { - "catenaXId" : "urn:uuid:12e881f8-d79c-4e3c-afd9-b390b0594e48", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:12e881f8-d79c-4e3c-afd9-b390b0594e48", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "12093297-03", - "key" : "manufacturerPartId" - }, { - "value" : "NO-362210290989672338631273", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:12e881f8-d79c-4e3c-afd9-b390b0594e48", - "partTypeInformation" : { - "manufacturerPartId" : "12093297-03", - "customerPartId" : "12093297-03", - "classification" : "component", - "nameAtManufacturer" : "Axle part front", - "nameAtCustomer" : "Axle part front" - } - } ] - }, { - "catenaXId" : "urn:uuid:5b77ff2b-761d-4d74-ae58-e88a85d6889b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5b77ff2b-761d-4d74-ae58-e88a85d6889b", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "88111709-49", - "key" : "manufacturerPartId" - }, { - "value" : "NO-630541033179553139236661", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5b77ff2b-761d-4d74-ae58-e88a85d6889b", - "partTypeInformation" : { - "manufacturerPartId" : "88111709-49", - "customerPartId" : "88111709-49", - "classification" : "component", - "nameAtManufacturer" : "Axle part rear", - "nameAtCustomer" : "Axle part rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:1e046cb6-00f8-4a02-b8e2-9dbd8d5366fd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1e046cb6-00f8-4a02-b8e2-9dbd8d5366fd", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "00871379-44", - "key" : "manufacturerPartId" - }, { - "value" : "NO-425047026621868529384260", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1e046cb6-00f8-4a02-b8e2-9dbd8d5366fd", - "partTypeInformation" : { - "manufacturerPartId" : "00871379-44", - "customerPartId" : "00871379-44", - "classification" : "component", - "nameAtManufacturer" : "Chassis", - "nameAtCustomer" : "Chassis" - } - } ] - }, { - "catenaXId" : "urn:uuid:bb666cc2-4853-43f7-a5aa-2c0629d170e8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bb666cc2-4853-43f7-a5aa-2c0629d170e8", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "08901347-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-445876365621369932737554", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:bb666cc2-4853-43f7-a5aa-2c0629d170e8", - "partTypeInformation" : { - "manufacturerPartId" : "08901347-87", - "customerPartId" : "08901347-87", - "classification" : "component", - "nameAtManufacturer" : "Rims", - "nameAtCustomer" : "Rims" - } - } ] - }, { - "catenaXId" : "urn:uuid:5e5aebfe-5bbc-4006-8786-fc79ac9de93d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5e5aebfe-5bbc-4006-8786-fc79ac9de93d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "45863316-60", - "key" : "manufacturerPartId" - }, { - "value" : "NO-048330683134296148844774", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5e5aebfe-5bbc-4006-8786-fc79ac9de93d", - "partTypeInformation" : { - "manufacturerPartId" : "45863316-60", - "customerPartId" : "45863316-60", - "classification" : "component", - "nameAtManufacturer" : "Tires", - "nameAtCustomer" : "Tires" - } - } ] - }, { - "catenaXId" : "urn:uuid:f5708942-81fc-44c8-ba0b-41e08a7270b2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f5708942-81fc-44c8-ba0b-41e08a7270b2", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B2OM", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B2OM", - "key" : "manufacturerId" - }, { - "value" : "1O222E8-43", - "key" : "manufacturerPartId" - }, { - "value" : "NO-931474446513162209826167", - "key" : "partInstanceId" - }, { - "value" : "Company 2", - "key" : "company" - }, { - "value" : "Brand 2", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f5708942-81fc-44c8-ba0b-41e08a7270b2", - "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:f5708942-81fc-44c8-ba0b-41e08a7270b2", - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-931474446513162209826167", - "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.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "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" : 85, - "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" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f5708942-81fc-44c8-ba0b-41e08a7270b2", - "childItems" : [ { - "catenaXId" : "urn:uuid:4179e8e9-eadb-40dc-9ca1-850daba85bee", - "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a1afc209-a8c3-4647-8125-dd746afade06", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e362f7e8-2ad6-42fe-ac15-70937ea2ae27", - "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:4179e8e9-eadb-40dc-9ca1-850daba85bee", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:4179e8e9-eadb-40dc-9ca1-850daba85bee", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4179e8e9-eadb-40dc-9ca1-850daba85bee", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B0Q0", - "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" : 55, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 30 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:a1afc209-a8c3-4647-8125-dd746afade06", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a1afc209-a8c3-4647-8125-dd746afade06", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "02497J8-27", - "key" : "manufacturerPartId" - }, { - "value" : "NO-627298519242718198455160", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a1afc209-a8c3-4647-8125-dd746afade06", - "partTypeInformation" : { - "manufacturerPartId" : "02497J8-27", - "customerPartId" : "02497J8-27", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a1afc209-a8c3-4647-8125-dd746afade06", - "childItems" : [ { - "catenaXId" : "urn:uuid:d6e73c1d-389b-4a8c-9f94-6dddc19d8da4", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:d6e73c1d-389b-4a8c-9f94-6dddc19d8da4", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:d6e73c1d-389b-4a8c-9f94-6dddc19d8da4", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "NTIER Product" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "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" : 13, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:percent", - "value" : 40 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:e362f7e8-2ad6-42fe-ac15-70937ea2ae27", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:e362f7e8-2ad6-42fe-ac15-70937ea2ae27", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e362f7e8-2ad6-42fe-ac15-70937ea2ae27", - "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.2341", - "materialAbbreviation" : "GL338" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e362f7e8-2ad6-42fe-ac15-70937ea2ae27", - "childItems" : [ ] - } ] - }, { - "catenaXId" : "urn:uuid:915145cf-7496-4e91-a489-d9f6f85f343c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:915145cf-7496-4e91-a489-d9f6f85f343c", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B5MJ", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", - "key" : "manufacturerId" - }, { - "value" : "49655N9-61", - "key" : "manufacturerPartId" - }, { - "value" : "NO-541153289233873983033829", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:915145cf-7496-4e91-a489-d9f6f85f343c", - "partTypeInformation" : { - "manufacturerPartId" : "49655N9-61", - "customerPartId" : "49655N9-61", - "classification" : "component", - "nameAtManufacturer" : "ECU", - "nameAtCustomer" : "ECU" - } - } ], - "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" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:915145cf-7496-4e91-a489-d9f6f85f343c", - "childItems" : [ { - "catenaXId" : "urn:uuid:9c7e3ab3-30b2-42bd-9803-0eccaa8d90f3", - "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e5eec626-9254-44a2-b3ad-18dfe7d93a53", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9539b2fd-0b11-4629-ac77-5337e8ac47f6", - "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:9c7e3ab3-30b2-42bd-9803-0eccaa8d90f3", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:9c7e3ab3-30b2-42bd-9803-0eccaa8d90f3", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9c7e3ab3-30b2-42bd-9803-0eccaa8d90f3", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Glue", - "materialClass" : "5.5", - "component" : [ { - "materialName" : "Aluminium oxide", - "recycledContent" : 29, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "AL7" - }, { - "materialName" : "Other", - "recycledContent" : 49, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:e5eec626-9254-44a2-b3ad-18dfe7d93a53", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e5eec626-9254-44a2-b3ad-18dfe7d93a53", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "78376R9-88", - "key" : "manufacturerPartId" - }, { - "value" : "NO-300134390519871701026432", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e5eec626-9254-44a2-b3ad-18dfe7d93a53", - "partTypeInformation" : { - "manufacturerPartId" : "78376R9-88", - "customerPartId" : "78376R9-88", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e5eec626-9254-44a2-b3ad-18dfe7d93a53", - "childItems" : [ { - "catenaXId" : "urn:uuid:e216e78e-53ad-4861-b888-e425ffba699e", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:e216e78e-53ad-4861-b888-e425ffba699e", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:e216e78e-53ad-4861-b888-e425ffba699e", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "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" : 69, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 30 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:9539b2fd-0b11-4629-ac77-5337e8ac47f6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9539b2fd-0b11-4629-ac77-5337e8ac47f6", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "38103F2-53", - "key" : "manufacturerPartId" - }, { - "value" : "NO-697817059869741684397728", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9539b2fd-0b11-4629-ac77-5337e8ac47f6", - "partTypeInformation" : { - "manufacturerPartId" : "38103F2-53", - "customerPartId" : "38103F2-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" : 47, - "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.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" - } ], - "catenaXId" : "urn:uuid:f0829c4f-f95b-4229-b2bf-d2101bee21ee", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f0829c4f-f95b-4229-b2bf-d2101bee21ee", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "38049661-08", - "key" : "manufacturerPartId" - }, { - "value" : "NO-962366930386049064086712", - "key" : "partInstanceId" - }, { - "value" : "Company 1", - "key" : "company" - }, { - "value" : "Brand 1", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f0829c4f-f95b-4229-b2bf-d2101bee21ee", - "partTypeInformation" : { - "manufacturerPartId" : "38049661-08", - "customerPartId" : "38049661-08", - "classification" : "component", - "nameAtManufacturer" : "Battery", - "nameAtCustomer" : "Battery" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "pack" - } ], - "productType" : "pack" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-962366930386049064086712", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 54, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 5.4 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 52, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 11.75 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 34, - "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" : false, - "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" : "38049661-08", - "technicalSpecification" : [ { - "technicalValue" : "RYtGKbgicZaHCBRQDSx", - "key" : "JxkyvRnL" - } ], - "productLink" : "https://123", - "oeNumber" : "NO-962366930386049064086712", - "category" : { - "subCategory" : [ "Battery" ], - "mainCategory" : [ "Audio, video, navigation" ] - }, - "originalManufacturer" : "Company 1", - "brand" : "Brand 1", - "productDescription" : "Battery" - }, - "sku" : "1002090, xYz.09, ABcXYZ", - "mileage" : 120000.06 - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-962366930386049064086712", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f0829c4f-f95b-4229-b2bf-d2101bee21ee", - "childItems" : [ { - "catenaXId" : "urn:uuid:7949f569-52b3-4d39-97c6-7207e8ebfd13", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:be426758-028a-4c29-bd80-288fc899d6d2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:46be0bfe-6872-4f9b-b0cf-f35b550b6160", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d276295b-9c41-4bc4-b26d-b9cbc325bb0e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4d65df0e-07ec-4a2e-8021-6f8eca76f78d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:84594c1a-07db-4452-b0a0-bb708ed20549", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:7949f569-52b3-4d39-97c6-7207e8ebfd13", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7949f569-52b3-4d39-97c6-7207e8ebfd13", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-520512466537680893682649", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7949f569-52b3-4d39-97c6-7207e8ebfd13", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-520512466537680893682649", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 84, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-520512466537680893682649", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7949f569-52b3-4d39-97c6-7207e8ebfd13", - "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:39d88035-6f62-4d30-87e7-d01e9b4238d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7b41c07e-6d58-43e9-aa3a-b153dd6bbb45", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cb4ad133-df1a-4d93-a51e-e2075c2eb5ee", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e75fddec-f13e-4f0d-8ba5-4f52b4c6d0c8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:910fc565-3091-473b-a4b3-2fc7470e6e6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:297f3cf9-bf00-4567-8dc5-ee801ddeacd4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4aa75de8-0d83-4f95-ae50-0ae14fe5e500", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:37e3d998-fba5-4991-8908-f544eb17f236", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1476ddf3-9247-4463-8432-6bac59fc5f3f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9a0829ab-d02f-4d83-b8fd-f4ec2eea66d6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:39d88035-6f62-4d30-87e7-d01e9b4238d9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:39d88035-6f62-4d30-87e7-d01e9b4238d9", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-802009294145608693275358", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:39d88035-6f62-4d30-87e7-d01e9b4238d9", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-802009294145608693275358", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:39d88035-6f62-4d30-87e7-d01e9b4238d9", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-02-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7b41c07e-6d58-43e9-aa3a-b153dd6bbb45", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7b41c07e-6d58-43e9-aa3a-b153dd6bbb45", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-756276853777678689185451", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7b41c07e-6d58-43e9-aa3a-b153dd6bbb45", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-756276853777678689185451", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7b41c07e-6d58-43e9-aa3a-b153dd6bbb45", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-12-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:cb4ad133-df1a-4d93-a51e-e2075c2eb5ee", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cb4ad133-df1a-4d93-a51e-e2075c2eb5ee", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-167240284180322780252600", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cb4ad133-df1a-4d93-a51e-e2075c2eb5ee", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-167240284180322780252600", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cb4ad133-df1a-4d93-a51e-e2075c2eb5ee", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-04-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e75fddec-f13e-4f0d-8ba5-4f52b4c6d0c8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e75fddec-f13e-4f0d-8ba5-4f52b4c6d0c8", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-092395683958387734973260", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e75fddec-f13e-4f0d-8ba5-4f52b4c6d0c8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-092395683958387734973260", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e75fddec-f13e-4f0d-8ba5-4f52b4c6d0c8", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-06-10", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:910fc565-3091-473b-a4b3-2fc7470e6e6d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:910fc565-3091-473b-a4b3-2fc7470e6e6d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-606480739424825319422782", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:910fc565-3091-473b-a4b3-2fc7470e6e6d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-606480739424825319422782", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:910fc565-3091-473b-a4b3-2fc7470e6e6d", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-03-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:297f3cf9-bf00-4567-8dc5-ee801ddeacd4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:297f3cf9-bf00-4567-8dc5-ee801ddeacd4", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-944995774504537410826193", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:297f3cf9-bf00-4567-8dc5-ee801ddeacd4", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-944995774504537410826193", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:297f3cf9-bf00-4567-8dc5-ee801ddeacd4", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-03-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-31", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4aa75de8-0d83-4f95-ae50-0ae14fe5e500", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4aa75de8-0d83-4f95-ae50-0ae14fe5e500", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-167279066199316301144538", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4aa75de8-0d83-4f95-ae50-0ae14fe5e500", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-167279066199316301144538", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4aa75de8-0d83-4f95-ae50-0ae14fe5e500", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-05-31", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:37e3d998-fba5-4991-8908-f544eb17f236", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:37e3d998-fba5-4991-8908-f544eb17f236", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-809984136125063745168879", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:37e3d998-fba5-4991-8908-f544eb17f236", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-809984136125063745168879", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:37e3d998-fba5-4991-8908-f544eb17f236", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-07-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-31", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1476ddf3-9247-4463-8432-6bac59fc5f3f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1476ddf3-9247-4463-8432-6bac59fc5f3f", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-430478389734059211403146", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1476ddf3-9247-4463-8432-6bac59fc5f3f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-430478389734059211403146", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1476ddf3-9247-4463-8432-6bac59fc5f3f", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-11-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9a0829ab-d02f-4d83-b8fd-f4ec2eea66d6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9a0829ab-d02f-4d83-b8fd-f4ec2eea66d6", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-014495235042077902107133", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9a0829ab-d02f-4d83-b8fd-f4ec2eea66d6", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-014495235042077902107133", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9a0829ab-d02f-4d83-b8fd-f4ec2eea66d6", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-07-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:be426758-028a-4c29-bd80-288fc899d6d2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:be426758-028a-4c29-bd80-288fc899d6d2", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-250512209443245549480665", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:be426758-028a-4c29-bd80-288fc899d6d2", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-250512209443245549480665", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 0, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 31, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-250512209443245549480665", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:be426758-028a-4c29-bd80-288fc899d6d2", - "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9cd3a38c-e76d-4ec6-bd03-1452879be45b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a2248080-c9bc-4c73-a3a4-3aec2836d38c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1a4b0783-e6dd-434a-b4a2-1787ea3f3ddd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:26b8cca2-fd03-4036-a6e5-9c5eada35394", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:83072f0d-d803-4706-8dfb-a15f4eddf5b2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2e7cda2c-8993-4f87-9834-34b780c1bf70", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9fc48160-fdb4-4234-9871-f32d8e784ddd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2d5c97c1-dbfe-4342-bef9-50afaa2c448b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a49c5288-6601-434c-bd72-06f98c66ceb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c1507982-9238-4b4a-983d-35a8c6ffd14d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:9cd3a38c-e76d-4ec6-bd03-1452879be45b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9cd3a38c-e76d-4ec6-bd03-1452879be45b", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-299562942934233019243347", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9cd3a38c-e76d-4ec6-bd03-1452879be45b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-299562942934233019243347", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9cd3a38c-e76d-4ec6-bd03-1452879be45b", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-04-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a2248080-c9bc-4c73-a3a4-3aec2836d38c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a2248080-c9bc-4c73-a3a4-3aec2836d38c", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-758235256740641265702737", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a2248080-c9bc-4c73-a3a4-3aec2836d38c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-758235256740641265702737", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a2248080-c9bc-4c73-a3a4-3aec2836d38c", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-02-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1a4b0783-e6dd-434a-b4a2-1787ea3f3ddd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1a4b0783-e6dd-434a-b4a2-1787ea3f3ddd", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-567390783297298287104074", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1a4b0783-e6dd-434a-b4a2-1787ea3f3ddd", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-567390783297298287104074", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1a4b0783-e6dd-434a-b4a2-1787ea3f3ddd", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-09-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:26b8cca2-fd03-4036-a6e5-9c5eada35394", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:26b8cca2-fd03-4036-a6e5-9c5eada35394", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-070094456244804221977807", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:26b8cca2-fd03-4036-a6e5-9c5eada35394", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-070094456244804221977807", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:26b8cca2-fd03-4036-a6e5-9c5eada35394", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-05-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:83072f0d-d803-4706-8dfb-a15f4eddf5b2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:83072f0d-d803-4706-8dfb-a15f4eddf5b2", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-597772198236689524054592", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:83072f0d-d803-4706-8dfb-a15f4eddf5b2", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-597772198236689524054592", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:83072f0d-d803-4706-8dfb-a15f4eddf5b2", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-08-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-23", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2e7cda2c-8993-4f87-9834-34b780c1bf70", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2e7cda2c-8993-4f87-9834-34b780c1bf70", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-873243499205686870556874", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2e7cda2c-8993-4f87-9834-34b780c1bf70", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-873243499205686870556874", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2e7cda2c-8993-4f87-9834-34b780c1bf70", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-08-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-28", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9fc48160-fdb4-4234-9871-f32d8e784ddd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9fc48160-fdb4-4234-9871-f32d8e784ddd", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-702461657418244349160935", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9fc48160-fdb4-4234-9871-f32d8e784ddd", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-702461657418244349160935", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9fc48160-fdb4-4234-9871-f32d8e784ddd", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-06-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2d5c97c1-dbfe-4342-bef9-50afaa2c448b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2d5c97c1-dbfe-4342-bef9-50afaa2c448b", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-012294370935554819499969", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2d5c97c1-dbfe-4342-bef9-50afaa2c448b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-012294370935554819499969", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2d5c97c1-dbfe-4342-bef9-50afaa2c448b", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-07-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a49c5288-6601-434c-bd72-06f98c66ceb8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a49c5288-6601-434c-bd72-06f98c66ceb8", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-127885495043822548073568", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a49c5288-6601-434c-bd72-06f98c66ceb8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-127885495043822548073568", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a49c5288-6601-434c-bd72-06f98c66ceb8", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-09-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c1507982-9238-4b4a-983d-35a8c6ffd14d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c1507982-9238-4b4a-983d-35a8c6ffd14d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-278566227076088178273348", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c1507982-9238-4b4a-983d-35a8c6ffd14d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-278566227076088178273348", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c1507982-9238-4b4a-983d-35a8c6ffd14d", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-05-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:46be0bfe-6872-4f9b-b0cf-f35b550b6160", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:46be0bfe-6872-4f9b-b0cf-f35b550b6160", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-778285826290477750921980", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:46be0bfe-6872-4f9b-b0cf-f35b550b6160", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-778285826290477750921980", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 76, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-778285826290477750921980", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:46be0bfe-6872-4f9b-b0cf-f35b550b6160", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9d323f6b-f079-4b30-981d-b303a98e96da", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a6f61bff-57fa-4de2-9191-e325da6ef27c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:18900850-f63e-4a4a-a442-362e0f3e977c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ece07c71-b201-4555-a04e-4f48bb66fd07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a18bc126-5768-4abd-afb4-faeb452cd1f1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5d63b043-cec1-4940-9cf8-d541b3f2c812", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c0067e8e-ba6a-469f-a332-aadc964a45d1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7afbc981-6ab1-45aa-ac5a-d1499a4e47c2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cb0bb46a-df86-4353-b106-42469d287d2e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d7e44c3f-3636-48e1-84b9-9381da36fed6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:9d323f6b-f079-4b30-981d-b303a98e96da", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9d323f6b-f079-4b30-981d-b303a98e96da", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-705047154378149859031510", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9d323f6b-f079-4b30-981d-b303a98e96da", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-705047154378149859031510", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9d323f6b-f079-4b30-981d-b303a98e96da", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-11-12", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a6f61bff-57fa-4de2-9191-e325da6ef27c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a6f61bff-57fa-4de2-9191-e325da6ef27c", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-367210853863205375835499", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a6f61bff-57fa-4de2-9191-e325da6ef27c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-367210853863205375835499", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a6f61bff-57fa-4de2-9191-e325da6ef27c", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-07-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:18900850-f63e-4a4a-a442-362e0f3e977c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:18900850-f63e-4a4a-a442-362e0f3e977c", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-399455937983079631170277", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:18900850-f63e-4a4a-a442-362e0f3e977c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-399455937983079631170277", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:18900850-f63e-4a4a-a442-362e0f3e977c", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-03-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-16", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:ece07c71-b201-4555-a04e-4f48bb66fd07", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ece07c71-b201-4555-a04e-4f48bb66fd07", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-073523469801273734159658", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ece07c71-b201-4555-a04e-4f48bb66fd07", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-073523469801273734159658", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ece07c71-b201-4555-a04e-4f48bb66fd07", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-11-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a18bc126-5768-4abd-afb4-faeb452cd1f1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a18bc126-5768-4abd-afb4-faeb452cd1f1", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-067724569431427995573338", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a18bc126-5768-4abd-afb4-faeb452cd1f1", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-067724569431427995573338", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a18bc126-5768-4abd-afb4-faeb452cd1f1", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-01-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-28", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5d63b043-cec1-4940-9cf8-d541b3f2c812", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5d63b043-cec1-4940-9cf8-d541b3f2c812", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-199538663165426745696105", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5d63b043-cec1-4940-9cf8-d541b3f2c812", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-199538663165426745696105", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5d63b043-cec1-4940-9cf8-d541b3f2c812", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-10", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-04", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c0067e8e-ba6a-469f-a332-aadc964a45d1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c0067e8e-ba6a-469f-a332-aadc964a45d1", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-010211437554632307949483", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c0067e8e-ba6a-469f-a332-aadc964a45d1", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-010211437554632307949483", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c0067e8e-ba6a-469f-a332-aadc964a45d1", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-08-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-20", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7afbc981-6ab1-45aa-ac5a-d1499a4e47c2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7afbc981-6ab1-45aa-ac5a-d1499a4e47c2", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-141564665649298107942552", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7afbc981-6ab1-45aa-ac5a-d1499a4e47c2", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-141564665649298107942552", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7afbc981-6ab1-45aa-ac5a-d1499a4e47c2", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-11-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-06", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:cb0bb46a-df86-4353-b106-42469d287d2e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cb0bb46a-df86-4353-b106-42469d287d2e", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-054071004063843941386026", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cb0bb46a-df86-4353-b106-42469d287d2e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-054071004063843941386026", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cb0bb46a-df86-4353-b106-42469d287d2e", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-06-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d7e44c3f-3636-48e1-84b9-9381da36fed6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d7e44c3f-3636-48e1-84b9-9381da36fed6", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-417125382227090754917132", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d7e44c3f-3636-48e1-84b9-9381da36fed6", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-417125382227090754917132", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d7e44c3f-3636-48e1-84b9-9381da36fed6", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-09-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d276295b-9c41-4bc4-b26d-b9cbc325bb0e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d276295b-9c41-4bc4-b26d-b9cbc325bb0e", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-931796952048252740473007", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d276295b-9c41-4bc4-b26d-b9cbc325bb0e", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-931796952048252740473007", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 67, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 8, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-931796952048252740473007", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d276295b-9c41-4bc4-b26d-b9cbc325bb0e", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:40af1bc5-108f-4853-9a53-dc9d35fbeab8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a03226cc-1194-4b88-bbf0-7e77bc4cb1d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b29cb51e-f6ee-4753-a123-9397edb9f5c6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f20244dd-844a-4a3b-8391-9cd904d65e53", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:13e4fbb1-8d59-4b3e-a40c-c00cac740daa", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e38217dc-0406-48fc-9bab-19e52a50e2e7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9752bb54-cec0-41bd-ad73-9858f1188d45", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4e46a098-9abf-440d-a215-8504eac4cab2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8c491b70-c8a7-43da-aeb7-daa9785c10e3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:76b58391-c390-4034-9637-f6ba52217de3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:40af1bc5-108f-4853-9a53-dc9d35fbeab8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:40af1bc5-108f-4853-9a53-dc9d35fbeab8", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-275477693632089475922960", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:40af1bc5-108f-4853-9a53-dc9d35fbeab8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-275477693632089475922960", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:40af1bc5-108f-4853-9a53-dc9d35fbeab8", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-08-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a03226cc-1194-4b88-bbf0-7e77bc4cb1d3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a03226cc-1194-4b88-bbf0-7e77bc4cb1d3", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-879435424322014715862285", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a03226cc-1194-4b88-bbf0-7e77bc4cb1d3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-879435424322014715862285", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a03226cc-1194-4b88-bbf0-7e77bc4cb1d3", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-08-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-20", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b29cb51e-f6ee-4753-a123-9397edb9f5c6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b29cb51e-f6ee-4753-a123-9397edb9f5c6", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-357114987289482139406798", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b29cb51e-f6ee-4753-a123-9397edb9f5c6", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-357114987289482139406798", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b29cb51e-f6ee-4753-a123-9397edb9f5c6", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-03-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f20244dd-844a-4a3b-8391-9cd904d65e53", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f20244dd-844a-4a3b-8391-9cd904d65e53", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-171376223340645245426728", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f20244dd-844a-4a3b-8391-9cd904d65e53", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-171376223340645245426728", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f20244dd-844a-4a3b-8391-9cd904d65e53", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-12-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:13e4fbb1-8d59-4b3e-a40c-c00cac740daa", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:13e4fbb1-8d59-4b3e-a40c-c00cac740daa", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-628151498802871711505581", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:13e4fbb1-8d59-4b3e-a40c-c00cac740daa", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-628151498802871711505581", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:13e4fbb1-8d59-4b3e-a40c-c00cac740daa", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-08-03", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-28", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e38217dc-0406-48fc-9bab-19e52a50e2e7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e38217dc-0406-48fc-9bab-19e52a50e2e7", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-724905454476175699843779", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e38217dc-0406-48fc-9bab-19e52a50e2e7", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-724905454476175699843779", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e38217dc-0406-48fc-9bab-19e52a50e2e7", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-02-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9752bb54-cec0-41bd-ad73-9858f1188d45", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9752bb54-cec0-41bd-ad73-9858f1188d45", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-630380656110048296523895", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9752bb54-cec0-41bd-ad73-9858f1188d45", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-630380656110048296523895", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9752bb54-cec0-41bd-ad73-9858f1188d45", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-10-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-28", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4e46a098-9abf-440d-a215-8504eac4cab2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4e46a098-9abf-440d-a215-8504eac4cab2", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-458208609486459547094465", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4e46a098-9abf-440d-a215-8504eac4cab2", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-458208609486459547094465", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4e46a098-9abf-440d-a215-8504eac4cab2", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-11-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8c491b70-c8a7-43da-aeb7-daa9785c10e3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8c491b70-c8a7-43da-aeb7-daa9785c10e3", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-590952659938844999107020", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8c491b70-c8a7-43da-aeb7-daa9785c10e3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-590952659938844999107020", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8c491b70-c8a7-43da-aeb7-daa9785c10e3", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-10-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:76b58391-c390-4034-9637-f6ba52217de3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:76b58391-c390-4034-9637-f6ba52217de3", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-450356299392514618157631", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:76b58391-c390-4034-9637-f6ba52217de3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-450356299392514618157631", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:76b58391-c390-4034-9637-f6ba52217de3", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-05-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4d65df0e-07ec-4a2e-8021-6f8eca76f78d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4d65df0e-07ec-4a2e-8021-6f8eca76f78d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-538735792422084863659463", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4d65df0e-07ec-4a2e-8021-6f8eca76f78d", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-538735792422084863659463", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 84, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-538735792422084863659463", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4d65df0e-07ec-4a2e-8021-6f8eca76f78d", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:92afe135-eb93-446a-9d94-fb4820cd3c7d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d8515d63-9a01-4073-900d-dfeccbcb9c96", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f696890d-63d2-4cd5-b4e4-8c71ea2cc0f8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1882de9d-bfd3-477a-9689-06f31bc21bf0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1c70c0f5-976b-411e-9a9a-01109eb2f9cd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cda303d4-3ff0-4d2b-b87f-6eb55e54684d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:386845d7-544e-4c2d-8c3f-b4e992f56a76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:accc4748-315b-478f-b085-ee6c45743775", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c1dfb47c-a137-4665-9ffd-99f7c1f16e9a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f70a709f-4d11-4882-8737-e607ae23b75f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:92afe135-eb93-446a-9d94-fb4820cd3c7d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:92afe135-eb93-446a-9d94-fb4820cd3c7d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-122920615181111352845645", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:92afe135-eb93-446a-9d94-fb4820cd3c7d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-122920615181111352845645", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:92afe135-eb93-446a-9d94-fb4820cd3c7d", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-12-14", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d8515d63-9a01-4073-900d-dfeccbcb9c96", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d8515d63-9a01-4073-900d-dfeccbcb9c96", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-723089089730528831808417", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d8515d63-9a01-4073-900d-dfeccbcb9c96", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-723089089730528831808417", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d8515d63-9a01-4073-900d-dfeccbcb9c96", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-10-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f696890d-63d2-4cd5-b4e4-8c71ea2cc0f8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f696890d-63d2-4cd5-b4e4-8c71ea2cc0f8", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-809527030616741200160736", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f696890d-63d2-4cd5-b4e4-8c71ea2cc0f8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-809527030616741200160736", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f696890d-63d2-4cd5-b4e4-8c71ea2cc0f8", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-12-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1882de9d-bfd3-477a-9689-06f31bc21bf0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1882de9d-bfd3-477a-9689-06f31bc21bf0", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-999640331357053992458820", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1882de9d-bfd3-477a-9689-06f31bc21bf0", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-999640331357053992458820", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1882de9d-bfd3-477a-9689-06f31bc21bf0", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-04-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-20", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1c70c0f5-976b-411e-9a9a-01109eb2f9cd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c70c0f5-976b-411e-9a9a-01109eb2f9cd", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-965783064482902475785856", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1c70c0f5-976b-411e-9a9a-01109eb2f9cd", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-965783064482902475785856", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c70c0f5-976b-411e-9a9a-01109eb2f9cd", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-05-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-04", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:cda303d4-3ff0-4d2b-b87f-6eb55e54684d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cda303d4-3ff0-4d2b-b87f-6eb55e54684d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-351847544663843101024057", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cda303d4-3ff0-4d2b-b87f-6eb55e54684d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-351847544663843101024057", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cda303d4-3ff0-4d2b-b87f-6eb55e54684d", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-12-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-28", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:386845d7-544e-4c2d-8c3f-b4e992f56a76", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:386845d7-544e-4c2d-8c3f-b4e992f56a76", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-099904565002316373312234", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:386845d7-544e-4c2d-8c3f-b4e992f56a76", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-099904565002316373312234", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:386845d7-544e-4c2d-8c3f-b4e992f56a76", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-12-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:accc4748-315b-478f-b085-ee6c45743775", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:accc4748-315b-478f-b085-ee6c45743775", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-476215694206938639327996", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:accc4748-315b-478f-b085-ee6c45743775", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-476215694206938639327996", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:accc4748-315b-478f-b085-ee6c45743775", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-04-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c1dfb47c-a137-4665-9ffd-99f7c1f16e9a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c1dfb47c-a137-4665-9ffd-99f7c1f16e9a", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-119928042934999916398609", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c1dfb47c-a137-4665-9ffd-99f7c1f16e9a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-119928042934999916398609", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c1dfb47c-a137-4665-9ffd-99f7c1f16e9a", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-02-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f70a709f-4d11-4882-8737-e607ae23b75f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f70a709f-4d11-4882-8737-e607ae23b75f", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-955333669607913531320009", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f70a709f-4d11-4882-8737-e607ae23b75f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-955333669607913531320009", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f70a709f-4d11-4882-8737-e607ae23b75f", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-01-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-28", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:84594c1a-07db-4452-b0a0-bb708ed20549", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:84594c1a-07db-4452-b0a0-bb708ed20549", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-921462647521435039463864", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:84594c1a-07db-4452-b0a0-bb708ed20549", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-921462647521435039463864", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 11, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 28, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-921462647521435039463864", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:84594c1a-07db-4452-b0a0-bb708ed20549", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3ba46d00-d809-4a74-a3c1-c49a536cf97c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1c28b6c8-5d17-478b-a17c-70f54f10f2a1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:04dfc741-7491-412e-bdc1-7283dff5f43b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5e1e7b41-b584-4397-8301-2cb934ff8591", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:20989689-629d-4e85-9858-1dfb079d60d8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6cb8cd09-b056-45ef-b694-c168e88ef280", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:03bd74cb-d03f-455d-bfe7-f8f1226d3fb7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7db8a57d-1a49-4eab-8693-fb858fed7f3c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:89557166-de26-4285-a5e9-83c3630ec7ad", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a0fba1e7-96e1-4e79-b7d9-8a75cc34ab76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:3ba46d00-d809-4a74-a3c1-c49a536cf97c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3ba46d00-d809-4a74-a3c1-c49a536cf97c", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-483722962185219691610903", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3ba46d00-d809-4a74-a3c1-c49a536cf97c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-483722962185219691610903", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3ba46d00-d809-4a74-a3c1-c49a536cf97c", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-11-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1c28b6c8-5d17-478b-a17c-70f54f10f2a1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c28b6c8-5d17-478b-a17c-70f54f10f2a1", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-342737165319410710418977", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1c28b6c8-5d17-478b-a17c-70f54f10f2a1", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-342737165319410710418977", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c28b6c8-5d17-478b-a17c-70f54f10f2a1", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-01-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:04dfc741-7491-412e-bdc1-7283dff5f43b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:04dfc741-7491-412e-bdc1-7283dff5f43b", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-390358700780162636647853", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:04dfc741-7491-412e-bdc1-7283dff5f43b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-390358700780162636647853", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:04dfc741-7491-412e-bdc1-7283dff5f43b", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-05-14", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5e1e7b41-b584-4397-8301-2cb934ff8591", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5e1e7b41-b584-4397-8301-2cb934ff8591", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-596026686217860912921951", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5e1e7b41-b584-4397-8301-2cb934ff8591", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-596026686217860912921951", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5e1e7b41-b584-4397-8301-2cb934ff8591", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-10-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-31", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:20989689-629d-4e85-9858-1dfb079d60d8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:20989689-629d-4e85-9858-1dfb079d60d8", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-266074356576988692213753", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:20989689-629d-4e85-9858-1dfb079d60d8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-266074356576988692213753", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:20989689-629d-4e85-9858-1dfb079d60d8", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-01-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6cb8cd09-b056-45ef-b694-c168e88ef280", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6cb8cd09-b056-45ef-b694-c168e88ef280", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-725583477083833741393656", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6cb8cd09-b056-45ef-b694-c168e88ef280", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-725583477083833741393656", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6cb8cd09-b056-45ef-b694-c168e88ef280", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:03bd74cb-d03f-455d-bfe7-f8f1226d3fb7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:03bd74cb-d03f-455d-bfe7-f8f1226d3fb7", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-210760054456573324021772", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:03bd74cb-d03f-455d-bfe7-f8f1226d3fb7", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-210760054456573324021772", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:03bd74cb-d03f-455d-bfe7-f8f1226d3fb7", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-07-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7db8a57d-1a49-4eab-8693-fb858fed7f3c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7db8a57d-1a49-4eab-8693-fb858fed7f3c", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-550743199758038369950648", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7db8a57d-1a49-4eab-8693-fb858fed7f3c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-550743199758038369950648", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7db8a57d-1a49-4eab-8693-fb858fed7f3c", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-09-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:89557166-de26-4285-a5e9-83c3630ec7ad", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:89557166-de26-4285-a5e9-83c3630ec7ad", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-516344653212958216406230", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:89557166-de26-4285-a5e9-83c3630ec7ad", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-516344653212958216406230", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:89557166-de26-4285-a5e9-83c3630ec7ad", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-10-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a0fba1e7-96e1-4e79-b7d9-8a75cc34ab76", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a0fba1e7-96e1-4e79-b7d9-8a75cc34ab76", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-258138194276887908797055", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a0fba1e7-96e1-4e79-b7d9-8a75cc34ab76", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-258138194276887908797055", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a0fba1e7-96e1-4e79-b7d9-8a75cc34ab76", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-04-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Mehrzweckfahrzeug", - "catenaXId" : "urn:uuid:a10b51f9-7e9c-4e86-9f33-9197f6aa0f67", - "engine" : { - "size" : 2998, - "power" : 143 - }, - "emptyWeight" : 1.73, - "fuel" : "Elektro", - "vehicleModel" : "Vehicle Fully Electric", - "productionDateGMT" : "2010-01-01", - "equipmentVariants" : [ { - "code" : "B298B", - "description" : "keyless entry", - "group" : "special equipment" - }, { - "code" : "A248B", - "description" : "steering wheel heating", - "group" : "special equipment" - }, { - "code" : "S763C", - "description" : "sport package", - "group" : "special equipment" - }, { - "code" : "S378B", - "description" : "integrated child seats", - "group" : "special equipment" - } ], - "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", - "mileage" : [ { - "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2016-07-31", - "mileageDistance" : 120000 - } ] - } ], - "catenaXId" : "urn:uuid:a10b51f9-7e9c-4e86-9f33-9197f6aa0f67", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "NT-59", - "key" : "manufacturerPartId" - }, { - "value" : "OMACGGHVTFBDZCDYV", - "key" : "partInstanceId" - }, { - "value" : "OMACGGHVTFBDZCDYV", - "key" : "van" - } ], - "manufacturingInformation" : { - "date" : "2018-07-18T06:23:20.000Z", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a10b51f9-7e9c-4e86-9f33-9197f6aa0f67", - "partTypeInformation" : { - "manufacturerPartId" : "NT-59", - "classification" : "product", - "nameAtManufacturer" : "Vehicle Fully Electric" - } - } ], - "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" : 22, - "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" : 57, - "materialClass" : "2.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 286.65 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "ALU331" - }, { - "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", - "recycledContent" : 66, - "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" : 5, - "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" : 12, - "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:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a10b51f9-7e9c-4e86-9f33-9197f6aa0f67", - "childItems" : [ { - "catenaXId" : "urn:uuid:e11a28f0-e74a-41c9-b358-34423b697f9c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d7d0f5df-2561-43b4-9afd-e8514fc37d6a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1be2e13b-9193-471f-a7eb-b91e30e1ea99", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8975eaa7-91af-425c-bbef-e1afb079226e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c4f3bdae-42ee-4982-a944-3b24ece10830", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:05319f82-2561-4336-bbfc-4d6516454759", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:88be53d9-4bd2-488d-8099-2d731cb9b32d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:15af8cff-a966-406e-a6de-f5b1c8cc44f4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:751bd2ea-2c9e-4918-ab66-3bcf4132688d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:780aba5b-4182-4f13-971e-4514f5631860", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:98ff7858-d16d-498b-a02e-5c3e18fb5231", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:775fc858-0e4e-46e8-b315-e0e640acab25", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ec3a8a18-0a75-4ea1-9a10-551a1e06bf6f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ee967334-e75d-4cd3-b034-8503bf8d6c6f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3f38af1f-b997-4602-9817-53c231e04a5f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0f785809-5cab-473e-8af1-1b789f97504b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:21019f9a-ec0a-4212-a0e1-ad041504c39c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e6d4a6c6-2334-4b1b-b387-cf6e9c3beec9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:72b3024a-1338-4c10-a3e6-8bfb6b386a7a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2bfc8634-4cbf-4193-8e6e-8356e63c1123", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d6dbdd82-ac65-4cf4-b9d5-e0a4c5e30166", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2d21f760-b68d-4e84-88a0-88c2f81c603b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b8e83787-3f9b-4ec4-a0bd-b83b976033c7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:34129cf0-36ef-4c2e-b6cf-b214e3b00cd9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a71e0d38-48bc-4ef3-9e8a-467f4a7b352d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:81af2bb4-f9cd-4262-a342-3bfb56951990", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c5a038d4-12c3-4834-aec0-dfdc80150936", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:acc98aa7-d554-4c9d-bd96-6f38e1ba8238", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f8fe9ed6-d98a-47f4-9acc-66aa615f3f1f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7de079de-c069-4f6e-ba6e-384ecde08d6b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B2OM", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:67c7cfba-db71-462b-98ed-9643f22b7b60", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B5MJ", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d14f2248-e4a0-4318-a943-30d680e1123a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:e11a28f0-e74a-41c9-b358-34423b697f9c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e11a28f0-e74a-41c9-b358-34423b697f9c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "73849201-61", - "key" : "manufacturerPartId" - }, { - "value" : "NO-173869309460130399431584", - "key" : "partInstanceId" - }, { - "value" : "Company 10", - "key" : "company" - }, { - "value" : "Brand 10", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e11a28f0-e74a-41c9-b358-34423b697f9c", - "partTypeInformation" : { - "manufacturerPartId" : "73849201-61", - "customerPartId" : "73849201-61", - "classification" : "component", - "nameAtManufacturer" : "Catalysator", - "nameAtCustomer" : "Catalysator" - } - } ] - }, { - "catenaXId" : "urn:uuid:d7d0f5df-2561-43b4-9afd-e8514fc37d6a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d7d0f5df-2561-43b4-9afd-e8514fc37d6a", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "22782277-50", - "key" : "manufacturerPartId" - }, { - "value" : "NO-938909616812673193036387", - "key" : "partInstanceId" - }, { - "value" : "Company 3", - "key" : "company" - }, { - "value" : "Brand 3", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d7d0f5df-2561-43b4-9afd-e8514fc37d6a", - "partTypeInformation" : { - "manufacturerPartId" : "22782277-50", - "customerPartId" : "22782277-50", - "classification" : "component", - "nameAtManufacturer" : "Door f-l", - "nameAtCustomer" : "Door front-left" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d7d0f5df-2561-43b4-9afd-e8514fc37d6a", - "childItems" : [ { - "catenaXId" : "urn:uuid:077b45c2-e172-4913-8291-8755bd792369", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:077b45c2-e172-4913-8291-8755bd792369", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:077b45c2-e172-4913-8291-8755bd792369", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-140573763382387799575606", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:077b45c2-e172-4913-8291-8755bd792369", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "64931023FRV", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:077b45c2-e172-4913-8291-8755bd792369", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:1be2e13b-9193-471f-a7eb-b91e30e1ea99", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1be2e13b-9193-471f-a7eb-b91e30e1ea99", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "95657362-64", - "key" : "manufacturerPartId" - }, { - "value" : "NO-270734930973082008216069", - "key" : "partInstanceId" - }, { - "value" : "Company 4", - "key" : "company" - }, { - "value" : "Brand 4", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1be2e13b-9193-471f-a7eb-b91e30e1ea99", - "partTypeInformation" : { - "manufacturerPartId" : "33740332-54", - "customerPartId" : "33740332-54", - "classification" : "component", - "nameAtManufacturer" : "Door f-r", - "nameAtCustomer" : "Door front-right" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1be2e13b-9193-471f-a7eb-b91e30e1ea99", - "childItems" : [ { - "catenaXId" : "urn:uuid:b9ebb7a7-6a50-4070-980f-9517b61497e5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:b9ebb7a7-6a50-4070-980f-9517b61497e5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b9ebb7a7-6a50-4070-980f-9517b61497e5", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-775197864923990720830323", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b9ebb7a7-6a50-4070-980f-9517b61497e5", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "46395027YCA", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:b9ebb7a7-6a50-4070-980f-9517b61497e5", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:8975eaa7-91af-425c-bbef-e1afb079226e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8975eaa7-91af-425c-bbef-e1afb079226e", - "customers" : [ { - "businessPartner" : false, - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "15635759-16", - "key" : "manufacturerPartId" - }, { - "value" : "NO-977394540022858789048449", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8975eaa7-91af-425c-bbef-e1afb079226e", - "partTypeInformation" : { - "manufacturerPartId" : "15635759-16", - "customerPartId" : "15635759-16", - "classification" : "component", - "nameAtManufacturer" : "Door r-l", - "nameAtCustomer" : "Door rear-left" - } - } ] - }, { - "catenaXId" : "urn:uuid:c4f3bdae-42ee-4982-a944-3b24ece10830", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c4f3bdae-42ee-4982-a944-3b24ece10830", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "28673126-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-213734157633591164966974", - "key" : "partInstanceId" - }, { - "value" : "Company 5", - "key" : "company" - }, { - "value" : "Brand 5", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c4f3bdae-42ee-4982-a944-3b24ece10830", - "partTypeInformation" : { - "manufacturerPartId" : "28673126-98", - "customerPartId" : "28673126-98", - "classification" : "component", - "nameAtManufacturer" : "Door r-r", - "nameAtCustomer" : "Door rear-right" - } - } ] - }, { - "catenaXId" : "urn:uuid:05319f82-2561-4336-bbfc-4d6516454759", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:05319f82-2561-4336-bbfc-4d6516454759", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "94421589-82", - "key" : "manufacturerPartId" - }, { - "value" : "NO-244454129200966996062767", - "key" : "partInstanceId" - }, { - "value" : "Company 6", - "key" : "company" - }, { - "value" : "Brand 6", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:05319f82-2561-4336-bbfc-4d6516454759", - "partTypeInformation" : { - "manufacturerPartId" : "94421589-82", - "customerPartId" : "94421589-82", - "classification" : "component", - "nameAtManufacturer" : "Engine hood", - "nameAtCustomer" : "Engine hood" - } - } ] - }, { - "catenaXId" : "urn:uuid:88be53d9-4bd2-488d-8099-2d731cb9b32d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:88be53d9-4bd2-488d-8099-2d731cb9b32d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "85023955-75", - "key" : "manufacturerPartId" - }, { - "value" : "NO-476156015865640769480088", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:88be53d9-4bd2-488d-8099-2d731cb9b32d", - "partTypeInformation" : { - "manufacturerPartId" : "85023955-75", - "customerPartId" : "85023955-75", - "classification" : "component", - "nameAtManufacturer" : "Tailgate", - "nameAtCustomer" : "Tailgate" - } - } ] - }, { - "catenaXId" : "urn:uuid:15af8cff-a966-406e-a6de-f5b1c8cc44f4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:15af8cff-a966-406e-a6de-f5b1c8cc44f4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "13769860-47", - "key" : "manufacturerPartId" - }, { - "value" : "NO-791773928170155581611198", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:15af8cff-a966-406e-a6de-f5b1c8cc44f4", - "partTypeInformation" : { - "manufacturerPartId" : "13769860-47", - "customerPartId" : "13769860-47", - "classification" : "component", - "nameAtManufacturer" : "Fender left", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:751bd2ea-2c9e-4918-ab66-3bcf4132688d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:751bd2ea-2c9e-4918-ab66-3bcf4132688d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "36643162-35", - "key" : "manufacturerPartId" - }, { - "value" : "NO-432963755223945047846289", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:751bd2ea-2c9e-4918-ab66-3bcf4132688d", - "partTypeInformation" : { - "manufacturerPartId" : "36643162-35", - "customerPartId" : "36643162-35", - "classification" : "component", - "nameAtManufacturer" : "Fender right", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:780aba5b-4182-4f13-971e-4514f5631860", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:780aba5b-4182-4f13-971e-4514f5631860", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "54165444-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-646340468426904869330183", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:780aba5b-4182-4f13-971e-4514f5631860", - "partTypeInformation" : { - "manufacturerPartId" : "54165444-59", - "customerPartId" : "54165444-59", - "classification" : "component", - "nameAtManufacturer" : "Bumper front", - "nameAtCustomer" : "Bumper front" - } - } ] - }, { - "catenaXId" : "urn:uuid:98ff7858-d16d-498b-a02e-5c3e18fb5231", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:98ff7858-d16d-498b-a02e-5c3e18fb5231", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "22768257-25", - "key" : "manufacturerPartId" - }, { - "value" : "NO-158328490581195876213193", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:98ff7858-d16d-498b-a02e-5c3e18fb5231", - "partTypeInformation" : { - "manufacturerPartId" : "22768257-25", - "customerPartId" : "22768257-25", - "classification" : "component", - "nameAtManufacturer" : "Bumper rear", - "nameAtCustomer" : "Bumper rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:775fc858-0e4e-46e8-b315-e0e640acab25", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:775fc858-0e4e-46e8-b315-e0e640acab25", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "65529521-37", - "key" : "manufacturerPartId" - }, { - "value" : "NO-433929589709548879456301", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:775fc858-0e4e-46e8-b315-e0e640acab25", - "partTypeInformation" : { - "manufacturerPartId" : "65529521-37", - "customerPartId" : "65529521-37", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror left", - "nameAtCustomer" : "Exterior mirror left" - } - } ] - }, { - "catenaXId" : "urn:uuid:ec3a8a18-0a75-4ea1-9a10-551a1e06bf6f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ec3a8a18-0a75-4ea1-9a10-551a1e06bf6f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "58471477-24", - "key" : "manufacturerPartId" - }, { - "value" : "NO-232423709155772795261209", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ec3a8a18-0a75-4ea1-9a10-551a1e06bf6f", - "partTypeInformation" : { - "manufacturerPartId" : "58471477-24", - "customerPartId" : "58471477-24", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror right", - "nameAtCustomer" : "Exterior mirror right" - } - } ] - }, { - "catenaXId" : "urn:uuid:ee967334-e75d-4cd3-b034-8503bf8d6c6f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ee967334-e75d-4cd3-b034-8503bf8d6c6f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "09002013-68", - "key" : "manufacturerPartId" - }, { - "value" : "NO-678272188575036819743842", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ee967334-e75d-4cd3-b034-8503bf8d6c6f", - "partTypeInformation" : { - "manufacturerPartId" : "09002013-68", - "customerPartId" : "09002013-68", - "classification" : "component", - "nameAtManufacturer" : "Trailer coupling", - "nameAtCustomer" : "Tailer coupling" - } - } ] - }, { - "catenaXId" : "urn:uuid:3f38af1f-b997-4602-9817-53c231e04a5f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3f38af1f-b997-4602-9817-53c231e04a5f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "43501996-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-710643772484668745059837", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3f38af1f-b997-4602-9817-53c231e04a5f", - "partTypeInformation" : { - "manufacturerPartId" : "43501996-98", - "customerPartId" : "43501996-98", - "classification" : "component", - "nameAtManufacturer" : "Dashboard", - "nameAtCustomer" : "Dashboard" - } - } ] - }, { - "catenaXId" : "urn:uuid:0f785809-5cab-473e-8af1-1b789f97504b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f785809-5cab-473e-8af1-1b789f97504b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "77795937-13", - "key" : "manufacturerPartId" - }, { - "value" : "NO-335806042660849205713972", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0f785809-5cab-473e-8af1-1b789f97504b", - "partTypeInformation" : { - "manufacturerPartId" : "77795937-13", - "customerPartId" : "77795937-13", - "classification" : "component", - "nameAtManufacturer" : "Steering wheel", - "nameAtCustomer" : "Steering wheel" - } - } ] - }, { - "catenaXId" : "urn:uuid:21019f9a-ec0a-4212-a0e1-ad041504c39c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:21019f9a-ec0a-4212-a0e1-ad041504c39c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "20125432-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-369843393609445666360263", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:21019f9a-ec0a-4212-a0e1-ad041504c39c", - "partTypeInformation" : { - "manufacturerPartId" : "20125432-59", - "customerPartId" : "20125432-59", - "classification" : "component", - "nameAtManufacturer" : "Indicator left", - "nameAtCustomer" : "Indicator left" - } - } ] - }, { - "catenaXId" : "urn:uuid:e6d4a6c6-2334-4b1b-b387-cf6e9c3beec9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e6d4a6c6-2334-4b1b-b387-cf6e9c3beec9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "19073706-76", - "key" : "manufacturerPartId" - }, { - "value" : "NO-303908024040522130442707", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e6d4a6c6-2334-4b1b-b387-cf6e9c3beec9", - "partTypeInformation" : { - "manufacturerPartId" : "19073706-76", - "customerPartId" : "19073706-76", - "classification" : "component", - "nameAtManufacturer" : "Indicator right", - "nameAtCustomer" : "Indicator right" - } - } ] - }, { - "catenaXId" : "urn:uuid:72b3024a-1338-4c10-a3e6-8bfb6b386a7a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:72b3024a-1338-4c10-a3e6-8bfb6b386a7a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "45415162-57", - "key" : "manufacturerPartId" - }, { - "value" : "NO-274564416847350664881678", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:72b3024a-1338-4c10-a3e6-8bfb6b386a7a", - "partTypeInformation" : { - "manufacturerPartId" : "45415162-57", - "customerPartId" : "45415162-57", - "classification" : "component", - "nameAtManufacturer" : "Led headlight", - "nameAtCustomer" : "Led headlight" - } - } ] - }, { - "catenaXId" : "urn:uuid:2bfc8634-4cbf-4193-8e6e-8356e63c1123", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2bfc8634-4cbf-4193-8e6e-8356e63c1123", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "78141846-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-454752183355591251324095", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2bfc8634-4cbf-4193-8e6e-8356e63c1123", - "partTypeInformation" : { - "manufacturerPartId" : "78141846-87", - "customerPartId" : "78141846-87", - "classification" : "component", - "nameAtManufacturer" : "Starter motor", - "nameAtCustomer" : "Starter motor" - } - } ] - }, { - "catenaXId" : "urn:uuid:d6dbdd82-ac65-4cf4-b9d5-e0a4c5e30166", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d6dbdd82-ac65-4cf4-b9d5-e0a4c5e30166", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "81324139-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-774603299170140988703271", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d6dbdd82-ac65-4cf4-b9d5-e0a4c5e30166", - "partTypeInformation" : { - "manufacturerPartId" : "81324139-23", - "customerPartId" : "81324139-23", - "classification" : "component", - "nameAtManufacturer" : "Alternator", - "nameAtCustomer" : "Alternator" - } - } ] - }, { - "catenaXId" : "urn:uuid:2d21f760-b68d-4e84-88a0-88c2f81c603b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2d21f760-b68d-4e84-88a0-88c2f81c603b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "57929013-09", - "key" : "manufacturerPartId" - }, { - "value" : "NO-959502606520973872041354", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2d21f760-b68d-4e84-88a0-88c2f81c603b", - "partTypeInformation" : { - "manufacturerPartId" : "57929013-09", - "customerPartId" : "57929013-09", - "classification" : "component", - "nameAtManufacturer" : "AC compressor", - "nameAtCustomer" : "Air conditioning compressor" - } - } ] - }, { - "catenaXId" : "urn:uuid:b8e83787-3f9b-4ec4-a0bd-b83b976033c7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b8e83787-3f9b-4ec4-a0bd-b83b976033c7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "61184040-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-638799910804524755274078", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b8e83787-3f9b-4ec4-a0bd-b83b976033c7", - "partTypeInformation" : { - "manufacturerPartId" : "61184040-23", - "customerPartId" : "61184040-23", - "classification" : "component", - "nameAtManufacturer" : "Taillight rear", - "nameAtCustomer" : "Taillight rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:34129cf0-36ef-4c2e-b6cf-b214e3b00cd9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:34129cf0-36ef-4c2e-b6cf-b214e3b00cd9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "78744126-74", - "key" : "manufacturerPartId" - }, { - "value" : "NO-500140302864592033868830", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:34129cf0-36ef-4c2e-b6cf-b214e3b00cd9", - "partTypeInformation" : { - "manufacturerPartId" : "78744126-74", - "customerPartId" : "78744126-74", - "classification" : "component", - "nameAtManufacturer" : "Taillight front", - "nameAtCustomer" : "Taillight front" - } - } ] - }, { - "catenaXId" : "urn:uuid:a71e0d38-48bc-4ef3-9e8a-467f4a7b352d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a71e0d38-48bc-4ef3-9e8a-467f4a7b352d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "12093297-03", - "key" : "manufacturerPartId" - }, { - "value" : "NO-564792724907208995831513", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a71e0d38-48bc-4ef3-9e8a-467f4a7b352d", - "partTypeInformation" : { - "manufacturerPartId" : "12093297-03", - "customerPartId" : "12093297-03", - "classification" : "component", - "nameAtManufacturer" : "Axle part front", - "nameAtCustomer" : "Axle part front" - } - } ] - }, { - "catenaXId" : "urn:uuid:81af2bb4-f9cd-4262-a342-3bfb56951990", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:81af2bb4-f9cd-4262-a342-3bfb56951990", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "88111709-49", - "key" : "manufacturerPartId" - }, { - "value" : "NO-207250920456444812116091", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:81af2bb4-f9cd-4262-a342-3bfb56951990", - "partTypeInformation" : { - "manufacturerPartId" : "88111709-49", - "customerPartId" : "88111709-49", - "classification" : "component", - "nameAtManufacturer" : "Axle part rear", - "nameAtCustomer" : "Axle part rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:c5a038d4-12c3-4834-aec0-dfdc80150936", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c5a038d4-12c3-4834-aec0-dfdc80150936", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "00871379-44", - "key" : "manufacturerPartId" - }, { - "value" : "NO-084478296404561955656407", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c5a038d4-12c3-4834-aec0-dfdc80150936", - "partTypeInformation" : { - "manufacturerPartId" : "00871379-44", - "customerPartId" : "00871379-44", - "classification" : "component", - "nameAtManufacturer" : "Chassis", - "nameAtCustomer" : "Chassis" - } - } ] - }, { - "catenaXId" : "urn:uuid:acc98aa7-d554-4c9d-bd96-6f38e1ba8238", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:acc98aa7-d554-4c9d-bd96-6f38e1ba8238", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "08901347-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-172921888910193628422569", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:acc98aa7-d554-4c9d-bd96-6f38e1ba8238", - "partTypeInformation" : { - "manufacturerPartId" : "08901347-87", - "customerPartId" : "08901347-87", - "classification" : "component", - "nameAtManufacturer" : "Rims", - "nameAtCustomer" : "Rims" - } - } ] - }, { - "catenaXId" : "urn:uuid:f8fe9ed6-d98a-47f4-9acc-66aa615f3f1f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f8fe9ed6-d98a-47f4-9acc-66aa615f3f1f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "45863316-60", - "key" : "manufacturerPartId" - }, { - "value" : "NO-177485385263216378791467", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f8fe9ed6-d98a-47f4-9acc-66aa615f3f1f", - "partTypeInformation" : { - "manufacturerPartId" : "45863316-60", - "customerPartId" : "45863316-60", - "classification" : "component", - "nameAtManufacturer" : "Tires", - "nameAtCustomer" : "Tires" - } - } ] - }, { - "catenaXId" : "urn:uuid:7de079de-c069-4f6e-ba6e-384ecde08d6b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7de079de-c069-4f6e-ba6e-384ecde08d6b", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B2OM", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B2OM", - "key" : "manufacturerId" - }, { - "value" : "1O222E8-43", - "key" : "manufacturerPartId" - }, { - "value" : "NO-153998089805863052960347", - "key" : "partInstanceId" - }, { - "value" : "Company 2", - "key" : "company" - }, { - "value" : "Brand 2", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7de079de-c069-4f6e-ba6e-384ecde08d6b", - "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:7de079de-c069-4f6e-ba6e-384ecde08d6b", - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-153998089805863052960347", - "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.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Carbon Steel", - "recycledContent" : 47, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 72.843 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - }, { - "materialName" : "Oil", - "recycledContent" : 1, - "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" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7de079de-c069-4f6e-ba6e-384ecde08d6b", - "childItems" : [ { - "catenaXId" : "urn:uuid:23af9605-699a-4941-b880-fc0a3c87f0bf", - "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5f7433e9-41c2-412e-93ac-039b725e923e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ce0d1141-32fa-4f7b-b434-85a9112eb053", - "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:23af9605-699a-4941-b880-fc0a3c87f0bf", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:23af9605-699a-4941-b880-fc0a3c87f0bf", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:23af9605-699a-4941-b880-fc0a3c87f0bf", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B0Q0", - "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" : 1, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 30 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:5f7433e9-41c2-412e-93ac-039b725e923e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5f7433e9-41c2-412e-93ac-039b725e923e", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "42860D6-17", - "key" : "manufacturerPartId" - }, { - "value" : "NO-951540509940435789459440", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5f7433e9-41c2-412e-93ac-039b725e923e", - "partTypeInformation" : { - "manufacturerPartId" : "42860D6-17", - "customerPartId" : "42860D6-17", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5f7433e9-41c2-412e-93ac-039b725e923e", - "childItems" : [ { - "catenaXId" : "urn:uuid:e6062336-07a5-489d-861e-0f6d0dc97bac", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:e6062336-07a5-489d-861e-0f6d0dc97bac", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:e6062336-07a5-489d-861e-0f6d0dc97bac", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "NTIER Product" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "NTIER Product", - "materialClass" : "5.5", - "component" : [ { - "materialName" : "Aluminium oxide", - "recycledContent" : 32, - "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" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:ce0d1141-32fa-4f7b-b434-85a9112eb053", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:ce0d1141-32fa-4f7b-b434-85a9112eb053", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ce0d1141-32fa-4f7b-b434-85a9112eb053", - "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.2341", - "materialAbbreviation" : "GL338" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ce0d1141-32fa-4f7b-b434-85a9112eb053", - "childItems" : [ ] - } ] - }, { - "catenaXId" : "urn:uuid:67c7cfba-db71-462b-98ed-9643f22b7b60", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:67c7cfba-db71-462b-98ed-9643f22b7b60", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B5MJ", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", - "key" : "manufacturerId" - }, { - "value" : "45721Z1-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-777913877487378773074623", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:67c7cfba-db71-462b-98ed-9643f22b7b60", - "partTypeInformation" : { - "manufacturerPartId" : "45721Z1-98", - "customerPartId" : "45721Z1-98", - "classification" : "component", - "nameAtManufacturer" : "ECU", - "nameAtCustomer" : "ECU" - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "recycledContent" : 48, - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.3301 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GL338" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:67c7cfba-db71-462b-98ed-9643f22b7b60", - "childItems" : [ { - "catenaXId" : "urn:uuid:f325266c-c432-4b98-b051-f05fc895b20b", - "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2d84d7c4-28c8-4db1-a31e-495f46d3c8bd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8439582b-b81f-42ac-9bb4-08325c84f528", - "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:f325266c-c432-4b98-b051-f05fc895b20b", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:f325266c-c432-4b98-b051-f05fc895b20b", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f325266c-c432-4b98-b051-f05fc895b20b", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Glue", - "materialClass" : "5.5", - "component" : [ { - "materialName" : "Aluminium oxide", - "recycledContent" : 50, - "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" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:2d84d7c4-28c8-4db1-a31e-495f46d3c8bd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2d84d7c4-28c8-4db1-a31e-495f46d3c8bd", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "83239I8-44", - "key" : "manufacturerPartId" - }, { - "value" : "NO-334673493370134559625454", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2d84d7c4-28c8-4db1-a31e-495f46d3c8bd", - "partTypeInformation" : { - "manufacturerPartId" : "83239I8-44", - "customerPartId" : "83239I8-44", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2d84d7c4-28c8-4db1-a31e-495f46d3c8bd", - "childItems" : [ { - "catenaXId" : "urn:uuid:f5a161fc-5360-4491-8fe0-da1e64e39934", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:f5a161fc-5360-4491-8fe0-da1e64e39934", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:f5a161fc-5360-4491-8fe0-da1e64e39934", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "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" : 2, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 30 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:8439582b-b81f-42ac-9bb4-08325c84f528", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8439582b-b81f-42ac-9bb4-08325c84f528", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "76893L4-69", - "key" : "manufacturerPartId" - }, { - "value" : "NO-595302385750068333371621", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8439582b-b81f-42ac-9bb4-08325c84f528", - "partTypeInformation" : { - "manufacturerPartId" : "76893L4-69", - "customerPartId" : "76893L4-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" : 69, - "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.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" - } ], - "catenaXId" : "urn:uuid:d14f2248-e4a0-4318-a943-30d680e1123a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d14f2248-e4a0-4318-a943-30d680e1123a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "38049661-08", - "key" : "manufacturerPartId" - }, { - "value" : "NO-819627806928493359751303", - "key" : "partInstanceId" - }, { - "value" : "Company 1", - "key" : "company" - }, { - "value" : "Brand 1", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d14f2248-e4a0-4318-a943-30d680e1123a", - "partTypeInformation" : { - "manufacturerPartId" : "38049661-08", - "customerPartId" : "38049661-08", - "classification" : "component", - "nameAtManufacturer" : "Battery", - "nameAtCustomer" : "Battery" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "pack" - } ], - "productType" : "pack" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-819627806928493359751303", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 5.4 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 67, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 11.75 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 45, - "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" : false, - "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" : "38049661-08", - "technicalSpecification" : [ { - "technicalValue" : "RYtGKbgicZaHCBRQDSx", - "key" : "JxkyvRnL" - } ], - "productLink" : "https://123", - "oeNumber" : "NO-819627806928493359751303", - "category" : { - "subCategory" : [ "Battery" ], - "mainCategory" : [ "Audio, video, navigation" ] - }, - "originalManufacturer" : "Company 1", - "brand" : "Brand 1", - "productDescription" : "Battery" - }, - "sku" : "1002090, xYz.09, ABcXYZ", - "mileage" : 120000.06 - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-819627806928493359751303", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d14f2248-e4a0-4318-a943-30d680e1123a", - "childItems" : [ { - "catenaXId" : "urn:uuid:aff29032-aef3-44f3-aab5-6bd7f561b4c5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:af1d5cdc-a141-408a-82ab-97b18a1084f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f40a7939-76e1-40ed-a08e-1349d69f2a7a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c8467bce-1982-4751-b968-5b6c9ae98019", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8b8fd263-3704-4d26-a010-9b79114d6756", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d5246412-53ac-492c-a5cc-574d3dd29833", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:aff29032-aef3-44f3-aab5-6bd7f561b4c5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:aff29032-aef3-44f3-aab5-6bd7f561b4c5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-192769452536016963542618", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:aff29032-aef3-44f3-aab5-6bd7f561b4c5", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-192769452536016963542618", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 7, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 10, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-192769452536016963542618", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:aff29032-aef3-44f3-aab5-6bd7f561b4c5", - "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a793bb6f-d475-4d4f-91ee-de2ce9f6019d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5291a1a6-b58d-49e4-975d-59083b71924f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e7199851-8df1-4c34-8208-5ad44aec630e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:47446696-ebce-4563-9cde-a3fbd91fac82", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2d4d4948-def4-4394-8d5a-e8252f1086fd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:222bc6f2-48fc-4641-976a-8ef8fc5b9e82", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8c9b918f-fad5-4615-b24c-0d73e1309bad", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:fa5c70a5-6885-493a-a6cf-2d345d3839d5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4ae959ca-1a8c-4736-a8e8-440ae7eb53a2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:31961ad3-0db1-4fbd-ad32-8d7d19d34cf9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:a793bb6f-d475-4d4f-91ee-de2ce9f6019d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a793bb6f-d475-4d4f-91ee-de2ce9f6019d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-014410111331020843787142", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a793bb6f-d475-4d4f-91ee-de2ce9f6019d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-014410111331020843787142", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a793bb6f-d475-4d4f-91ee-de2ce9f6019d", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-11-30", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5291a1a6-b58d-49e4-975d-59083b71924f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5291a1a6-b58d-49e4-975d-59083b71924f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-043979682056104425737010", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5291a1a6-b58d-49e4-975d-59083b71924f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-043979682056104425737010", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5291a1a6-b58d-49e4-975d-59083b71924f", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-08-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e7199851-8df1-4c34-8208-5ad44aec630e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e7199851-8df1-4c34-8208-5ad44aec630e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-662425158170460958640638", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e7199851-8df1-4c34-8208-5ad44aec630e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-662425158170460958640638", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e7199851-8df1-4c34-8208-5ad44aec630e", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-05-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:47446696-ebce-4563-9cde-a3fbd91fac82", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:47446696-ebce-4563-9cde-a3fbd91fac82", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-882334336851840654621594", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:47446696-ebce-4563-9cde-a3fbd91fac82", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-882334336851840654621594", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:47446696-ebce-4563-9cde-a3fbd91fac82", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-10-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-11", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2d4d4948-def4-4394-8d5a-e8252f1086fd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2d4d4948-def4-4394-8d5a-e8252f1086fd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-105021579709590290742455", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2d4d4948-def4-4394-8d5a-e8252f1086fd", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-105021579709590290742455", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2d4d4948-def4-4394-8d5a-e8252f1086fd", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-04-09", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:222bc6f2-48fc-4641-976a-8ef8fc5b9e82", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:222bc6f2-48fc-4641-976a-8ef8fc5b9e82", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-140216939147078029514237", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:222bc6f2-48fc-4641-976a-8ef8fc5b9e82", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-140216939147078029514237", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:222bc6f2-48fc-4641-976a-8ef8fc5b9e82", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-01-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8c9b918f-fad5-4615-b24c-0d73e1309bad", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8c9b918f-fad5-4615-b24c-0d73e1309bad", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-567154480231243691786301", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8c9b918f-fad5-4615-b24c-0d73e1309bad", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-567154480231243691786301", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8c9b918f-fad5-4615-b24c-0d73e1309bad", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-03-03", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:fa5c70a5-6885-493a-a6cf-2d345d3839d5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fa5c70a5-6885-493a-a6cf-2d345d3839d5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-749375169277810885311922", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:fa5c70a5-6885-493a-a6cf-2d345d3839d5", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-749375169277810885311922", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fa5c70a5-6885-493a-a6cf-2d345d3839d5", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-07-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4ae959ca-1a8c-4736-a8e8-440ae7eb53a2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4ae959ca-1a8c-4736-a8e8-440ae7eb53a2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-654231267561532496230340", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4ae959ca-1a8c-4736-a8e8-440ae7eb53a2", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-654231267561532496230340", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4ae959ca-1a8c-4736-a8e8-440ae7eb53a2", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-09-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:31961ad3-0db1-4fbd-ad32-8d7d19d34cf9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:31961ad3-0db1-4fbd-ad32-8d7d19d34cf9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-322465076473195684596421", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:31961ad3-0db1-4fbd-ad32-8d7d19d34cf9", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-322465076473195684596421", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:31961ad3-0db1-4fbd-ad32-8d7d19d34cf9", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-04-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-28", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:af1d5cdc-a141-408a-82ab-97b18a1084f2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:af1d5cdc-a141-408a-82ab-97b18a1084f2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-804056667481826503809779", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:af1d5cdc-a141-408a-82ab-97b18a1084f2", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-804056667481826503809779", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 29, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-804056667481826503809779", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:af1d5cdc-a141-408a-82ab-97b18a1084f2", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:22f0608e-be4e-4e49-bea9-b34fddfbf25e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6b936414-4eb7-42dd-93da-e6d8460edca6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0db4df0a-83d3-4fc4-aa05-a51d14c86672", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c639e03d-8450-4d92-8eb1-0249a900a90f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c74f1fc3-2ddb-46bd-ac78-b93f2868d6ec", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8c882979-a275-4a06-89cc-f989d8bb64fd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:06623a07-9ff2-4550-bbcb-e5286d6916c1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:54bfa1bf-57fa-4bb7-baa6-4a22e00c3d5d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0604df06-7565-40d3-b272-7adf177b2bc7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d9f07bf5-7292-40d7-a06c-4a0b808b1654", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:22f0608e-be4e-4e49-bea9-b34fddfbf25e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:22f0608e-be4e-4e49-bea9-b34fddfbf25e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-871828298566772000084068", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:22f0608e-be4e-4e49-bea9-b34fddfbf25e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-871828298566772000084068", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:22f0608e-be4e-4e49-bea9-b34fddfbf25e", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-04-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6b936414-4eb7-42dd-93da-e6d8460edca6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6b936414-4eb7-42dd-93da-e6d8460edca6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-255088453095890059949626", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6b936414-4eb7-42dd-93da-e6d8460edca6", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-255088453095890059949626", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6b936414-4eb7-42dd-93da-e6d8460edca6", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-09-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0db4df0a-83d3-4fc4-aa05-a51d14c86672", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0db4df0a-83d3-4fc4-aa05-a51d14c86672", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-488119624391707930986685", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0db4df0a-83d3-4fc4-aa05-a51d14c86672", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-488119624391707930986685", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0db4df0a-83d3-4fc4-aa05-a51d14c86672", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-01-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c639e03d-8450-4d92-8eb1-0249a900a90f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c639e03d-8450-4d92-8eb1-0249a900a90f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-391935153136475068003141", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c639e03d-8450-4d92-8eb1-0249a900a90f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-391935153136475068003141", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c639e03d-8450-4d92-8eb1-0249a900a90f", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-05-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-11", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c74f1fc3-2ddb-46bd-ac78-b93f2868d6ec", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c74f1fc3-2ddb-46bd-ac78-b93f2868d6ec", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-417631445659782310802159", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c74f1fc3-2ddb-46bd-ac78-b93f2868d6ec", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-417631445659782310802159", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c74f1fc3-2ddb-46bd-ac78-b93f2868d6ec", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-12-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8c882979-a275-4a06-89cc-f989d8bb64fd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8c882979-a275-4a06-89cc-f989d8bb64fd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-261573230895322327110918", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8c882979-a275-4a06-89cc-f989d8bb64fd", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-261573230895322327110918", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8c882979-a275-4a06-89cc-f989d8bb64fd", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-07-31", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:06623a07-9ff2-4550-bbcb-e5286d6916c1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:06623a07-9ff2-4550-bbcb-e5286d6916c1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-017663556457689547627359", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:06623a07-9ff2-4550-bbcb-e5286d6916c1", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-017663556457689547627359", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:06623a07-9ff2-4550-bbcb-e5286d6916c1", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-09-10", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-23", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:54bfa1bf-57fa-4bb7-baa6-4a22e00c3d5d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:54bfa1bf-57fa-4bb7-baa6-4a22e00c3d5d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-358900056715575687013991", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:54bfa1bf-57fa-4bb7-baa6-4a22e00c3d5d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-358900056715575687013991", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:54bfa1bf-57fa-4bb7-baa6-4a22e00c3d5d", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-12-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-23", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0604df06-7565-40d3-b272-7adf177b2bc7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0604df06-7565-40d3-b272-7adf177b2bc7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-861274043216455459930290", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0604df06-7565-40d3-b272-7adf177b2bc7", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-861274043216455459930290", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0604df06-7565-40d3-b272-7adf177b2bc7", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-04-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d9f07bf5-7292-40d7-a06c-4a0b808b1654", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d9f07bf5-7292-40d7-a06c-4a0b808b1654", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-824815303796440769733593", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d9f07bf5-7292-40d7-a06c-4a0b808b1654", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-824815303796440769733593", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d9f07bf5-7292-40d7-a06c-4a0b808b1654", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-12-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f40a7939-76e1-40ed-a08e-1349d69f2a7a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f40a7939-76e1-40ed-a08e-1349d69f2a7a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-003121650085282119649040", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f40a7939-76e1-40ed-a08e-1349d69f2a7a", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-003121650085282119649040", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 41, - "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" : 32, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-003121650085282119649040", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f40a7939-76e1-40ed-a08e-1349d69f2a7a", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9a35219a-0baa-4d35-bd36-99af1e4c38dd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5fd088c2-7b53-404f-905c-a2ae06be9ca2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c1012fd9-31aa-4ea6-856e-4f7fd6777614", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c6b80146-d667-4383-b4ae-a6fed2100775", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:752ea0d4-dfbf-45f5-8e1c-ad015a7d4405", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b139f8eb-098d-48ae-97dd-1f70e51083de", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ca1e3fd7-6303-4fe5-baf3-d7b1096b681b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9ac88b56-fb60-4d3b-a9b4-4d4a8040759a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:26afbf70-3967-4fd1-ba11-3b5cdc2b914d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d7bafa7c-0a06-4df5-91ad-eb44dae59c8b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:9a35219a-0baa-4d35-bd36-99af1e4c38dd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9a35219a-0baa-4d35-bd36-99af1e4c38dd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-619786183930029887564588", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9a35219a-0baa-4d35-bd36-99af1e4c38dd", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-619786183930029887564588", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9a35219a-0baa-4d35-bd36-99af1e4c38dd", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-08-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5fd088c2-7b53-404f-905c-a2ae06be9ca2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5fd088c2-7b53-404f-905c-a2ae06be9ca2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-386572255453023871000447", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5fd088c2-7b53-404f-905c-a2ae06be9ca2", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-386572255453023871000447", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5fd088c2-7b53-404f-905c-a2ae06be9ca2", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-10-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c1012fd9-31aa-4ea6-856e-4f7fd6777614", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c1012fd9-31aa-4ea6-856e-4f7fd6777614", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-500725335972412829312353", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c1012fd9-31aa-4ea6-856e-4f7fd6777614", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-500725335972412829312353", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c1012fd9-31aa-4ea6-856e-4f7fd6777614", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-09-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c6b80146-d667-4383-b4ae-a6fed2100775", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c6b80146-d667-4383-b4ae-a6fed2100775", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-894257365419404421752877", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c6b80146-d667-4383-b4ae-a6fed2100775", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-894257365419404421752877", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c6b80146-d667-4383-b4ae-a6fed2100775", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-12-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:752ea0d4-dfbf-45f5-8e1c-ad015a7d4405", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:752ea0d4-dfbf-45f5-8e1c-ad015a7d4405", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-023415659381321437860939", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:752ea0d4-dfbf-45f5-8e1c-ad015a7d4405", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-023415659381321437860939", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:752ea0d4-dfbf-45f5-8e1c-ad015a7d4405", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-10-14", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b139f8eb-098d-48ae-97dd-1f70e51083de", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b139f8eb-098d-48ae-97dd-1f70e51083de", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-536701359401457568315967", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b139f8eb-098d-48ae-97dd-1f70e51083de", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-536701359401457568315967", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b139f8eb-098d-48ae-97dd-1f70e51083de", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-01-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:ca1e3fd7-6303-4fe5-baf3-d7b1096b681b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ca1e3fd7-6303-4fe5-baf3-d7b1096b681b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-742003250131538205206589", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ca1e3fd7-6303-4fe5-baf3-d7b1096b681b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-742003250131538205206589", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ca1e3fd7-6303-4fe5-baf3-d7b1096b681b", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-07-14", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9ac88b56-fb60-4d3b-a9b4-4d4a8040759a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9ac88b56-fb60-4d3b-a9b4-4d4a8040759a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-999175968105180520511391", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9ac88b56-fb60-4d3b-a9b4-4d4a8040759a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-999175968105180520511391", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9ac88b56-fb60-4d3b-a9b4-4d4a8040759a", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-05-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:26afbf70-3967-4fd1-ba11-3b5cdc2b914d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:26afbf70-3967-4fd1-ba11-3b5cdc2b914d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-590723368134479323801023", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:26afbf70-3967-4fd1-ba11-3b5cdc2b914d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-590723368134479323801023", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:26afbf70-3967-4fd1-ba11-3b5cdc2b914d", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-07-18", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d7bafa7c-0a06-4df5-91ad-eb44dae59c8b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d7bafa7c-0a06-4df5-91ad-eb44dae59c8b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-690023284507996477389972", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d7bafa7c-0a06-4df5-91ad-eb44dae59c8b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-690023284507996477389972", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d7bafa7c-0a06-4df5-91ad-eb44dae59c8b", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-04-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c8467bce-1982-4751-b968-5b6c9ae98019", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c8467bce-1982-4751-b968-5b6c9ae98019", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-648209832705591761522081", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c8467bce-1982-4751-b968-5b6c9ae98019", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-648209832705591761522081", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 82, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-648209832705591761522081", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c8467bce-1982-4751-b968-5b6c9ae98019", - "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5dbb4f09-0292-4d7a-ad53-9849152f4eab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6ab2615a-9cc9-47f0-ac9d-54181d617e3a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:44839d6f-a58c-4490-8665-d243fda56489", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:62b51a36-724d-4dc9-b74f-e8fe9b67f91d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3634b18c-4a18-4cff-8707-afdaf4a1bd9e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3dbed99b-2e52-48ce-8db8-00c9ea951616", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1cf89a7d-ca01-46c7-af02-e9fcf38fea86", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c58f4b6c-bc5a-4249-8be4-f1fbec51874d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5f2cc6ab-7fb9-40e5-9863-61ae0806bd73", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:33ac01cd-44ef-4753-ab7c-93e2feab3b90", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:5dbb4f09-0292-4d7a-ad53-9849152f4eab", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5dbb4f09-0292-4d7a-ad53-9849152f4eab", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-212257133202970783609955", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5dbb4f09-0292-4d7a-ad53-9849152f4eab", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-212257133202970783609955", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5dbb4f09-0292-4d7a-ad53-9849152f4eab", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-01-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6ab2615a-9cc9-47f0-ac9d-54181d617e3a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6ab2615a-9cc9-47f0-ac9d-54181d617e3a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-708464617271387016845953", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6ab2615a-9cc9-47f0-ac9d-54181d617e3a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-708464617271387016845953", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6ab2615a-9cc9-47f0-ac9d-54181d617e3a", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-10-14", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:44839d6f-a58c-4490-8665-d243fda56489", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:44839d6f-a58c-4490-8665-d243fda56489", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-009273388239546223848350", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:44839d6f-a58c-4490-8665-d243fda56489", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-009273388239546223848350", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:44839d6f-a58c-4490-8665-d243fda56489", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-03-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:62b51a36-724d-4dc9-b74f-e8fe9b67f91d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:62b51a36-724d-4dc9-b74f-e8fe9b67f91d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-848997488320348473184325", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:62b51a36-724d-4dc9-b74f-e8fe9b67f91d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-848997488320348473184325", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:62b51a36-724d-4dc9-b74f-e8fe9b67f91d", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-04-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3634b18c-4a18-4cff-8707-afdaf4a1bd9e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3634b18c-4a18-4cff-8707-afdaf4a1bd9e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-179314182134638472190615", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3634b18c-4a18-4cff-8707-afdaf4a1bd9e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-179314182134638472190615", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3634b18c-4a18-4cff-8707-afdaf4a1bd9e", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-07-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3dbed99b-2e52-48ce-8db8-00c9ea951616", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3dbed99b-2e52-48ce-8db8-00c9ea951616", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-206254776754728297039121", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3dbed99b-2e52-48ce-8db8-00c9ea951616", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-206254776754728297039121", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3dbed99b-2e52-48ce-8db8-00c9ea951616", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-01-03", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1cf89a7d-ca01-46c7-af02-e9fcf38fea86", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1cf89a7d-ca01-46c7-af02-e9fcf38fea86", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-400947141198906653733245", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1cf89a7d-ca01-46c7-af02-e9fcf38fea86", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-400947141198906653733245", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1cf89a7d-ca01-46c7-af02-e9fcf38fea86", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-10-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c58f4b6c-bc5a-4249-8be4-f1fbec51874d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c58f4b6c-bc5a-4249-8be4-f1fbec51874d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-951516101843799329282594", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c58f4b6c-bc5a-4249-8be4-f1fbec51874d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-951516101843799329282594", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c58f4b6c-bc5a-4249-8be4-f1fbec51874d", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-04-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5f2cc6ab-7fb9-40e5-9863-61ae0806bd73", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5f2cc6ab-7fb9-40e5-9863-61ae0806bd73", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-963788604441923198486562", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5f2cc6ab-7fb9-40e5-9863-61ae0806bd73", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-963788604441923198486562", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5f2cc6ab-7fb9-40e5-9863-61ae0806bd73", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-07-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:33ac01cd-44ef-4753-ab7c-93e2feab3b90", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:33ac01cd-44ef-4753-ab7c-93e2feab3b90", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-263794254928536082638480", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:33ac01cd-44ef-4753-ab7c-93e2feab3b90", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-263794254928536082638480", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:33ac01cd-44ef-4753-ab7c-93e2feab3b90", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-03-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8b8fd263-3704-4d26-a010-9b79114d6756", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8b8fd263-3704-4d26-a010-9b79114d6756", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-438837381304353753109965", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8b8fd263-3704-4d26-a010-9b79114d6756", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-438837381304353753109965", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 33, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-438837381304353753109965", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8b8fd263-3704-4d26-a010-9b79114d6756", - "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9fee77ad-1bf0-46a3-ba60-fc5611de95d8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3c544f1f-141d-4c38-ae9b-39e3cb94ec7a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6ea35168-1676-46e4-abbc-b673db2a3531", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:803f7c0b-886e-4718-b904-59918abbc027", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:40355da3-54e4-4234-be61-92080c327b6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a3374216-7c73-4a55-9f85-11d16b41838c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:933a1598-e581-443e-947e-5605adb61902", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b3e9d219-52d4-4db2-85e6-3a240a2276d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f76ede83-a692-4ed6-8863-5670e23c5874", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b3e59d81-1b58-40fd-b9ad-89464b676c0d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:9fee77ad-1bf0-46a3-ba60-fc5611de95d8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9fee77ad-1bf0-46a3-ba60-fc5611de95d8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-300609407106887181079293", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9fee77ad-1bf0-46a3-ba60-fc5611de95d8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-300609407106887181079293", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9fee77ad-1bf0-46a3-ba60-fc5611de95d8", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-08-03", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-20", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3c544f1f-141d-4c38-ae9b-39e3cb94ec7a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3c544f1f-141d-4c38-ae9b-39e3cb94ec7a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-876035598137805744592709", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3c544f1f-141d-4c38-ae9b-39e3cb94ec7a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-876035598137805744592709", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3c544f1f-141d-4c38-ae9b-39e3cb94ec7a", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-05-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6ea35168-1676-46e4-abbc-b673db2a3531", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6ea35168-1676-46e4-abbc-b673db2a3531", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-948981158955105462120071", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6ea35168-1676-46e4-abbc-b673db2a3531", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-948981158955105462120071", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6ea35168-1676-46e4-abbc-b673db2a3531", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-06-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-31", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:803f7c0b-886e-4718-b904-59918abbc027", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:803f7c0b-886e-4718-b904-59918abbc027", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-622107954375713476186733", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:803f7c0b-886e-4718-b904-59918abbc027", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-622107954375713476186733", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:803f7c0b-886e-4718-b904-59918abbc027", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-07-03", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:40355da3-54e4-4234-be61-92080c327b6d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:40355da3-54e4-4234-be61-92080c327b6d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-720495251193738533645216", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:40355da3-54e4-4234-be61-92080c327b6d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-720495251193738533645216", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:40355da3-54e4-4234-be61-92080c327b6d", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-09-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a3374216-7c73-4a55-9f85-11d16b41838c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a3374216-7c73-4a55-9f85-11d16b41838c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-757604276672789732108731", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a3374216-7c73-4a55-9f85-11d16b41838c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-757604276672789732108731", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a3374216-7c73-4a55-9f85-11d16b41838c", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-10-13", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:933a1598-e581-443e-947e-5605adb61902", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:933a1598-e581-443e-947e-5605adb61902", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-713653034777340190345363", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:933a1598-e581-443e-947e-5605adb61902", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-713653034777340190345363", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:933a1598-e581-443e-947e-5605adb61902", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-04-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b3e9d219-52d4-4db2-85e6-3a240a2276d3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3e9d219-52d4-4db2-85e6-3a240a2276d3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-215020344659658929970557", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b3e9d219-52d4-4db2-85e6-3a240a2276d3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-215020344659658929970557", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3e9d219-52d4-4db2-85e6-3a240a2276d3", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-01-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f76ede83-a692-4ed6-8863-5670e23c5874", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f76ede83-a692-4ed6-8863-5670e23c5874", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-836712742712442051011110", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f76ede83-a692-4ed6-8863-5670e23c5874", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-836712742712442051011110", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f76ede83-a692-4ed6-8863-5670e23c5874", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-03-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b3e59d81-1b58-40fd-b9ad-89464b676c0d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3e59d81-1b58-40fd-b9ad-89464b676c0d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-728379186694197691834339", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b3e59d81-1b58-40fd-b9ad-89464b676c0d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-728379186694197691834339", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3e59d81-1b58-40fd-b9ad-89464b676c0d", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-03-09", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d5246412-53ac-492c-a5cc-574d3dd29833", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d5246412-53ac-492c-a5cc-574d3dd29833", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-153194173914863314882589", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d5246412-53ac-492c-a5cc-574d3dd29833", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-153194173914863314882589", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 4, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 68, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-153194173914863314882589", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d5246412-53ac-492c-a5cc-574d3dd29833", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:87e4fff2-9c4e-41c5-9da6-0bd1ba8e440a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7b4ebbeb-5dc5-4176-8ef0-28024481fee6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0ef01759-124e-44d2-bc7f-c754e97803ba", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1a02b451-5c39-4b70-bd50-e515fbd841f7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7d9c0b36-f8bb-4461-8bac-b4949dd439b8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a86c1135-f886-41f1-86b0-53a17d86ab3a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b2600efc-1614-4288-b141-a25792cb63f4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f010b527-4ab1-40b0-add3-a4e488e9192f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9aa7fbed-f18a-4c12-a34a-e0db364025e5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3df6710b-7301-4540-a5b0-0e56140cd02d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:87e4fff2-9c4e-41c5-9da6-0bd1ba8e440a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:87e4fff2-9c4e-41c5-9da6-0bd1ba8e440a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-528317570097084160716684", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:87e4fff2-9c4e-41c5-9da6-0bd1ba8e440a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-528317570097084160716684", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:87e4fff2-9c4e-41c5-9da6-0bd1ba8e440a", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-01-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-31", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7b4ebbeb-5dc5-4176-8ef0-28024481fee6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7b4ebbeb-5dc5-4176-8ef0-28024481fee6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-823548860355579925477446", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7b4ebbeb-5dc5-4176-8ef0-28024481fee6", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-823548860355579925477446", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7b4ebbeb-5dc5-4176-8ef0-28024481fee6", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-07-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0ef01759-124e-44d2-bc7f-c754e97803ba", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0ef01759-124e-44d2-bc7f-c754e97803ba", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-480364851864325122589740", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0ef01759-124e-44d2-bc7f-c754e97803ba", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-480364851864325122589740", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0ef01759-124e-44d2-bc7f-c754e97803ba", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-04-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1a02b451-5c39-4b70-bd50-e515fbd841f7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1a02b451-5c39-4b70-bd50-e515fbd841f7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-375622965248967047520150", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1a02b451-5c39-4b70-bd50-e515fbd841f7", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-375622965248967047520150", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1a02b451-5c39-4b70-bd50-e515fbd841f7", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-06-09", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7d9c0b36-f8bb-4461-8bac-b4949dd439b8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7d9c0b36-f8bb-4461-8bac-b4949dd439b8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-520392191085443336750655", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7d9c0b36-f8bb-4461-8bac-b4949dd439b8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-520392191085443336750655", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7d9c0b36-f8bb-4461-8bac-b4949dd439b8", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-08-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-20", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a86c1135-f886-41f1-86b0-53a17d86ab3a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a86c1135-f886-41f1-86b0-53a17d86ab3a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-984925277020294423051543", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a86c1135-f886-41f1-86b0-53a17d86ab3a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-984925277020294423051543", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a86c1135-f886-41f1-86b0-53a17d86ab3a", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-09-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-28", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b2600efc-1614-4288-b141-a25792cb63f4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b2600efc-1614-4288-b141-a25792cb63f4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-419144776634775689000953", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b2600efc-1614-4288-b141-a25792cb63f4", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-419144776634775689000953", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b2600efc-1614-4288-b141-a25792cb63f4", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-12-18", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f010b527-4ab1-40b0-add3-a4e488e9192f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f010b527-4ab1-40b0-add3-a4e488e9192f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-664209674206860470667566", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f010b527-4ab1-40b0-add3-a4e488e9192f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-664209674206860470667566", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f010b527-4ab1-40b0-add3-a4e488e9192f", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-01-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9aa7fbed-f18a-4c12-a34a-e0db364025e5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9aa7fbed-f18a-4c12-a34a-e0db364025e5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-605025689159019118794523", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9aa7fbed-f18a-4c12-a34a-e0db364025e5", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-605025689159019118794523", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9aa7fbed-f18a-4c12-a34a-e0db364025e5", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-11-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3df6710b-7301-4540-a5b0-0e56140cd02d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3df6710b-7301-4540-a5b0-0e56140cd02d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-495375926590411413294244", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3df6710b-7301-4540-a5b0-0e56140cd02d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-495375926590411413294244", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3df6710b-7301-4540-a5b0-0e56140cd02d", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-05-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Pick-up", - "catenaXId" : "urn:uuid:db89299e-5404-41fd-ba1e-11b748cbcbb7", - "engine" : { - "size" : 2998, - "power" : 143 - }, - "emptyWeight" : 1.73, - "fuel" : "Elektro", - "vehicleModel" : "Vehicle Fully Electric", - "productionDateGMT" : "2010-01-01", - "equipmentVariants" : [ { - "code" : "B298B", - "description" : "keyless entry", - "group" : "special equipment" - }, { - "code" : "S388C", - "description" : "security plus", - "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" : "2015-02-08", - "mileageDistance" : 120000 - } ] - } ], - "catenaXId" : "urn:uuid:db89299e-5404-41fd-ba1e-11b748cbcbb7", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "PK-41", - "key" : "manufacturerPartId" - }, { - "value" : "OMBAPHQAJNYTVHCKD", - "key" : "partInstanceId" - }, { - "value" : "OMBAPHQAJNYTVHCKD", - "key" : "van" - } ], - "manufacturingInformation" : { - "date" : "2018-04-08T13:39:28.000Z", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:db89299e-5404-41fd-ba1e-11b748cbcbb7", - "partTypeInformation" : { - "manufacturerPartId" : "PK-41", - "classification" : "product", - "nameAtManufacturer" : "Vehicle Fully Electric" - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Iron", - "recycledContent" : 25, - "materialClass" : "1.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 327.6 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "IR334" - }, { - "materialName" : "Polyethylen", - "recycledContent" : 59, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 163.8 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "PE221" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 26, - "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" : 69, - "materialClass" : "0.7", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 109.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "W123" - }, { - "materialName" : "Glue", - "recycledContent" : 15, - "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" : 72, - "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" : 62, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 5.12 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "TEX1" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:db89299e-5404-41fd-ba1e-11b748cbcbb7", - "childItems" : [ { - "catenaXId" : "urn:uuid:e7772e53-a1bd-48b1-aef1-28cd46eff071", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c614e762-d299-49b2-bc55-145d1757c7d6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:02fc49a2-84dd-4ec4-9f91-aa54132ad072", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0ad8fe34-94e3-4377-97a3-ba25c2d1a7c2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a0ba36a2-30bb-492c-93ec-38064f47019a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:065d3f87-6cc1-4a25-96b4-519d2a50aedc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:83a76eed-71c5-44b4-ac14-c5b2060e864a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ad0ed999-53c3-4a44-96ea-76feed7d4dd3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d5513ec6-704e-49f3-9d34-71745c34760b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:36028f1b-889c-423d-8a06-fe1b2d310b3f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8177a304-d40d-4379-9fb5-efbfd0b23aa0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6b64105b-e7a3-4257-9a27-af5ecc878c2b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:28b2a8ed-f69f-4542-bfe0-411b5eb153ac", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c6e9aecc-b332-4240-b7bf-f9de3f0b34f8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b56b2866-81ad-45ac-b5fd-4c602352e98d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c326ab77-39df-4767-8fb5-79c1fea6188a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c15d6c4f-24ef-4162-8ab6-3307e671de8d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d3ed9d6e-f073-4688-8524-7ae97db8a1c5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:10ddd623-620b-4f27-8b7b-230f4ce56072", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4db7f922-e849-42fc-8800-dbf6c9877a0b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:544a01b5-d76b-47b9-b9b1-94bd1ccc8210", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:538ea7d6-f800-4441-b973-3e0d677fe972", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:960f22a2-1d03-416c-b7d7-eb3326d0fded", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1a3cc08c-37e3-4d76-a44f-0c4db631a757", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4a4f0250-97b7-4464-8ffa-2a1ed7e91102", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:240a7ace-773e-4193-a732-1ef211142476", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ec088518-3191-48b5-9eed-f0c116069242", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b56a17d6-c68d-4b19-90cb-a8b9ba76ac87", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2024e897-a876-445f-b182-df80ab351dcd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e3e581c9-d857-47cd-b8a5-02f8dd6adfe4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B2OM", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:62240c83-87e8-4127-9850-f519521d9fbc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B5MJ", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:72bc26be-7624-41d0-8710-0b90801d56fc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:e7772e53-a1bd-48b1-aef1-28cd46eff071", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e7772e53-a1bd-48b1-aef1-28cd46eff071", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "73849201-61", - "key" : "manufacturerPartId" - }, { - "value" : "NO-079244315428345146164593", - "key" : "partInstanceId" - }, { - "value" : "Company 10", - "key" : "company" - }, { - "value" : "Brand 10", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e7772e53-a1bd-48b1-aef1-28cd46eff071", - "partTypeInformation" : { - "manufacturerPartId" : "73849201-61", - "customerPartId" : "73849201-61", - "classification" : "component", - "nameAtManufacturer" : "Catalysator", - "nameAtCustomer" : "Catalysator" - } - } ] - }, { - "catenaXId" : "urn:uuid:c614e762-d299-49b2-bc55-145d1757c7d6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c614e762-d299-49b2-bc55-145d1757c7d6", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "22782277-50", - "key" : "manufacturerPartId" - }, { - "value" : "NO-043120727108176541830574", - "key" : "partInstanceId" - }, { - "value" : "Company 3", - "key" : "company" - }, { - "value" : "Brand 3", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c614e762-d299-49b2-bc55-145d1757c7d6", - "partTypeInformation" : { - "manufacturerPartId" : "22782277-50", - "customerPartId" : "22782277-50", - "classification" : "component", - "nameAtManufacturer" : "Door f-l", - "nameAtCustomer" : "Door front-left" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c614e762-d299-49b2-bc55-145d1757c7d6", - "childItems" : [ { - "catenaXId" : "urn:uuid:87e5f499-a996-4004-8e0a-32301d0f572b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:87e5f499-a996-4004-8e0a-32301d0f572b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:87e5f499-a996-4004-8e0a-32301d0f572b", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-891205085309662453437601", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:87e5f499-a996-4004-8e0a-32301d0f572b", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "79075778EWV", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:87e5f499-a996-4004-8e0a-32301d0f572b", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:02fc49a2-84dd-4ec4-9f91-aa54132ad072", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:02fc49a2-84dd-4ec4-9f91-aa54132ad072", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "95657362-64", - "key" : "manufacturerPartId" - }, { - "value" : "NO-975424338565307578478475", - "key" : "partInstanceId" - }, { - "value" : "Company 4", - "key" : "company" - }, { - "value" : "Brand 4", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:02fc49a2-84dd-4ec4-9f91-aa54132ad072", - "partTypeInformation" : { - "manufacturerPartId" : "33740332-54", - "customerPartId" : "33740332-54", - "classification" : "component", - "nameAtManufacturer" : "Door f-r", - "nameAtCustomer" : "Door front-right" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:02fc49a2-84dd-4ec4-9f91-aa54132ad072", - "childItems" : [ { - "catenaXId" : "urn:uuid:fc3a2c0b-7c80-4ad0-8844-c11b67544fa3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:fc3a2c0b-7c80-4ad0-8844-c11b67544fa3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fc3a2c0b-7c80-4ad0-8844-c11b67544fa3", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-968841297907673320779283", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:fc3a2c0b-7c80-4ad0-8844-c11b67544fa3", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "94396518HDV", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:fc3a2c0b-7c80-4ad0-8844-c11b67544fa3", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:0ad8fe34-94e3-4377-97a3-ba25c2d1a7c2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0ad8fe34-94e3-4377-97a3-ba25c2d1a7c2", - "customers" : [ { - "businessPartner" : false, - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "15635759-16", - "key" : "manufacturerPartId" - }, { - "value" : "NO-048875959779220161782059", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0ad8fe34-94e3-4377-97a3-ba25c2d1a7c2", - "partTypeInformation" : { - "manufacturerPartId" : "15635759-16", - "customerPartId" : "15635759-16", - "classification" : "component", - "nameAtManufacturer" : "Door r-l", - "nameAtCustomer" : "Door rear-left" - } - } ] - }, { - "catenaXId" : "urn:uuid:a0ba36a2-30bb-492c-93ec-38064f47019a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a0ba36a2-30bb-492c-93ec-38064f47019a", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "28673126-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-714941686202385759674957", - "key" : "partInstanceId" - }, { - "value" : "Company 5", - "key" : "company" - }, { - "value" : "Brand 5", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a0ba36a2-30bb-492c-93ec-38064f47019a", - "partTypeInformation" : { - "manufacturerPartId" : "28673126-98", - "customerPartId" : "28673126-98", - "classification" : "component", - "nameAtManufacturer" : "Door r-r", - "nameAtCustomer" : "Door rear-right" - } - } ] - }, { - "catenaXId" : "urn:uuid:065d3f87-6cc1-4a25-96b4-519d2a50aedc", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:065d3f87-6cc1-4a25-96b4-519d2a50aedc", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "94421589-82", - "key" : "manufacturerPartId" - }, { - "value" : "NO-928967168149165900690319", - "key" : "partInstanceId" - }, { - "value" : "Company 6", - "key" : "company" - }, { - "value" : "Brand 6", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:065d3f87-6cc1-4a25-96b4-519d2a50aedc", - "partTypeInformation" : { - "manufacturerPartId" : "94421589-82", - "customerPartId" : "94421589-82", - "classification" : "component", - "nameAtManufacturer" : "Engine hood", - "nameAtCustomer" : "Engine hood" - } - } ] - }, { - "catenaXId" : "urn:uuid:83a76eed-71c5-44b4-ac14-c5b2060e864a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:83a76eed-71c5-44b4-ac14-c5b2060e864a", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "85023955-75", - "key" : "manufacturerPartId" - }, { - "value" : "NO-003762566406076798893909", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:83a76eed-71c5-44b4-ac14-c5b2060e864a", - "partTypeInformation" : { - "manufacturerPartId" : "85023955-75", - "customerPartId" : "85023955-75", - "classification" : "component", - "nameAtManufacturer" : "Tailgate", - "nameAtCustomer" : "Tailgate" - } - } ] - }, { - "catenaXId" : "urn:uuid:ad0ed999-53c3-4a44-96ea-76feed7d4dd3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ad0ed999-53c3-4a44-96ea-76feed7d4dd3", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "13769860-47", - "key" : "manufacturerPartId" - }, { - "value" : "NO-151412567702659366871472", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ad0ed999-53c3-4a44-96ea-76feed7d4dd3", - "partTypeInformation" : { - "manufacturerPartId" : "13769860-47", - "customerPartId" : "13769860-47", - "classification" : "component", - "nameAtManufacturer" : "Fender left", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:d5513ec6-704e-49f3-9d34-71745c34760b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d5513ec6-704e-49f3-9d34-71745c34760b", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "36643162-35", - "key" : "manufacturerPartId" - }, { - "value" : "NO-977168075110131963698256", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d5513ec6-704e-49f3-9d34-71745c34760b", - "partTypeInformation" : { - "manufacturerPartId" : "36643162-35", - "customerPartId" : "36643162-35", - "classification" : "component", - "nameAtManufacturer" : "Fender right", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:36028f1b-889c-423d-8a06-fe1b2d310b3f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:36028f1b-889c-423d-8a06-fe1b2d310b3f", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "54165444-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-037706367967081677032698", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:36028f1b-889c-423d-8a06-fe1b2d310b3f", - "partTypeInformation" : { - "manufacturerPartId" : "54165444-59", - "customerPartId" : "54165444-59", - "classification" : "component", - "nameAtManufacturer" : "Bumper front", - "nameAtCustomer" : "Bumper front" - } - } ] - }, { - "catenaXId" : "urn:uuid:8177a304-d40d-4379-9fb5-efbfd0b23aa0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8177a304-d40d-4379-9fb5-efbfd0b23aa0", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "22768257-25", - "key" : "manufacturerPartId" - }, { - "value" : "NO-841228184518185054824952", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8177a304-d40d-4379-9fb5-efbfd0b23aa0", - "partTypeInformation" : { - "manufacturerPartId" : "22768257-25", - "customerPartId" : "22768257-25", - "classification" : "component", - "nameAtManufacturer" : "Bumper rear", - "nameAtCustomer" : "Bumper rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:6b64105b-e7a3-4257-9a27-af5ecc878c2b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6b64105b-e7a3-4257-9a27-af5ecc878c2b", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "65529521-37", - "key" : "manufacturerPartId" - }, { - "value" : "NO-423084849434417850154059", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6b64105b-e7a3-4257-9a27-af5ecc878c2b", - "partTypeInformation" : { - "manufacturerPartId" : "65529521-37", - "customerPartId" : "65529521-37", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror left", - "nameAtCustomer" : "Exterior mirror left" - } - } ] - }, { - "catenaXId" : "urn:uuid:28b2a8ed-f69f-4542-bfe0-411b5eb153ac", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:28b2a8ed-f69f-4542-bfe0-411b5eb153ac", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "58471477-24", - "key" : "manufacturerPartId" - }, { - "value" : "NO-170497620411213202975830", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:28b2a8ed-f69f-4542-bfe0-411b5eb153ac", - "partTypeInformation" : { - "manufacturerPartId" : "58471477-24", - "customerPartId" : "58471477-24", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror right", - "nameAtCustomer" : "Exterior mirror right" - } - } ] - }, { - "catenaXId" : "urn:uuid:c6e9aecc-b332-4240-b7bf-f9de3f0b34f8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c6e9aecc-b332-4240-b7bf-f9de3f0b34f8", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "09002013-68", - "key" : "manufacturerPartId" - }, { - "value" : "NO-723184720719118791326143", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c6e9aecc-b332-4240-b7bf-f9de3f0b34f8", - "partTypeInformation" : { - "manufacturerPartId" : "09002013-68", - "customerPartId" : "09002013-68", - "classification" : "component", - "nameAtManufacturer" : "Trailer coupling", - "nameAtCustomer" : "Tailer coupling" - } - } ] - }, { - "catenaXId" : "urn:uuid:b56b2866-81ad-45ac-b5fd-4c602352e98d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b56b2866-81ad-45ac-b5fd-4c602352e98d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "43501996-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-245757767967847995852532", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b56b2866-81ad-45ac-b5fd-4c602352e98d", - "partTypeInformation" : { - "manufacturerPartId" : "43501996-98", - "customerPartId" : "43501996-98", - "classification" : "component", - "nameAtManufacturer" : "Dashboard", - "nameAtCustomer" : "Dashboard" - } - } ] - }, { - "catenaXId" : "urn:uuid:c326ab77-39df-4767-8fb5-79c1fea6188a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c326ab77-39df-4767-8fb5-79c1fea6188a", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "77795937-13", - "key" : "manufacturerPartId" - }, { - "value" : "NO-458827348820609953854389", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c326ab77-39df-4767-8fb5-79c1fea6188a", - "partTypeInformation" : { - "manufacturerPartId" : "77795937-13", - "customerPartId" : "77795937-13", - "classification" : "component", - "nameAtManufacturer" : "Steering wheel", - "nameAtCustomer" : "Steering wheel" - } - } ] - }, { - "catenaXId" : "urn:uuid:c15d6c4f-24ef-4162-8ab6-3307e671de8d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c15d6c4f-24ef-4162-8ab6-3307e671de8d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "20125432-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-846205546429596050560731", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c15d6c4f-24ef-4162-8ab6-3307e671de8d", - "partTypeInformation" : { - "manufacturerPartId" : "20125432-59", - "customerPartId" : "20125432-59", - "classification" : "component", - "nameAtManufacturer" : "Indicator left", - "nameAtCustomer" : "Indicator left" - } - } ] - }, { - "catenaXId" : "urn:uuid:d3ed9d6e-f073-4688-8524-7ae97db8a1c5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d3ed9d6e-f073-4688-8524-7ae97db8a1c5", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "19073706-76", - "key" : "manufacturerPartId" - }, { - "value" : "NO-962744392486229178894166", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d3ed9d6e-f073-4688-8524-7ae97db8a1c5", - "partTypeInformation" : { - "manufacturerPartId" : "19073706-76", - "customerPartId" : "19073706-76", - "classification" : "component", - "nameAtManufacturer" : "Indicator right", - "nameAtCustomer" : "Indicator right" - } - } ] - }, { - "catenaXId" : "urn:uuid:10ddd623-620b-4f27-8b7b-230f4ce56072", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:10ddd623-620b-4f27-8b7b-230f4ce56072", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "45415162-57", - "key" : "manufacturerPartId" - }, { - "value" : "NO-775220723655656267281820", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:10ddd623-620b-4f27-8b7b-230f4ce56072", - "partTypeInformation" : { - "manufacturerPartId" : "45415162-57", - "customerPartId" : "45415162-57", - "classification" : "component", - "nameAtManufacturer" : "Led headlight", - "nameAtCustomer" : "Led headlight" - } - } ] - }, { - "catenaXId" : "urn:uuid:4db7f922-e849-42fc-8800-dbf6c9877a0b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4db7f922-e849-42fc-8800-dbf6c9877a0b", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "78141846-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-858494548656380483077027", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4db7f922-e849-42fc-8800-dbf6c9877a0b", - "partTypeInformation" : { - "manufacturerPartId" : "78141846-87", - "customerPartId" : "78141846-87", - "classification" : "component", - "nameAtManufacturer" : "Starter motor", - "nameAtCustomer" : "Starter motor" - } - } ] - }, { - "catenaXId" : "urn:uuid:544a01b5-d76b-47b9-b9b1-94bd1ccc8210", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:544a01b5-d76b-47b9-b9b1-94bd1ccc8210", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "81324139-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-448615235596843700245628", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:544a01b5-d76b-47b9-b9b1-94bd1ccc8210", - "partTypeInformation" : { - "manufacturerPartId" : "81324139-23", - "customerPartId" : "81324139-23", - "classification" : "component", - "nameAtManufacturer" : "Alternator", - "nameAtCustomer" : "Alternator" - } - } ] - }, { - "catenaXId" : "urn:uuid:538ea7d6-f800-4441-b973-3e0d677fe972", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:538ea7d6-f800-4441-b973-3e0d677fe972", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "57929013-09", - "key" : "manufacturerPartId" - }, { - "value" : "NO-510327348072672044877550", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:538ea7d6-f800-4441-b973-3e0d677fe972", - "partTypeInformation" : { - "manufacturerPartId" : "57929013-09", - "customerPartId" : "57929013-09", - "classification" : "component", - "nameAtManufacturer" : "AC compressor", - "nameAtCustomer" : "Air conditioning compressor" - } - } ] - }, { - "catenaXId" : "urn:uuid:960f22a2-1d03-416c-b7d7-eb3326d0fded", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:960f22a2-1d03-416c-b7d7-eb3326d0fded", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "61184040-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-257638045427969216975513", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:960f22a2-1d03-416c-b7d7-eb3326d0fded", - "partTypeInformation" : { - "manufacturerPartId" : "61184040-23", - "customerPartId" : "61184040-23", - "classification" : "component", - "nameAtManufacturer" : "Taillight rear", - "nameAtCustomer" : "Taillight rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:1a3cc08c-37e3-4d76-a44f-0c4db631a757", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1a3cc08c-37e3-4d76-a44f-0c4db631a757", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "78744126-74", - "key" : "manufacturerPartId" - }, { - "value" : "NO-356934326092560796944527", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1a3cc08c-37e3-4d76-a44f-0c4db631a757", - "partTypeInformation" : { - "manufacturerPartId" : "78744126-74", - "customerPartId" : "78744126-74", - "classification" : "component", - "nameAtManufacturer" : "Taillight front", - "nameAtCustomer" : "Taillight front" - } - } ] - }, { - "catenaXId" : "urn:uuid:4a4f0250-97b7-4464-8ffa-2a1ed7e91102", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4a4f0250-97b7-4464-8ffa-2a1ed7e91102", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "12093297-03", - "key" : "manufacturerPartId" - }, { - "value" : "NO-059085324073514094115028", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4a4f0250-97b7-4464-8ffa-2a1ed7e91102", - "partTypeInformation" : { - "manufacturerPartId" : "12093297-03", - "customerPartId" : "12093297-03", - "classification" : "component", - "nameAtManufacturer" : "Axle part front", - "nameAtCustomer" : "Axle part front" - } - } ] - }, { - "catenaXId" : "urn:uuid:240a7ace-773e-4193-a732-1ef211142476", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:240a7ace-773e-4193-a732-1ef211142476", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "88111709-49", - "key" : "manufacturerPartId" - }, { - "value" : "NO-552681091301559053017244", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:240a7ace-773e-4193-a732-1ef211142476", - "partTypeInformation" : { - "manufacturerPartId" : "88111709-49", - "customerPartId" : "88111709-49", - "classification" : "component", - "nameAtManufacturer" : "Axle part rear", - "nameAtCustomer" : "Axle part rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:ec088518-3191-48b5-9eed-f0c116069242", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ec088518-3191-48b5-9eed-f0c116069242", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "00871379-44", - "key" : "manufacturerPartId" - }, { - "value" : "NO-848524766829358272471017", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ec088518-3191-48b5-9eed-f0c116069242", - "partTypeInformation" : { - "manufacturerPartId" : "00871379-44", - "customerPartId" : "00871379-44", - "classification" : "component", - "nameAtManufacturer" : "Chassis", - "nameAtCustomer" : "Chassis" - } - } ] - }, { - "catenaXId" : "urn:uuid:b56a17d6-c68d-4b19-90cb-a8b9ba76ac87", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b56a17d6-c68d-4b19-90cb-a8b9ba76ac87", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "08901347-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-058140339698671206433100", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b56a17d6-c68d-4b19-90cb-a8b9ba76ac87", - "partTypeInformation" : { - "manufacturerPartId" : "08901347-87", - "customerPartId" : "08901347-87", - "classification" : "component", - "nameAtManufacturer" : "Rims", - "nameAtCustomer" : "Rims" - } - } ] - }, { - "catenaXId" : "urn:uuid:2024e897-a876-445f-b182-df80ab351dcd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2024e897-a876-445f-b182-df80ab351dcd", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "45863316-60", - "key" : "manufacturerPartId" - }, { - "value" : "NO-138294349728899642164946", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2024e897-a876-445f-b182-df80ab351dcd", - "partTypeInformation" : { - "manufacturerPartId" : "45863316-60", - "customerPartId" : "45863316-60", - "classification" : "component", - "nameAtManufacturer" : "Tires", - "nameAtCustomer" : "Tires" - } - } ] - }, { - "catenaXId" : "urn:uuid:e3e581c9-d857-47cd-b8a5-02f8dd6adfe4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e3e581c9-d857-47cd-b8a5-02f8dd6adfe4", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B2OM", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B2OM", - "key" : "manufacturerId" - }, { - "value" : "1O222E8-43", - "key" : "manufacturerPartId" - }, { - "value" : "NO-079431161120516829167185", - "key" : "partInstanceId" - }, { - "value" : "Company 2", - "key" : "company" - }, { - "value" : "Brand 2", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e3e581c9-d857-47cd-b8a5-02f8dd6adfe4", - "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:e3e581c9-d857-47cd-b8a5-02f8dd6adfe4", - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-079431161120516829167185", - "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.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Carbon Steel", - "recycledContent" : 49, - "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" : 73, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e3e581c9-d857-47cd-b8a5-02f8dd6adfe4", - "childItems" : [ { - "catenaXId" : "urn:uuid:dfbe66b7-6fec-4801-b3d4-c17c97c0a8bc", - "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a9ff4485-2145-4c5f-af14-c90d184aab3c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:77741492-5e08-48cb-881b-0eb1a4880cbd", - "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:dfbe66b7-6fec-4801-b3d4-c17c97c0a8bc", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:dfbe66b7-6fec-4801-b3d4-c17c97c0a8bc", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:dfbe66b7-6fec-4801-b3d4-c17c97c0a8bc", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Engineering Plastics", - "materialClass" : "5.1", - "component" : [ { - "materialName" : "PA66", - "recycledContent" : 71, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "PA66" - }, { - "materialName" : "GF-Faser", - "recycledContent" : 28, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 30 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:a9ff4485-2145-4c5f-af14-c90d184aab3c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a9ff4485-2145-4c5f-af14-c90d184aab3c", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "00228Q2-18", - "key" : "manufacturerPartId" - }, { - "value" : "NO-217558297560895242807469", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a9ff4485-2145-4c5f-af14-c90d184aab3c", - "partTypeInformation" : { - "manufacturerPartId" : "00228Q2-18", - "customerPartId" : "00228Q2-18", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a9ff4485-2145-4c5f-af14-c90d184aab3c", - "childItems" : [ { - "catenaXId" : "urn:uuid:ea3e2cf3-c103-4d36-b39b-5ad2e47274b6", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:ea3e2cf3-c103-4d36-b39b-5ad2e47274b6", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:ea3e2cf3-c103-4d36-b39b-5ad2e47274b6", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "NTIER Product" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "NTIER Product", - "materialClass" : "5.5", - "component" : [ { - "materialName" : "Aluminium oxide", - "recycledContent" : 75, - "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" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:77741492-5e08-48cb-881b-0eb1a4880cbd", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:77741492-5e08-48cb-881b-0eb1a4880cbd", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:77741492-5e08-48cb-881b-0eb1a4880cbd", - "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.2341", - "materialAbbreviation" : "GL338" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:77741492-5e08-48cb-881b-0eb1a4880cbd", - "childItems" : [ ] - } ] - }, { - "catenaXId" : "urn:uuid:62240c83-87e8-4127-9850-f519521d9fbc", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:62240c83-87e8-4127-9850-f519521d9fbc", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B5MJ", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", - "key" : "manufacturerId" - }, { - "value" : "11999J8-67", - "key" : "manufacturerPartId" - }, { - "value" : "NO-272396971576901681988741", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:62240c83-87e8-4127-9850-f519521d9fbc", - "partTypeInformation" : { - "manufacturerPartId" : "11999J8-67", - "customerPartId" : "11999J8-67", - "classification" : "component", - "nameAtManufacturer" : "ECU", - "nameAtCustomer" : "ECU" - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "recycledContent" : 15, - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.3301 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GL338" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:62240c83-87e8-4127-9850-f519521d9fbc", - "childItems" : [ { - "catenaXId" : "urn:uuid:5841a760-7adf-4190-8d14-66e0c6caa811", - "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a7cc7eaa-f227-4cfd-b799-488e81afe872", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:59efc90a-1e66-4dfc-a4da-a749cb0ea328", - "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:5841a760-7adf-4190-8d14-66e0c6caa811", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:5841a760-7adf-4190-8d14-66e0c6caa811", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5841a760-7adf-4190-8d14-66e0c6caa811", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Glue", - "materialClass" : "5.5", - "component" : [ { - "materialName" : "Aluminium oxide", - "recycledContent" : 5, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "AL7" - }, { - "materialName" : "Other", - "recycledContent" : 35, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:a7cc7eaa-f227-4cfd-b799-488e81afe872", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a7cc7eaa-f227-4cfd-b799-488e81afe872", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "81859Z5-66", - "key" : "manufacturerPartId" - }, { - "value" : "NO-186585146496748886022287", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a7cc7eaa-f227-4cfd-b799-488e81afe872", - "partTypeInformation" : { - "manufacturerPartId" : "81859Z5-66", - "customerPartId" : "81859Z5-66", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a7cc7eaa-f227-4cfd-b799-488e81afe872", - "childItems" : [ { - "catenaXId" : "urn:uuid:fba9f8e2-052d-41f6-8f67-7d1dc45dcf2b", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:fba9f8e2-052d-41f6-8f67-7d1dc45dcf2b", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:fba9f8e2-052d-41f6-8f67-7d1dc45dcf2b", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Engineering Plastics", - "materialClass" : "5.1", - "component" : [ { - "materialName" : "PA66", - "recycledContent" : 40, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "PA66" - }, { - "materialName" : "GF-Faser", - "recycledContent" : 28, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 30 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:59efc90a-1e66-4dfc-a4da-a749cb0ea328", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:59efc90a-1e66-4dfc-a4da-a749cb0ea328", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "64536D7-85", - "key" : "manufacturerPartId" - }, { - "value" : "NO-808804210623571617421743", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:59efc90a-1e66-4dfc-a4da-a749cb0ea328", - "partTypeInformation" : { - "manufacturerPartId" : "64536D7-85", - "customerPartId" : "64536D7-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" : 76, - "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.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" - } ], - "catenaXId" : "urn:uuid:72bc26be-7624-41d0-8710-0b90801d56fc", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:72bc26be-7624-41d0-8710-0b90801d56fc", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "38049661-08", - "key" : "manufacturerPartId" - }, { - "value" : "NO-697071246701378877945962", - "key" : "partInstanceId" - }, { - "value" : "Company 1", - "key" : "company" - }, { - "value" : "Brand 1", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:72bc26be-7624-41d0-8710-0b90801d56fc", - "partTypeInformation" : { - "manufacturerPartId" : "38049661-08", - "customerPartId" : "38049661-08", - "classification" : "component", - "nameAtManufacturer" : "Battery", - "nameAtCustomer" : "Battery" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "pack" - } ], - "productType" : "pack" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-697071246701378877945962", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 5.4 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 37, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 11.75 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 85, - "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" : false, - "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" : "38049661-08", - "technicalSpecification" : [ { - "technicalValue" : "RYtGKbgicZaHCBRQDSx", - "key" : "JxkyvRnL" - } ], - "productLink" : "https://123", - "oeNumber" : "NO-697071246701378877945962", - "category" : { - "subCategory" : [ "Battery" ], - "mainCategory" : [ "Audio, video, navigation" ] - }, - "originalManufacturer" : "Company 1", - "brand" : "Brand 1", - "productDescription" : "Battery" - }, - "sku" : "1002090, xYz.09, ABcXYZ", - "mileage" : 120000.06 - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-697071246701378877945962", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:72bc26be-7624-41d0-8710-0b90801d56fc", - "childItems" : [ { - "catenaXId" : "urn:uuid:32b30587-82ac-4b55-a8eb-29f2ef20339a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:43f37993-36a7-4e3b-8b85-510cf905b1b7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0650be20-c15d-40be-9378-956c263dabdd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ea76039b-6ef2-4056-880a-5e1872a54b21", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:84b9efa3-711c-4afa-9ded-659a3612096c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cae1075c-6a14-43e0-91c7-2c1478f0c0dd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:32b30587-82ac-4b55-a8eb-29f2ef20339a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:32b30587-82ac-4b55-a8eb-29f2ef20339a", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-553887042682027983321480", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:32b30587-82ac-4b55-a8eb-29f2ef20339a", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-553887042682027983321480", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 68, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 88, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-553887042682027983321480", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:32b30587-82ac-4b55-a8eb-29f2ef20339a", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:550b7fe0-2a0f-4d02-b5d7-97d2bdc1fe32", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:146916db-6291-42e5-978b-2aab492a7d81", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:98262c52-c47e-440b-b66d-636be2a163bb", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:77a28fc3-a769-4185-a24c-30ca8d9efa37", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:eb3d1f26-0e48-433d-a69b-49da8ff4914a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4a251928-5d0c-43ec-b916-2be6cd41aea3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:444802fd-6483-480d-b512-efbe813db1f9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6c8b0659-e301-490a-bd40-851a7d0b384c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6dc05eb3-353c-45dd-8946-6765fef0c2e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d44f1064-cbe0-47eb-95bd-74788c06a545", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:550b7fe0-2a0f-4d02-b5d7-97d2bdc1fe32", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:550b7fe0-2a0f-4d02-b5d7-97d2bdc1fe32", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-989235542172162527446188", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:550b7fe0-2a0f-4d02-b5d7-97d2bdc1fe32", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-989235542172162527446188", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:550b7fe0-2a0f-4d02-b5d7-97d2bdc1fe32", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-12-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:146916db-6291-42e5-978b-2aab492a7d81", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:146916db-6291-42e5-978b-2aab492a7d81", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-068075859313189181570590", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:146916db-6291-42e5-978b-2aab492a7d81", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-068075859313189181570590", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:146916db-6291-42e5-978b-2aab492a7d81", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-09-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-10", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:98262c52-c47e-440b-b66d-636be2a163bb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:98262c52-c47e-440b-b66d-636be2a163bb", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-763387264782719515370069", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:98262c52-c47e-440b-b66d-636be2a163bb", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-763387264782719515370069", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:98262c52-c47e-440b-b66d-636be2a163bb", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-03-03", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:77a28fc3-a769-4185-a24c-30ca8d9efa37", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:77a28fc3-a769-4185-a24c-30ca8d9efa37", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-419611394546636949119349", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:77a28fc3-a769-4185-a24c-30ca8d9efa37", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-419611394546636949119349", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:77a28fc3-a769-4185-a24c-30ca8d9efa37", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-01-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:eb3d1f26-0e48-433d-a69b-49da8ff4914a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:eb3d1f26-0e48-433d-a69b-49da8ff4914a", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-106932946876819256929055", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:eb3d1f26-0e48-433d-a69b-49da8ff4914a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-106932946876819256929055", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:eb3d1f26-0e48-433d-a69b-49da8ff4914a", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-10-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4a251928-5d0c-43ec-b916-2be6cd41aea3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4a251928-5d0c-43ec-b916-2be6cd41aea3", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-380598846837010484941397", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4a251928-5d0c-43ec-b916-2be6cd41aea3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-380598846837010484941397", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4a251928-5d0c-43ec-b916-2be6cd41aea3", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-06-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:444802fd-6483-480d-b512-efbe813db1f9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:444802fd-6483-480d-b512-efbe813db1f9", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-497866827891698096040782", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:444802fd-6483-480d-b512-efbe813db1f9", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-497866827891698096040782", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:444802fd-6483-480d-b512-efbe813db1f9", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-11-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6c8b0659-e301-490a-bd40-851a7d0b384c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6c8b0659-e301-490a-bd40-851a7d0b384c", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-214193059770170307360256", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6c8b0659-e301-490a-bd40-851a7d0b384c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-214193059770170307360256", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6c8b0659-e301-490a-bd40-851a7d0b384c", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-04-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6dc05eb3-353c-45dd-8946-6765fef0c2e0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6dc05eb3-353c-45dd-8946-6765fef0c2e0", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-206971764705722655738004", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6dc05eb3-353c-45dd-8946-6765fef0c2e0", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-206971764705722655738004", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6dc05eb3-353c-45dd-8946-6765fef0c2e0", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-01-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d44f1064-cbe0-47eb-95bd-74788c06a545", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d44f1064-cbe0-47eb-95bd-74788c06a545", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-952124283147104742411066", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d44f1064-cbe0-47eb-95bd-74788c06a545", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-952124283147104742411066", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d44f1064-cbe0-47eb-95bd-74788c06a545", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-05-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:43f37993-36a7-4e3b-8b85-510cf905b1b7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:43f37993-36a7-4e3b-8b85-510cf905b1b7", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-139248953533605741078812", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:43f37993-36a7-4e3b-8b85-510cf905b1b7", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-139248953533605741078812", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 86, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-139248953533605741078812", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:43f37993-36a7-4e3b-8b85-510cf905b1b7", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e5f711f6-7abb-43eb-82df-7729020c228c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4f59de1b-0048-43b2-8d08-de1d077d42f8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:381f0fc1-63c1-44f5-9de2-277304b09558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0f1313cc-3b07-4050-a967-668b043ac3d7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2d167c2b-10a5-4c18-9d59-d072106b4314", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e8d9fb8c-ad2a-4e0f-a7d8-50fdca6a1690", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e8cc1c8a-383b-4064-8aba-3cf0712e56d5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b2cca6e6-0eff-4061-aeef-caae00af9b95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1c2149b4-080f-42e2-91f1-ca417894ec05", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:312ee0f3-b20e-4c08-8779-9b7f30f678e5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:e5f711f6-7abb-43eb-82df-7729020c228c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e5f711f6-7abb-43eb-82df-7729020c228c", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-137679501574460229287847", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e5f711f6-7abb-43eb-82df-7729020c228c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-137679501574460229287847", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e5f711f6-7abb-43eb-82df-7729020c228c", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-07-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4f59de1b-0048-43b2-8d08-de1d077d42f8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4f59de1b-0048-43b2-8d08-de1d077d42f8", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-202786163939150373100505", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4f59de1b-0048-43b2-8d08-de1d077d42f8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-202786163939150373100505", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4f59de1b-0048-43b2-8d08-de1d077d42f8", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-12-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-04", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:381f0fc1-63c1-44f5-9de2-277304b09558", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:381f0fc1-63c1-44f5-9de2-277304b09558", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-235760650620919848997795", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:381f0fc1-63c1-44f5-9de2-277304b09558", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-235760650620919848997795", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:381f0fc1-63c1-44f5-9de2-277304b09558", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-09-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-16", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0f1313cc-3b07-4050-a967-668b043ac3d7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f1313cc-3b07-4050-a967-668b043ac3d7", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-893909251647794601856542", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0f1313cc-3b07-4050-a967-668b043ac3d7", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-893909251647794601856542", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f1313cc-3b07-4050-a967-668b043ac3d7", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-03-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-03", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2d167c2b-10a5-4c18-9d59-d072106b4314", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2d167c2b-10a5-4c18-9d59-d072106b4314", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-320312274012130662973316", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2d167c2b-10a5-4c18-9d59-d072106b4314", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-320312274012130662973316", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2d167c2b-10a5-4c18-9d59-d072106b4314", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-10-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e8d9fb8c-ad2a-4e0f-a7d8-50fdca6a1690", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e8d9fb8c-ad2a-4e0f-a7d8-50fdca6a1690", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-849149738707092152494638", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e8d9fb8c-ad2a-4e0f-a7d8-50fdca6a1690", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-849149738707092152494638", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e8d9fb8c-ad2a-4e0f-a7d8-50fdca6a1690", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-12-10", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e8cc1c8a-383b-4064-8aba-3cf0712e56d5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e8cc1c8a-383b-4064-8aba-3cf0712e56d5", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-446068775067329791365840", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e8cc1c8a-383b-4064-8aba-3cf0712e56d5", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-446068775067329791365840", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e8cc1c8a-383b-4064-8aba-3cf0712e56d5", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-03-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b2cca6e6-0eff-4061-aeef-caae00af9b95", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b2cca6e6-0eff-4061-aeef-caae00af9b95", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-239380231892725951313576", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b2cca6e6-0eff-4061-aeef-caae00af9b95", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-239380231892725951313576", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b2cca6e6-0eff-4061-aeef-caae00af9b95", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-10-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1c2149b4-080f-42e2-91f1-ca417894ec05", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c2149b4-080f-42e2-91f1-ca417894ec05", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-792342824085780978662786", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1c2149b4-080f-42e2-91f1-ca417894ec05", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-792342824085780978662786", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c2149b4-080f-42e2-91f1-ca417894ec05", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-01-03", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:312ee0f3-b20e-4c08-8779-9b7f30f678e5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:312ee0f3-b20e-4c08-8779-9b7f30f678e5", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-807482643084764837619338", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:312ee0f3-b20e-4c08-8779-9b7f30f678e5", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-807482643084764837619338", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:312ee0f3-b20e-4c08-8779-9b7f30f678e5", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-07-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0650be20-c15d-40be-9378-956c263dabdd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0650be20-c15d-40be-9378-956c263dabdd", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-111851112619825241132099", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0650be20-c15d-40be-9378-956c263dabdd", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-111851112619825241132099", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 15, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 41, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-111851112619825241132099", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0650be20-c15d-40be-9378-956c263dabdd", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:45c9b296-c596-43ce-9567-564debabd0ed", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5b799b90-b62d-44d9-b5f6-51d21adb7d43", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:bed5fdbf-a511-43f7-a94f-d4fb49ef4e82", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:32f1dda9-7baa-4455-bf17-a849d17b7888", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:60684087-ce8d-403b-9a5b-3f13ef557218", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8c67042d-27a5-417d-ae9c-70ec1d2d7f8d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8468d9af-06dc-4688-816a-5252544123e5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:530365bf-60bb-4890-8fe4-e2dc8f0b6ac6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0115fe30-9e17-4209-80ba-029518fa2142", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e80acb20-0031-42db-8c29-d2e27a69b606", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:45c9b296-c596-43ce-9567-564debabd0ed", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:45c9b296-c596-43ce-9567-564debabd0ed", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-386035677968200458795222", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:45c9b296-c596-43ce-9567-564debabd0ed", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-386035677968200458795222", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:45c9b296-c596-43ce-9567-564debabd0ed", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-06-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5b799b90-b62d-44d9-b5f6-51d21adb7d43", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5b799b90-b62d-44d9-b5f6-51d21adb7d43", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-587735855424479836740255", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5b799b90-b62d-44d9-b5f6-51d21adb7d43", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-587735855424479836740255", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5b799b90-b62d-44d9-b5f6-51d21adb7d43", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-04-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:bed5fdbf-a511-43f7-a94f-d4fb49ef4e82", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bed5fdbf-a511-43f7-a94f-d4fb49ef4e82", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-542100668928462237757495", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:bed5fdbf-a511-43f7-a94f-d4fb49ef4e82", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-542100668928462237757495", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bed5fdbf-a511-43f7-a94f-d4fb49ef4e82", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-06-24", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:32f1dda9-7baa-4455-bf17-a849d17b7888", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:32f1dda9-7baa-4455-bf17-a849d17b7888", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-864089361405033854958997", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:32f1dda9-7baa-4455-bf17-a849d17b7888", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-864089361405033854958997", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:32f1dda9-7baa-4455-bf17-a849d17b7888", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-07-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:60684087-ce8d-403b-9a5b-3f13ef557218", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:60684087-ce8d-403b-9a5b-3f13ef557218", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-457448947709767470785600", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:60684087-ce8d-403b-9a5b-3f13ef557218", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-457448947709767470785600", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:60684087-ce8d-403b-9a5b-3f13ef557218", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-08-09", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-10", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8c67042d-27a5-417d-ae9c-70ec1d2d7f8d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8c67042d-27a5-417d-ae9c-70ec1d2d7f8d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-845331459966186308132021", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8c67042d-27a5-417d-ae9c-70ec1d2d7f8d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-845331459966186308132021", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8c67042d-27a5-417d-ae9c-70ec1d2d7f8d", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-07-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-16", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8468d9af-06dc-4688-816a-5252544123e5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8468d9af-06dc-4688-816a-5252544123e5", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-113031191204073473639731", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8468d9af-06dc-4688-816a-5252544123e5", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-113031191204073473639731", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8468d9af-06dc-4688-816a-5252544123e5", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-04-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:530365bf-60bb-4890-8fe4-e2dc8f0b6ac6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:530365bf-60bb-4890-8fe4-e2dc8f0b6ac6", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-304779133491931399758273", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:530365bf-60bb-4890-8fe4-e2dc8f0b6ac6", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-304779133491931399758273", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:530365bf-60bb-4890-8fe4-e2dc8f0b6ac6", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-02-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0115fe30-9e17-4209-80ba-029518fa2142", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0115fe30-9e17-4209-80ba-029518fa2142", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-157029443836342688150942", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0115fe30-9e17-4209-80ba-029518fa2142", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-157029443836342688150942", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0115fe30-9e17-4209-80ba-029518fa2142", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-06-12", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e80acb20-0031-42db-8c29-d2e27a69b606", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e80acb20-0031-42db-8c29-d2e27a69b606", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-292734428234331812720996", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e80acb20-0031-42db-8c29-d2e27a69b606", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-292734428234331812720996", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e80acb20-0031-42db-8c29-d2e27a69b606", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-10-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:ea76039b-6ef2-4056-880a-5e1872a54b21", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ea76039b-6ef2-4056-880a-5e1872a54b21", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-938419700033237494025491", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ea76039b-6ef2-4056-880a-5e1872a54b21", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-938419700033237494025491", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 34, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 10, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-938419700033237494025491", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ea76039b-6ef2-4056-880a-5e1872a54b21", - "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2c897977-c43b-4e5b-91b4-f507e53caa09", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:601fb130-ea07-4229-8360-ce5c3a82017c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:73337ce2-77be-4bf0-95dd-077cdef80286", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0ee145d8-ae7b-4812-be6a-b80b1e867fef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b066422c-9ee2-45cb-ad97-f91ffac801cd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2c3e9c9f-2539-49d1-8e61-5333087a6d8b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1e516b5f-0bbc-4941-82a6-d7591abbb957", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:633065d8-ae49-4ea2-9f99-ecf8ab64be64", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:252c7608-f43c-48dc-b3c9-4b56ddac4e78", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:fc772dd3-4ad6-4a53-b550-4b9c61601c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:2c897977-c43b-4e5b-91b4-f507e53caa09", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2c897977-c43b-4e5b-91b4-f507e53caa09", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-564057364481446148625759", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2c897977-c43b-4e5b-91b4-f507e53caa09", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-564057364481446148625759", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2c897977-c43b-4e5b-91b4-f507e53caa09", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-10-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-28", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:601fb130-ea07-4229-8360-ce5c3a82017c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:601fb130-ea07-4229-8360-ce5c3a82017c", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-398944293024155908925189", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:601fb130-ea07-4229-8360-ce5c3a82017c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-398944293024155908925189", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:601fb130-ea07-4229-8360-ce5c3a82017c", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-08-13", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-04", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:73337ce2-77be-4bf0-95dd-077cdef80286", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:73337ce2-77be-4bf0-95dd-077cdef80286", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-525589961490704209588321", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:73337ce2-77be-4bf0-95dd-077cdef80286", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-525589961490704209588321", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:73337ce2-77be-4bf0-95dd-077cdef80286", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-09-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0ee145d8-ae7b-4812-be6a-b80b1e867fef", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0ee145d8-ae7b-4812-be6a-b80b1e867fef", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-356691205249756839514727", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0ee145d8-ae7b-4812-be6a-b80b1e867fef", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-356691205249756839514727", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0ee145d8-ae7b-4812-be6a-b80b1e867fef", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-01-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b066422c-9ee2-45cb-ad97-f91ffac801cd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b066422c-9ee2-45cb-ad97-f91ffac801cd", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-823456631936327948380799", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b066422c-9ee2-45cb-ad97-f91ffac801cd", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-823456631936327948380799", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b066422c-9ee2-45cb-ad97-f91ffac801cd", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-07-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2c3e9c9f-2539-49d1-8e61-5333087a6d8b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2c3e9c9f-2539-49d1-8e61-5333087a6d8b", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-848783607062232472505788", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2c3e9c9f-2539-49d1-8e61-5333087a6d8b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-848783607062232472505788", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2c3e9c9f-2539-49d1-8e61-5333087a6d8b", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-12-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1e516b5f-0bbc-4941-82a6-d7591abbb957", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1e516b5f-0bbc-4941-82a6-d7591abbb957", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-376136317943637983210722", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1e516b5f-0bbc-4941-82a6-d7591abbb957", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-376136317943637983210722", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1e516b5f-0bbc-4941-82a6-d7591abbb957", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-01-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:633065d8-ae49-4ea2-9f99-ecf8ab64be64", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:633065d8-ae49-4ea2-9f99-ecf8ab64be64", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-168703430539459992320812", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:633065d8-ae49-4ea2-9f99-ecf8ab64be64", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-168703430539459992320812", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:633065d8-ae49-4ea2-9f99-ecf8ab64be64", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-02-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:252c7608-f43c-48dc-b3c9-4b56ddac4e78", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:252c7608-f43c-48dc-b3c9-4b56ddac4e78", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-099327686649406310007505", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:252c7608-f43c-48dc-b3c9-4b56ddac4e78", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-099327686649406310007505", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:252c7608-f43c-48dc-b3c9-4b56ddac4e78", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-05-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:fc772dd3-4ad6-4a53-b550-4b9c61601c6d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fc772dd3-4ad6-4a53-b550-4b9c61601c6d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-069303437253959258741745", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:fc772dd3-4ad6-4a53-b550-4b9c61601c6d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-069303437253959258741745", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fc772dd3-4ad6-4a53-b550-4b9c61601c6d", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-06-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:84b9efa3-711c-4afa-9ded-659a3612096c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:84b9efa3-711c-4afa-9ded-659a3612096c", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-565527096099713399028739", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:84b9efa3-711c-4afa-9ded-659a3612096c", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-565527096099713399028739", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 41, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 50, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-565527096099713399028739", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:84b9efa3-711c-4afa-9ded-659a3612096c", - "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:251d273c-f59e-407e-9587-bde8962deb27", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:30d387ea-302f-4a96-8ddd-ca590caf703c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2cc00123-d53d-4d83-a796-17bf1d5efd9a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0d1d2e0e-9e6e-4199-9093-2da6d9f4e971", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0f483da8-b2a1-4024-92c3-5dd15a5eda60", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3dca8733-6431-4bbc-9b16-9b7718a59083", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c218ffb9-4613-4959-99ce-eeb37fc5a366", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:57032845-8090-4822-bdd2-bd6dab667787", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ea2dbe17-b5e3-4f93-9dfe-92cfb2c5a432", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:137791ee-aa5d-4422-8ef0-b5546e43d6fd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:251d273c-f59e-407e-9587-bde8962deb27", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:251d273c-f59e-407e-9587-bde8962deb27", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-612476379822253196148446", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:251d273c-f59e-407e-9587-bde8962deb27", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-612476379822253196148446", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:251d273c-f59e-407e-9587-bde8962deb27", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-06-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:30d387ea-302f-4a96-8ddd-ca590caf703c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:30d387ea-302f-4a96-8ddd-ca590caf703c", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-224758263971627078329383", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:30d387ea-302f-4a96-8ddd-ca590caf703c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-224758263971627078329383", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:30d387ea-302f-4a96-8ddd-ca590caf703c", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-10-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2cc00123-d53d-4d83-a796-17bf1d5efd9a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2cc00123-d53d-4d83-a796-17bf1d5efd9a", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-744390561781467606520218", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2cc00123-d53d-4d83-a796-17bf1d5efd9a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-744390561781467606520218", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2cc00123-d53d-4d83-a796-17bf1d5efd9a", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-12-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0d1d2e0e-9e6e-4199-9093-2da6d9f4e971", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0d1d2e0e-9e6e-4199-9093-2da6d9f4e971", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-980160571493709779965151", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0d1d2e0e-9e6e-4199-9093-2da6d9f4e971", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-980160571493709779965151", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0d1d2e0e-9e6e-4199-9093-2da6d9f4e971", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-04-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0f483da8-b2a1-4024-92c3-5dd15a5eda60", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f483da8-b2a1-4024-92c3-5dd15a5eda60", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-475708540383874314646555", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0f483da8-b2a1-4024-92c3-5dd15a5eda60", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-475708540383874314646555", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f483da8-b2a1-4024-92c3-5dd15a5eda60", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-05-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3dca8733-6431-4bbc-9b16-9b7718a59083", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3dca8733-6431-4bbc-9b16-9b7718a59083", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-401579961419386443395388", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3dca8733-6431-4bbc-9b16-9b7718a59083", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-401579961419386443395388", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3dca8733-6431-4bbc-9b16-9b7718a59083", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-06-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c218ffb9-4613-4959-99ce-eeb37fc5a366", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c218ffb9-4613-4959-99ce-eeb37fc5a366", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-456224474435676113016727", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c218ffb9-4613-4959-99ce-eeb37fc5a366", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-456224474435676113016727", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c218ffb9-4613-4959-99ce-eeb37fc5a366", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-09-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:57032845-8090-4822-bdd2-bd6dab667787", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:57032845-8090-4822-bdd2-bd6dab667787", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-096331980082561746533008", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:57032845-8090-4822-bdd2-bd6dab667787", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-096331980082561746533008", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:57032845-8090-4822-bdd2-bd6dab667787", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-01-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-10", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:ea2dbe17-b5e3-4f93-9dfe-92cfb2c5a432", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ea2dbe17-b5e3-4f93-9dfe-92cfb2c5a432", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-885851460344396119269509", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ea2dbe17-b5e3-4f93-9dfe-92cfb2c5a432", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-885851460344396119269509", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ea2dbe17-b5e3-4f93-9dfe-92cfb2c5a432", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-01-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:137791ee-aa5d-4422-8ef0-b5546e43d6fd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:137791ee-aa5d-4422-8ef0-b5546e43d6fd", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-363045950845288361326628", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:137791ee-aa5d-4422-8ef0-b5546e43d6fd", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-363045950845288361326628", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:137791ee-aa5d-4422-8ef0-b5546e43d6fd", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-06-14", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:cae1075c-6a14-43e0-91c7-2c1478f0c0dd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cae1075c-6a14-43e0-91c7-2c1478f0c0dd", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-080541471074680673720512", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cae1075c-6a14-43e0-91c7-2c1478f0c0dd", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-080541471074680673720512", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 35, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-080541471074680673720512", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cae1075c-6a14-43e0-91c7-2c1478f0c0dd", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a5c6a59b-001a-422a-bfef-332447da41c2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:bfe69749-7254-4ab5-a6cd-10dbc05aa443", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:60de3099-69da-4209-a314-804cb5ccf4f8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b9c4f715-dfdf-44d0-ae2f-853b4367db0a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7581711c-f053-4eb3-a045-b1e7557fc50b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:423d8297-244f-4359-8790-99d5582f613a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1139d0e8-716a-4180-9136-0f42825aedc0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4518966c-b45e-4255-a93c-3f9ae8241564", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d0bf1352-f141-4c0b-9a31-637c7d5ee6c0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6fc82223-6846-452b-b0d1-d6603215ceb3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:a5c6a59b-001a-422a-bfef-332447da41c2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a5c6a59b-001a-422a-bfef-332447da41c2", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-358529031968255303462254", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a5c6a59b-001a-422a-bfef-332447da41c2", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-358529031968255303462254", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a5c6a59b-001a-422a-bfef-332447da41c2", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-02-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:bfe69749-7254-4ab5-a6cd-10dbc05aa443", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bfe69749-7254-4ab5-a6cd-10dbc05aa443", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-416477606966003518019720", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:bfe69749-7254-4ab5-a6cd-10dbc05aa443", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-416477606966003518019720", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bfe69749-7254-4ab5-a6cd-10dbc05aa443", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-05-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:60de3099-69da-4209-a314-804cb5ccf4f8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:60de3099-69da-4209-a314-804cb5ccf4f8", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-214524891354860416531846", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:60de3099-69da-4209-a314-804cb5ccf4f8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-214524891354860416531846", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:60de3099-69da-4209-a314-804cb5ccf4f8", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-01-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-16", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b9c4f715-dfdf-44d0-ae2f-853b4367db0a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b9c4f715-dfdf-44d0-ae2f-853b4367db0a", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-980917502046542725990748", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b9c4f715-dfdf-44d0-ae2f-853b4367db0a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-980917502046542725990748", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b9c4f715-dfdf-44d0-ae2f-853b4367db0a", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-06-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7581711c-f053-4eb3-a045-b1e7557fc50b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7581711c-f053-4eb3-a045-b1e7557fc50b", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-619954851346713398267570", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7581711c-f053-4eb3-a045-b1e7557fc50b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-619954851346713398267570", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7581711c-f053-4eb3-a045-b1e7557fc50b", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-02-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-28", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:423d8297-244f-4359-8790-99d5582f613a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:423d8297-244f-4359-8790-99d5582f613a", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-257833178884240315141443", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:423d8297-244f-4359-8790-99d5582f613a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-257833178884240315141443", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:423d8297-244f-4359-8790-99d5582f613a", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-01-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1139d0e8-716a-4180-9136-0f42825aedc0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1139d0e8-716a-4180-9136-0f42825aedc0", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-158796667775492017419974", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1139d0e8-716a-4180-9136-0f42825aedc0", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-158796667775492017419974", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1139d0e8-716a-4180-9136-0f42825aedc0", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-05-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4518966c-b45e-4255-a93c-3f9ae8241564", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4518966c-b45e-4255-a93c-3f9ae8241564", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-398161968074116050817985", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4518966c-b45e-4255-a93c-3f9ae8241564", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-398161968074116050817985", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4518966c-b45e-4255-a93c-3f9ae8241564", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-06-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-10", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d0bf1352-f141-4c0b-9a31-637c7d5ee6c0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d0bf1352-f141-4c0b-9a31-637c7d5ee6c0", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-269974874357958890925980", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d0bf1352-f141-4c0b-9a31-637c7d5ee6c0", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-269974874357958890925980", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d0bf1352-f141-4c0b-9a31-637c7d5ee6c0", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-12-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-23", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6fc82223-6846-452b-b0d1-d6603215ceb3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6fc82223-6846-452b-b0d1-d6603215ceb3", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-493121439194438387972667", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6fc82223-6846-452b-b0d1-d6603215ceb3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-493121439194438387972667", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6fc82223-6846-452b-b0d1-d6603215ceb3", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-10-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Pkw-Pick-up", - "catenaXId" : "urn:uuid:90840499-d0d9-4f41-bfd9-ba08001a79a0", - "engine" : { - "size" : 2998, - "power" : 143 - }, - "emptyWeight" : 1.73, - "fuel" : "Elektro", - "vehicleModel" : "Vehicle Fully Electric", - "productionDateGMT" : "2010-01-01", - "equipmentVariants" : [ { - "code" : "B298B", - "description" : "keyless entry", - "group" : "special equipment" - }, { - "code" : "S378B", - "description" : "integrated child seats", - "group" : "special equipment" - }, { - "code" : "S218A", - "description" : "sport automatic transmission", - "group" : "special equipment" - }, { - "code" : "S388C", - "description" : "security plus", - "group" : "special equipment" - } ], - "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", - "mileage" : [ { - "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2022-08-03", - "mileageDistance" : 120000 - } ] - } ], - "catenaXId" : "urn:uuid:90840499-d0d9-4f41-bfd9-ba08001a79a0", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "RC-72", - "key" : "manufacturerPartId" - }, { - "value" : "OMAHTQWYPAOWDAEGB", - "key" : "partInstanceId" - }, { - "value" : "OMAHTQWYPAOWDAEGB", - "key" : "van" - } ], - "manufacturingInformation" : { - "date" : "2018-11-02T05:22:57.000Z", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:90840499-d0d9-4f41-bfd9-ba08001a79a0", - "partTypeInformation" : { - "manufacturerPartId" : "RC-72", - "classification" : "product", - "nameAtManufacturer" : "Vehicle Fully Electric" - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Iron", - "recycledContent" : 14, - "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" : 48, - "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" : 54, - "materialClass" : "0.7", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 109.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "W123" - }, { - "materialName" : "Glue", - "recycledContent" : 29, - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 54.6 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GL338" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 22, - "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" : 38, - "materialClass" : "5.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 7.8 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "R22" - }, { - "materialName" : "Textiles", - "recycledContent" : 33, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 5.12 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "TEX1" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:90840499-d0d9-4f41-bfd9-ba08001a79a0", - "childItems" : [ { - "catenaXId" : "urn:uuid:98e005d5-c04d-41ea-9f98-3c5e26356e2d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2ba51f01-a6fe-4590-8637-1c106e0c1926", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:298e7dbd-804a-4c9a-b8b4-26b4ce06d15d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7b09a2f2-1cc9-4891-9567-5d4762ebcbb4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8c3d40e4-4d16-4b69-99ef-e9b34b4881b2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:38b6bd7c-70a8-4bf0-8768-0aaa311bdb70", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:21798f93-0090-4067-9989-a6efe0b99a8f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1a0c6a3a-9394-45fd-842f-e26a7004e10c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:be2ae8de-9313-417c-96d6-eabd3226b6c9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:abf76acf-73bb-41be-8a05-bd601a7da679", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cba2034f-852c-4db1-ac84-ef5359e6a3e4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:89b5f238-d910-4987-9d70-0fb35c575baa", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:446eaac8-1090-4493-b904-704d24dfdf64", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d053c5f6-6684-4cd5-96ba-f3c8e3eb4b9c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:69b60830-e41d-4195-a51d-379cbfd349f5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c2c3e335-6273-4a1a-a0a7-4ea624e2f84e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7436b146-1bde-45a1-aa88-d3b1838122f3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:31a119f0-350a-41f2-9e0e-9b1b4b7483c7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4197b172-1f7a-4050-9ac1-bb1c6d269718", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:80136286-c8d3-41cf-b73f-cd5c8d9984de", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9d61ab63-1e96-4d6d-9107-e43ea8e778f1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0eb44f8e-8432-418c-b79d-503d0cf5121d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:55378520-98c6-4aec-a260-e36620563581", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ab881f5a-0b1f-4e53-a967-1b8a0be34715", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6a74c61d-8d8f-4986-b4ed-1da16c88b783", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:09b85a76-1b13-42a7-8bef-8fce6d662dad", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9fb7c2ca-084b-4854-8864-5e7a171df085", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c2c0001d-f001-420c-91ef-78ab0fcfea6a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9de8c400-241a-47b2-b6f8-482d2404289d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:fb08778c-8847-4ee9-81fd-ca676920407f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B2OM", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a1274102-e9a5-4e54-8650-0fcf513d16fc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B5MJ", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:24300d06-3a68-438f-a649-391d3344f33a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:98e005d5-c04d-41ea-9f98-3c5e26356e2d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:98e005d5-c04d-41ea-9f98-3c5e26356e2d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "73849201-61", - "key" : "manufacturerPartId" - }, { - "value" : "NO-135950162903621111416058", - "key" : "partInstanceId" - }, { - "value" : "Company 10", - "key" : "company" - }, { - "value" : "Brand 10", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:98e005d5-c04d-41ea-9f98-3c5e26356e2d", - "partTypeInformation" : { - "manufacturerPartId" : "73849201-61", - "customerPartId" : "73849201-61", - "classification" : "component", - "nameAtManufacturer" : "Catalysator", - "nameAtCustomer" : "Catalysator" - } - } ] - }, { - "catenaXId" : "urn:uuid:2ba51f01-a6fe-4590-8637-1c106e0c1926", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2ba51f01-a6fe-4590-8637-1c106e0c1926", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "22782277-50", - "key" : "manufacturerPartId" - }, { - "value" : "NO-454431084167047616333306", - "key" : "partInstanceId" - }, { - "value" : "Company 3", - "key" : "company" - }, { - "value" : "Brand 3", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2ba51f01-a6fe-4590-8637-1c106e0c1926", - "partTypeInformation" : { - "manufacturerPartId" : "22782277-50", - "customerPartId" : "22782277-50", - "classification" : "component", - "nameAtManufacturer" : "Door f-l", - "nameAtCustomer" : "Door front-left" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2ba51f01-a6fe-4590-8637-1c106e0c1926", - "childItems" : [ { - "catenaXId" : "urn:uuid:99647313-e334-4f94-8044-4ba21a41bc59", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:99647313-e334-4f94-8044-4ba21a41bc59", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:99647313-e334-4f94-8044-4ba21a41bc59", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-941854507230191349511401", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:99647313-e334-4f94-8044-4ba21a41bc59", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "31645738EZT", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:99647313-e334-4f94-8044-4ba21a41bc59", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:298e7dbd-804a-4c9a-b8b4-26b4ce06d15d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:298e7dbd-804a-4c9a-b8b4-26b4ce06d15d", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "95657362-64", - "key" : "manufacturerPartId" - }, { - "value" : "NO-653888923315503710059504", - "key" : "partInstanceId" - }, { - "value" : "Company 4", - "key" : "company" - }, { - "value" : "Brand 4", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:298e7dbd-804a-4c9a-b8b4-26b4ce06d15d", - "partTypeInformation" : { - "manufacturerPartId" : "33740332-54", - "customerPartId" : "33740332-54", - "classification" : "component", - "nameAtManufacturer" : "Door f-r", - "nameAtCustomer" : "Door front-right" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:298e7dbd-804a-4c9a-b8b4-26b4ce06d15d", - "childItems" : [ { - "catenaXId" : "urn:uuid:07dcecce-aa1b-484a-b828-84d83e130b01", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:07dcecce-aa1b-484a-b828-84d83e130b01", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:07dcecce-aa1b-484a-b828-84d83e130b01", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-826031802501286827780328", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:07dcecce-aa1b-484a-b828-84d83e130b01", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "67565637KOC", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:07dcecce-aa1b-484a-b828-84d83e130b01", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:7b09a2f2-1cc9-4891-9567-5d4762ebcbb4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7b09a2f2-1cc9-4891-9567-5d4762ebcbb4", - "customers" : [ { - "businessPartner" : false, - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "15635759-16", - "key" : "manufacturerPartId" - }, { - "value" : "NO-358031631495292771612157", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7b09a2f2-1cc9-4891-9567-5d4762ebcbb4", - "partTypeInformation" : { - "manufacturerPartId" : "15635759-16", - "customerPartId" : "15635759-16", - "classification" : "component", - "nameAtManufacturer" : "Door r-l", - "nameAtCustomer" : "Door rear-left" - } - } ] - }, { - "catenaXId" : "urn:uuid:8c3d40e4-4d16-4b69-99ef-e9b34b4881b2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8c3d40e4-4d16-4b69-99ef-e9b34b4881b2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "28673126-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-091009127181869934409580", - "key" : "partInstanceId" - }, { - "value" : "Company 5", - "key" : "company" - }, { - "value" : "Brand 5", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8c3d40e4-4d16-4b69-99ef-e9b34b4881b2", - "partTypeInformation" : { - "manufacturerPartId" : "28673126-98", - "customerPartId" : "28673126-98", - "classification" : "component", - "nameAtManufacturer" : "Door r-r", - "nameAtCustomer" : "Door rear-right" - } - } ] - }, { - "catenaXId" : "urn:uuid:38b6bd7c-70a8-4bf0-8768-0aaa311bdb70", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:38b6bd7c-70a8-4bf0-8768-0aaa311bdb70", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "94421589-82", - "key" : "manufacturerPartId" - }, { - "value" : "NO-373210890680941284328839", - "key" : "partInstanceId" - }, { - "value" : "Company 6", - "key" : "company" - }, { - "value" : "Brand 6", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:38b6bd7c-70a8-4bf0-8768-0aaa311bdb70", - "partTypeInformation" : { - "manufacturerPartId" : "94421589-82", - "customerPartId" : "94421589-82", - "classification" : "component", - "nameAtManufacturer" : "Engine hood", - "nameAtCustomer" : "Engine hood" - } - } ] - }, { - "catenaXId" : "urn:uuid:21798f93-0090-4067-9989-a6efe0b99a8f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:21798f93-0090-4067-9989-a6efe0b99a8f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "85023955-75", - "key" : "manufacturerPartId" - }, { - "value" : "NO-943440826601435255626478", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:21798f93-0090-4067-9989-a6efe0b99a8f", - "partTypeInformation" : { - "manufacturerPartId" : "85023955-75", - "customerPartId" : "85023955-75", - "classification" : "component", - "nameAtManufacturer" : "Tailgate", - "nameAtCustomer" : "Tailgate" - } - } ] - }, { - "catenaXId" : "urn:uuid:1a0c6a3a-9394-45fd-842f-e26a7004e10c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1a0c6a3a-9394-45fd-842f-e26a7004e10c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "13769860-47", - "key" : "manufacturerPartId" - }, { - "value" : "NO-063143281406029741030088", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1a0c6a3a-9394-45fd-842f-e26a7004e10c", - "partTypeInformation" : { - "manufacturerPartId" : "13769860-47", - "customerPartId" : "13769860-47", - "classification" : "component", - "nameAtManufacturer" : "Fender left", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:be2ae8de-9313-417c-96d6-eabd3226b6c9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:be2ae8de-9313-417c-96d6-eabd3226b6c9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "36643162-35", - "key" : "manufacturerPartId" - }, { - "value" : "NO-160355161271835750377229", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:be2ae8de-9313-417c-96d6-eabd3226b6c9", - "partTypeInformation" : { - "manufacturerPartId" : "36643162-35", - "customerPartId" : "36643162-35", - "classification" : "component", - "nameAtManufacturer" : "Fender right", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:abf76acf-73bb-41be-8a05-bd601a7da679", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:abf76acf-73bb-41be-8a05-bd601a7da679", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "54165444-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-356301179818864478893883", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:abf76acf-73bb-41be-8a05-bd601a7da679", - "partTypeInformation" : { - "manufacturerPartId" : "54165444-59", - "customerPartId" : "54165444-59", - "classification" : "component", - "nameAtManufacturer" : "Bumper front", - "nameAtCustomer" : "Bumper front" - } - } ] - }, { - "catenaXId" : "urn:uuid:cba2034f-852c-4db1-ac84-ef5359e6a3e4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cba2034f-852c-4db1-ac84-ef5359e6a3e4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "22768257-25", - "key" : "manufacturerPartId" - }, { - "value" : "NO-587980733181611682168760", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cba2034f-852c-4db1-ac84-ef5359e6a3e4", - "partTypeInformation" : { - "manufacturerPartId" : "22768257-25", - "customerPartId" : "22768257-25", - "classification" : "component", - "nameAtManufacturer" : "Bumper rear", - "nameAtCustomer" : "Bumper rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:89b5f238-d910-4987-9d70-0fb35c575baa", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:89b5f238-d910-4987-9d70-0fb35c575baa", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "65529521-37", - "key" : "manufacturerPartId" - }, { - "value" : "NO-436409177381232623211845", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:89b5f238-d910-4987-9d70-0fb35c575baa", - "partTypeInformation" : { - "manufacturerPartId" : "65529521-37", - "customerPartId" : "65529521-37", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror left", - "nameAtCustomer" : "Exterior mirror left" - } - } ] - }, { - "catenaXId" : "urn:uuid:446eaac8-1090-4493-b904-704d24dfdf64", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:446eaac8-1090-4493-b904-704d24dfdf64", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "58471477-24", - "key" : "manufacturerPartId" - }, { - "value" : "NO-833554595494206437966431", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:446eaac8-1090-4493-b904-704d24dfdf64", - "partTypeInformation" : { - "manufacturerPartId" : "58471477-24", - "customerPartId" : "58471477-24", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror right", - "nameAtCustomer" : "Exterior mirror right" - } - } ] - }, { - "catenaXId" : "urn:uuid:d053c5f6-6684-4cd5-96ba-f3c8e3eb4b9c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d053c5f6-6684-4cd5-96ba-f3c8e3eb4b9c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "09002013-68", - "key" : "manufacturerPartId" - }, { - "value" : "NO-242759081622276081048931", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d053c5f6-6684-4cd5-96ba-f3c8e3eb4b9c", - "partTypeInformation" : { - "manufacturerPartId" : "09002013-68", - "customerPartId" : "09002013-68", - "classification" : "component", - "nameAtManufacturer" : "Trailer coupling", - "nameAtCustomer" : "Tailer coupling" - } - } ] - }, { - "catenaXId" : "urn:uuid:69b60830-e41d-4195-a51d-379cbfd349f5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:69b60830-e41d-4195-a51d-379cbfd349f5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "43501996-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-911872999538912216887275", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:69b60830-e41d-4195-a51d-379cbfd349f5", - "partTypeInformation" : { - "manufacturerPartId" : "43501996-98", - "customerPartId" : "43501996-98", - "classification" : "component", - "nameAtManufacturer" : "Dashboard", - "nameAtCustomer" : "Dashboard" - } - } ] - }, { - "catenaXId" : "urn:uuid:c2c3e335-6273-4a1a-a0a7-4ea624e2f84e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c2c3e335-6273-4a1a-a0a7-4ea624e2f84e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "77795937-13", - "key" : "manufacturerPartId" - }, { - "value" : "NO-870664443624595941081759", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c2c3e335-6273-4a1a-a0a7-4ea624e2f84e", - "partTypeInformation" : { - "manufacturerPartId" : "77795937-13", - "customerPartId" : "77795937-13", - "classification" : "component", - "nameAtManufacturer" : "Steering wheel", - "nameAtCustomer" : "Steering wheel" - } - } ] - }, { - "catenaXId" : "urn:uuid:7436b146-1bde-45a1-aa88-d3b1838122f3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7436b146-1bde-45a1-aa88-d3b1838122f3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "20125432-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-471578787245498355160850", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7436b146-1bde-45a1-aa88-d3b1838122f3", - "partTypeInformation" : { - "manufacturerPartId" : "20125432-59", - "customerPartId" : "20125432-59", - "classification" : "component", - "nameAtManufacturer" : "Indicator left", - "nameAtCustomer" : "Indicator left" - } - } ] - }, { - "catenaXId" : "urn:uuid:31a119f0-350a-41f2-9e0e-9b1b4b7483c7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:31a119f0-350a-41f2-9e0e-9b1b4b7483c7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "19073706-76", - "key" : "manufacturerPartId" - }, { - "value" : "NO-154901738878014750063992", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:31a119f0-350a-41f2-9e0e-9b1b4b7483c7", - "partTypeInformation" : { - "manufacturerPartId" : "19073706-76", - "customerPartId" : "19073706-76", - "classification" : "component", - "nameAtManufacturer" : "Indicator right", - "nameAtCustomer" : "Indicator right" - } - } ] - }, { - "catenaXId" : "urn:uuid:4197b172-1f7a-4050-9ac1-bb1c6d269718", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4197b172-1f7a-4050-9ac1-bb1c6d269718", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "45415162-57", - "key" : "manufacturerPartId" - }, { - "value" : "NO-532517111920382510701362", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4197b172-1f7a-4050-9ac1-bb1c6d269718", - "partTypeInformation" : { - "manufacturerPartId" : "45415162-57", - "customerPartId" : "45415162-57", - "classification" : "component", - "nameAtManufacturer" : "Led headlight", - "nameAtCustomer" : "Led headlight" - } - } ] - }, { - "catenaXId" : "urn:uuid:80136286-c8d3-41cf-b73f-cd5c8d9984de", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:80136286-c8d3-41cf-b73f-cd5c8d9984de", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "78141846-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-954350933278480086303443", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:80136286-c8d3-41cf-b73f-cd5c8d9984de", - "partTypeInformation" : { - "manufacturerPartId" : "78141846-87", - "customerPartId" : "78141846-87", - "classification" : "component", - "nameAtManufacturer" : "Starter motor", - "nameAtCustomer" : "Starter motor" - } - } ] - }, { - "catenaXId" : "urn:uuid:9d61ab63-1e96-4d6d-9107-e43ea8e778f1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9d61ab63-1e96-4d6d-9107-e43ea8e778f1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "81324139-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-027532923172043671025789", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9d61ab63-1e96-4d6d-9107-e43ea8e778f1", - "partTypeInformation" : { - "manufacturerPartId" : "81324139-23", - "customerPartId" : "81324139-23", - "classification" : "component", - "nameAtManufacturer" : "Alternator", - "nameAtCustomer" : "Alternator" - } - } ] - }, { - "catenaXId" : "urn:uuid:0eb44f8e-8432-418c-b79d-503d0cf5121d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0eb44f8e-8432-418c-b79d-503d0cf5121d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "57929013-09", - "key" : "manufacturerPartId" - }, { - "value" : "NO-130237290618387363773305", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0eb44f8e-8432-418c-b79d-503d0cf5121d", - "partTypeInformation" : { - "manufacturerPartId" : "57929013-09", - "customerPartId" : "57929013-09", - "classification" : "component", - "nameAtManufacturer" : "AC compressor", - "nameAtCustomer" : "Air conditioning compressor" - } - } ] - }, { - "catenaXId" : "urn:uuid:55378520-98c6-4aec-a260-e36620563581", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:55378520-98c6-4aec-a260-e36620563581", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "61184040-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-459656784120255495104859", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:55378520-98c6-4aec-a260-e36620563581", - "partTypeInformation" : { - "manufacturerPartId" : "61184040-23", - "customerPartId" : "61184040-23", - "classification" : "component", - "nameAtManufacturer" : "Taillight rear", - "nameAtCustomer" : "Taillight rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:ab881f5a-0b1f-4e53-a967-1b8a0be34715", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ab881f5a-0b1f-4e53-a967-1b8a0be34715", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "78744126-74", - "key" : "manufacturerPartId" - }, { - "value" : "NO-595407016544261127599470", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ab881f5a-0b1f-4e53-a967-1b8a0be34715", - "partTypeInformation" : { - "manufacturerPartId" : "78744126-74", - "customerPartId" : "78744126-74", - "classification" : "component", - "nameAtManufacturer" : "Taillight front", - "nameAtCustomer" : "Taillight front" - } - } ] - }, { - "catenaXId" : "urn:uuid:6a74c61d-8d8f-4986-b4ed-1da16c88b783", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6a74c61d-8d8f-4986-b4ed-1da16c88b783", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "12093297-03", - "key" : "manufacturerPartId" - }, { - "value" : "NO-018177834863203666893721", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6a74c61d-8d8f-4986-b4ed-1da16c88b783", - "partTypeInformation" : { - "manufacturerPartId" : "12093297-03", - "customerPartId" : "12093297-03", - "classification" : "component", - "nameAtManufacturer" : "Axle part front", - "nameAtCustomer" : "Axle part front" - } - } ] - }, { - "catenaXId" : "urn:uuid:09b85a76-1b13-42a7-8bef-8fce6d662dad", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:09b85a76-1b13-42a7-8bef-8fce6d662dad", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "88111709-49", - "key" : "manufacturerPartId" - }, { - "value" : "NO-416410853280515147045736", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:09b85a76-1b13-42a7-8bef-8fce6d662dad", - "partTypeInformation" : { - "manufacturerPartId" : "88111709-49", - "customerPartId" : "88111709-49", - "classification" : "component", - "nameAtManufacturer" : "Axle part rear", - "nameAtCustomer" : "Axle part rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:9fb7c2ca-084b-4854-8864-5e7a171df085", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9fb7c2ca-084b-4854-8864-5e7a171df085", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "00871379-44", - "key" : "manufacturerPartId" - }, { - "value" : "NO-080420896667967606045664", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9fb7c2ca-084b-4854-8864-5e7a171df085", - "partTypeInformation" : { - "manufacturerPartId" : "00871379-44", - "customerPartId" : "00871379-44", - "classification" : "component", - "nameAtManufacturer" : "Chassis", - "nameAtCustomer" : "Chassis" - } - } ] - }, { - "catenaXId" : "urn:uuid:c2c0001d-f001-420c-91ef-78ab0fcfea6a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c2c0001d-f001-420c-91ef-78ab0fcfea6a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "08901347-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-850982903487381800798077", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c2c0001d-f001-420c-91ef-78ab0fcfea6a", - "partTypeInformation" : { - "manufacturerPartId" : "08901347-87", - "customerPartId" : "08901347-87", - "classification" : "component", - "nameAtManufacturer" : "Rims", - "nameAtCustomer" : "Rims" - } - } ] - }, { - "catenaXId" : "urn:uuid:9de8c400-241a-47b2-b6f8-482d2404289d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9de8c400-241a-47b2-b6f8-482d2404289d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "45863316-60", - "key" : "manufacturerPartId" - }, { - "value" : "NO-482208286548998617885839", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9de8c400-241a-47b2-b6f8-482d2404289d", - "partTypeInformation" : { - "manufacturerPartId" : "45863316-60", - "customerPartId" : "45863316-60", - "classification" : "component", - "nameAtManufacturer" : "Tires", - "nameAtCustomer" : "Tires" - } - } ] - }, { - "catenaXId" : "urn:uuid:fb08778c-8847-4ee9-81fd-ca676920407f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fb08778c-8847-4ee9-81fd-ca676920407f", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B2OM", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B2OM", - "key" : "manufacturerId" - }, { - "value" : "1O222E8-43", - "key" : "manufacturerPartId" - }, { - "value" : "NO-071734863694044521949226", - "key" : "partInstanceId" - }, { - "value" : "Company 2", - "key" : "company" - }, { - "value" : "Brand 2", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:fb08778c-8847-4ee9-81fd-ca676920407f", - "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:fb08778c-8847-4ee9-81fd-ca676920407f", - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-071734863694044521949226", - "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.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Carbon Steel", - "recycledContent" : 3, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 72.843 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - }, { - "materialName" : "Oil", - "recycledContent" : 65, - "materialClass" : "9.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 6.9 - }, - "aggregateState" : "liquid", - "materialAbbreviation" : "SAE40" - }, { - "materialName" : "Copper", - "recycledContent" : 76, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fb08778c-8847-4ee9-81fd-ca676920407f", - "childItems" : [ { - "catenaXId" : "urn:uuid:5037f926-126b-4e03-bcbe-bc6eb679f810", - "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9e00b1c8-ffd8-4ef3-899b-69adf4965edb", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:bc0f200c-950a-4c66-a3ea-c021aaa93a6d", - "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:5037f926-126b-4e03-bcbe-bc6eb679f810", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:5037f926-126b-4e03-bcbe-bc6eb679f810", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5037f926-126b-4e03-bcbe-bc6eb679f810", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Engineering Plastics", - "materialClass" : "5.1", - "component" : [ { - "materialName" : "PA66", - "recycledContent" : 18, - "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:9e00b1c8-ffd8-4ef3-899b-69adf4965edb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9e00b1c8-ffd8-4ef3-899b-69adf4965edb", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "20477V5-18", - "key" : "manufacturerPartId" - }, { - "value" : "NO-249812984404759353689600", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9e00b1c8-ffd8-4ef3-899b-69adf4965edb", - "partTypeInformation" : { - "manufacturerPartId" : "20477V5-18", - "customerPartId" : "20477V5-18", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9e00b1c8-ffd8-4ef3-899b-69adf4965edb", - "childItems" : [ { - "catenaXId" : "urn:uuid:e713dabc-7c81-4ce7-93ea-2921db877901", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:e713dabc-7c81-4ce7-93ea-2921db877901", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:e713dabc-7c81-4ce7-93ea-2921db877901", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "NTIER Product" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "NTIER Product", - "materialClass" : "5.5", - "component" : [ { - "materialName" : "Aluminium oxide", - "recycledContent" : 6, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 60 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - }, { - "materialName" : "Other", - "recycledContent" : 54, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:percent", - "value" : 40 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:bc0f200c-950a-4c66-a3ea-c021aaa93a6d", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:bc0f200c-950a-4c66-a3ea-c021aaa93a6d", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bc0f200c-950a-4c66-a3ea-c021aaa93a6d", - "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.2341", - "materialAbbreviation" : "GL338" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bc0f200c-950a-4c66-a3ea-c021aaa93a6d", - "childItems" : [ ] - } ] - }, { - "catenaXId" : "urn:uuid:a1274102-e9a5-4e54-8650-0fcf513d16fc", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a1274102-e9a5-4e54-8650-0fcf513d16fc", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B5MJ", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", - "key" : "manufacturerId" - }, { - "value" : "93167T9-45", - "key" : "manufacturerPartId" - }, { - "value" : "NO-456355231879836115170393", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a1274102-e9a5-4e54-8650-0fcf513d16fc", - "partTypeInformation" : { - "manufacturerPartId" : "93167T9-45", - "customerPartId" : "93167T9-45", - "classification" : "component", - "nameAtManufacturer" : "ECU", - "nameAtCustomer" : "ECU" - } - } ], - "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" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a1274102-e9a5-4e54-8650-0fcf513d16fc", - "childItems" : [ { - "catenaXId" : "urn:uuid:4e54d07c-6fda-4dba-ba9f-3d3e56469c8a", - "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b117027f-1d27-4317-a415-9f0a363cae97", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:55f54680-0869-4a44-9f9a-4ba73837aab3", - "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:4e54d07c-6fda-4dba-ba9f-3d3e56469c8a", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:4e54d07c-6fda-4dba-ba9f-3d3e56469c8a", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4e54d07c-6fda-4dba-ba9f-3d3e56469c8a", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AXS3", - "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" : 74, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:b117027f-1d27-4317-a415-9f0a363cae97", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b117027f-1d27-4317-a415-9f0a363cae97", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "63582B9-85", - "key" : "manufacturerPartId" - }, { - "value" : "NO-650424865618210415645432", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b117027f-1d27-4317-a415-9f0a363cae97", - "partTypeInformation" : { - "manufacturerPartId" : "63582B9-85", - "customerPartId" : "63582B9-85", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b117027f-1d27-4317-a415-9f0a363cae97", - "childItems" : [ { - "catenaXId" : "urn:uuid:ff7e62d9-9bc1-4c85-9b46-00372a2d4b06", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:ff7e62d9-9bc1-4c85-9b46-00372a2d4b06", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:ff7e62d9-9bc1-4c85-9b46-00372a2d4b06", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "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:55f54680-0869-4a44-9f9a-4ba73837aab3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:55f54680-0869-4a44-9f9a-4ba73837aab3", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "03437H8-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-287542153279067139983924", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:55f54680-0869-4a44-9f9a-4ba73837aab3", - "partTypeInformation" : { - "manufacturerPartId" : "03437H8-48", - "customerPartId" : "03437H8-48", - "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" : 5, - "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.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" - } ], - "catenaXId" : "urn:uuid:24300d06-3a68-438f-a649-391d3344f33a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:24300d06-3a68-438f-a649-391d3344f33a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "38049661-08", - "key" : "manufacturerPartId" - }, { - "value" : "NO-357602394882363655963423", - "key" : "partInstanceId" - }, { - "value" : "Company 1", - "key" : "company" - }, { - "value" : "Brand 1", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:24300d06-3a68-438f-a649-391d3344f33a", - "partTypeInformation" : { - "manufacturerPartId" : "38049661-08", - "customerPartId" : "38049661-08", - "classification" : "component", - "nameAtManufacturer" : "Battery", - "nameAtCustomer" : "Battery" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "pack" - } ], - "productType" : "pack" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-357602394882363655963423", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 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" : 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" : false, - "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" : "38049661-08", - "technicalSpecification" : [ { - "technicalValue" : "RYtGKbgicZaHCBRQDSx", - "key" : "JxkyvRnL" - } ], - "productLink" : "https://123", - "oeNumber" : "NO-357602394882363655963423", - "category" : { - "subCategory" : [ "Battery" ], - "mainCategory" : [ "Audio, video, navigation" ] - }, - "originalManufacturer" : "Company 1", - "brand" : "Brand 1", - "productDescription" : "Battery" - }, - "sku" : "1002090, xYz.09, ABcXYZ", - "mileage" : 120000.06 - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-357602394882363655963423", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:24300d06-3a68-438f-a649-391d3344f33a", - "childItems" : [ { - "catenaXId" : "urn:uuid:fface1f0-a9ae-4e87-a01f-339abdad8a2e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1b2d40ca-281e-4093-ad2f-0e65d3a61631", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:47f33691-8816-42e5-9929-4fea5efe7997", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:901d286f-9bac-4589-8e1e-705e941f80ed", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:85b345ea-007e-499b-9f7c-977f55f5016c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:406c95d2-a712-4479-997d-4eeb253679f1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:fface1f0-a9ae-4e87-a01f-339abdad8a2e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fface1f0-a9ae-4e87-a01f-339abdad8a2e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-914358622725470596231631", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:fface1f0-a9ae-4e87-a01f-339abdad8a2e", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-914358622725470596231631", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 58, - "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" : 70, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-914358622725470596231631", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fface1f0-a9ae-4e87-a01f-339abdad8a2e", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:fbe5486b-0530-42bd-a007-5a24cce0300a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:11355684-9360-4a8d-81ef-e10a1442687d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5c5bb73c-2dcb-42fb-9213-3c8a6367ecbe", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b3f3ef31-3681-42eb-875c-a0d84e4db2bc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:16b42c16-50d0-4b1e-bd4c-1f90100d6cc3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7bca15bf-95cb-4719-8775-cfc9ea98f127", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:53be7954-aee9-43c9-9444-aa96da840f4b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:77d2cf9d-c960-4905-8674-57fdcdf3aee3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6f1e1dd6-942c-4821-8007-7017dfee9028", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:51228bbf-6ca0-4bf0-ba26-9e5198ad9423", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:fbe5486b-0530-42bd-a007-5a24cce0300a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fbe5486b-0530-42bd-a007-5a24cce0300a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-041747724273773192935556", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:fbe5486b-0530-42bd-a007-5a24cce0300a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-041747724273773192935556", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fbe5486b-0530-42bd-a007-5a24cce0300a", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-11-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:11355684-9360-4a8d-81ef-e10a1442687d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:11355684-9360-4a8d-81ef-e10a1442687d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-372819384009760969797582", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:11355684-9360-4a8d-81ef-e10a1442687d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-372819384009760969797582", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:11355684-9360-4a8d-81ef-e10a1442687d", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-03-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-16", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5c5bb73c-2dcb-42fb-9213-3c8a6367ecbe", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5c5bb73c-2dcb-42fb-9213-3c8a6367ecbe", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-075607403122759326703444", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5c5bb73c-2dcb-42fb-9213-3c8a6367ecbe", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-075607403122759326703444", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5c5bb73c-2dcb-42fb-9213-3c8a6367ecbe", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-06-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b3f3ef31-3681-42eb-875c-a0d84e4db2bc", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3f3ef31-3681-42eb-875c-a0d84e4db2bc", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-286983728426061976094482", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b3f3ef31-3681-42eb-875c-a0d84e4db2bc", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-286983728426061976094482", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3f3ef31-3681-42eb-875c-a0d84e4db2bc", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-07-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:16b42c16-50d0-4b1e-bd4c-1f90100d6cc3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:16b42c16-50d0-4b1e-bd4c-1f90100d6cc3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-623407323669268193631959", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:16b42c16-50d0-4b1e-bd4c-1f90100d6cc3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-623407323669268193631959", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:16b42c16-50d0-4b1e-bd4c-1f90100d6cc3", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-11-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7bca15bf-95cb-4719-8775-cfc9ea98f127", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7bca15bf-95cb-4719-8775-cfc9ea98f127", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-599523398458147067253405", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7bca15bf-95cb-4719-8775-cfc9ea98f127", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-599523398458147067253405", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7bca15bf-95cb-4719-8775-cfc9ea98f127", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-11-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:53be7954-aee9-43c9-9444-aa96da840f4b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:53be7954-aee9-43c9-9444-aa96da840f4b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-691221266491150285582348", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:53be7954-aee9-43c9-9444-aa96da840f4b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-691221266491150285582348", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:53be7954-aee9-43c9-9444-aa96da840f4b", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-04-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-31", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:77d2cf9d-c960-4905-8674-57fdcdf3aee3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:77d2cf9d-c960-4905-8674-57fdcdf3aee3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-461480813781399746673447", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:77d2cf9d-c960-4905-8674-57fdcdf3aee3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-461480813781399746673447", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:77d2cf9d-c960-4905-8674-57fdcdf3aee3", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-11-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-23", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6f1e1dd6-942c-4821-8007-7017dfee9028", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6f1e1dd6-942c-4821-8007-7017dfee9028", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-822026394092394457203091", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6f1e1dd6-942c-4821-8007-7017dfee9028", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-822026394092394457203091", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6f1e1dd6-942c-4821-8007-7017dfee9028", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-11-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-03", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:51228bbf-6ca0-4bf0-ba26-9e5198ad9423", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:51228bbf-6ca0-4bf0-ba26-9e5198ad9423", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-045116209561513297415931", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:51228bbf-6ca0-4bf0-ba26-9e5198ad9423", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-045116209561513297415931", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:51228bbf-6ca0-4bf0-ba26-9e5198ad9423", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-04-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1b2d40ca-281e-4093-ad2f-0e65d3a61631", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1b2d40ca-281e-4093-ad2f-0e65d3a61631", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-607248485111714359512607", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1b2d40ca-281e-4093-ad2f-0e65d3a61631", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-607248485111714359512607", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 17, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 4, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-607248485111714359512607", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1b2d40ca-281e-4093-ad2f-0e65d3a61631", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:59dc1995-5264-43c9-b83c-63a960473224", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c3366018-ec96-46cf-9fca-f2601e243813", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4d4e1302-2299-4edc-aaeb-f9a39dd19e99", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e6bdf36c-a1a6-4d34-9c3b-4b5e099fa770", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:024eb431-8e0d-4139-b568-e03dc62c5c03", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cbb220d2-3e32-40ea-83bb-3c03b30a3445", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:de64564c-129b-4d1c-90a2-abb73297502c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3ff2951b-b247-4530-9b56-da6608290fca", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:646853b6-a0d3-4a11-b71c-e3458b5c784e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4331d1b9-ab40-4378-9756-28c9a3dab990", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:59dc1995-5264-43c9-b83c-63a960473224", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:59dc1995-5264-43c9-b83c-63a960473224", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-379688396647981562082819", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:59dc1995-5264-43c9-b83c-63a960473224", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-379688396647981562082819", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:59dc1995-5264-43c9-b83c-63a960473224", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-10-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-11", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c3366018-ec96-46cf-9fca-f2601e243813", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c3366018-ec96-46cf-9fca-f2601e243813", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-681600937763032427786388", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c3366018-ec96-46cf-9fca-f2601e243813", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-681600937763032427786388", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c3366018-ec96-46cf-9fca-f2601e243813", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-03-31", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4d4e1302-2299-4edc-aaeb-f9a39dd19e99", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4d4e1302-2299-4edc-aaeb-f9a39dd19e99", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-792544771910157913793489", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4d4e1302-2299-4edc-aaeb-f9a39dd19e99", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-792544771910157913793489", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4d4e1302-2299-4edc-aaeb-f9a39dd19e99", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-05-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e6bdf36c-a1a6-4d34-9c3b-4b5e099fa770", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e6bdf36c-a1a6-4d34-9c3b-4b5e099fa770", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-824573760969254134442866", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e6bdf36c-a1a6-4d34-9c3b-4b5e099fa770", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-824573760969254134442866", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e6bdf36c-a1a6-4d34-9c3b-4b5e099fa770", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-02-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-10", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:024eb431-8e0d-4139-b568-e03dc62c5c03", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:024eb431-8e0d-4139-b568-e03dc62c5c03", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-417476916524030842428586", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:024eb431-8e0d-4139-b568-e03dc62c5c03", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-417476916524030842428586", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:024eb431-8e0d-4139-b568-e03dc62c5c03", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-04-18", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-10", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:cbb220d2-3e32-40ea-83bb-3c03b30a3445", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cbb220d2-3e32-40ea-83bb-3c03b30a3445", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-786906752752783455355577", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cbb220d2-3e32-40ea-83bb-3c03b30a3445", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-786906752752783455355577", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cbb220d2-3e32-40ea-83bb-3c03b30a3445", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-11-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:de64564c-129b-4d1c-90a2-abb73297502c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:de64564c-129b-4d1c-90a2-abb73297502c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-607212909096129629591408", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:de64564c-129b-4d1c-90a2-abb73297502c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-607212909096129629591408", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:de64564c-129b-4d1c-90a2-abb73297502c", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-03-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3ff2951b-b247-4530-9b56-da6608290fca", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3ff2951b-b247-4530-9b56-da6608290fca", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-414283036197115464675025", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3ff2951b-b247-4530-9b56-da6608290fca", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-414283036197115464675025", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3ff2951b-b247-4530-9b56-da6608290fca", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-05-13", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:646853b6-a0d3-4a11-b71c-e3458b5c784e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:646853b6-a0d3-4a11-b71c-e3458b5c784e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-215167847024599363200791", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:646853b6-a0d3-4a11-b71c-e3458b5c784e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-215167847024599363200791", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:646853b6-a0d3-4a11-b71c-e3458b5c784e", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-10-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4331d1b9-ab40-4378-9756-28c9a3dab990", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4331d1b9-ab40-4378-9756-28c9a3dab990", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-304537497149479605076920", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4331d1b9-ab40-4378-9756-28c9a3dab990", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-304537497149479605076920", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4331d1b9-ab40-4378-9756-28c9a3dab990", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-12-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:47f33691-8816-42e5-9929-4fea5efe7997", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:47f33691-8816-42e5-9929-4fea5efe7997", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-759804689795433996655000", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:47f33691-8816-42e5-9929-4fea5efe7997", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-759804689795433996655000", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 54, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 61, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 1, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-759804689795433996655000", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:47f33691-8816-42e5-9929-4fea5efe7997", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:84bb2b85-38fc-4eaf-8ba3-ec230d9f1e78", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4a2792bd-e66f-4b4b-8979-0d0909f14e3c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8329f40a-4fb1-412c-86c6-40a32c69d8cf", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8fa10f09-c199-4696-8272-3ce1191795c6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2af06310-75b5-4a80-b871-c1726b2bc6b9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ccf4be57-9e2d-47c8-bb2f-665108f6210e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9c25ef4f-42e9-4a70-b9ee-a00d49911a5a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a9756fc7-ef0b-4c9d-9eee-aa5cfda737d8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:598a2145-7c2e-492e-a25d-2f478244761b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b40e6381-2db5-49fc-b7b5-ed04fec6ea1f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:84bb2b85-38fc-4eaf-8ba3-ec230d9f1e78", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:84bb2b85-38fc-4eaf-8ba3-ec230d9f1e78", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-809216348998406721738822", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:84bb2b85-38fc-4eaf-8ba3-ec230d9f1e78", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-809216348998406721738822", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:84bb2b85-38fc-4eaf-8ba3-ec230d9f1e78", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-04-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4a2792bd-e66f-4b4b-8979-0d0909f14e3c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4a2792bd-e66f-4b4b-8979-0d0909f14e3c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-329241305829007609062195", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4a2792bd-e66f-4b4b-8979-0d0909f14e3c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-329241305829007609062195", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4a2792bd-e66f-4b4b-8979-0d0909f14e3c", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-07-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8329f40a-4fb1-412c-86c6-40a32c69d8cf", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8329f40a-4fb1-412c-86c6-40a32c69d8cf", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-683918178146511495684087", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8329f40a-4fb1-412c-86c6-40a32c69d8cf", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-683918178146511495684087", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8329f40a-4fb1-412c-86c6-40a32c69d8cf", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-10-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-20", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8fa10f09-c199-4696-8272-3ce1191795c6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8fa10f09-c199-4696-8272-3ce1191795c6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-754058298675384617617258", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8fa10f09-c199-4696-8272-3ce1191795c6", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-754058298675384617617258", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8fa10f09-c199-4696-8272-3ce1191795c6", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-07-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2af06310-75b5-4a80-b871-c1726b2bc6b9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2af06310-75b5-4a80-b871-c1726b2bc6b9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-996077386142948777755835", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2af06310-75b5-4a80-b871-c1726b2bc6b9", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-996077386142948777755835", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2af06310-75b5-4a80-b871-c1726b2bc6b9", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-05-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-06", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:ccf4be57-9e2d-47c8-bb2f-665108f6210e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ccf4be57-9e2d-47c8-bb2f-665108f6210e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-927277341079643718681960", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ccf4be57-9e2d-47c8-bb2f-665108f6210e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-927277341079643718681960", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ccf4be57-9e2d-47c8-bb2f-665108f6210e", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-05-31", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9c25ef4f-42e9-4a70-b9ee-a00d49911a5a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9c25ef4f-42e9-4a70-b9ee-a00d49911a5a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-872650939977791241393042", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9c25ef4f-42e9-4a70-b9ee-a00d49911a5a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-872650939977791241393042", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9c25ef4f-42e9-4a70-b9ee-a00d49911a5a", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-10-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a9756fc7-ef0b-4c9d-9eee-aa5cfda737d8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a9756fc7-ef0b-4c9d-9eee-aa5cfda737d8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-508399874897290042146500", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a9756fc7-ef0b-4c9d-9eee-aa5cfda737d8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-508399874897290042146500", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a9756fc7-ef0b-4c9d-9eee-aa5cfda737d8", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-10-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:598a2145-7c2e-492e-a25d-2f478244761b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:598a2145-7c2e-492e-a25d-2f478244761b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-885857240978990281606474", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:598a2145-7c2e-492e-a25d-2f478244761b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-885857240978990281606474", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:598a2145-7c2e-492e-a25d-2f478244761b", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-10-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-16", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b40e6381-2db5-49fc-b7b5-ed04fec6ea1f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b40e6381-2db5-49fc-b7b5-ed04fec6ea1f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-153552586661420955805558", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b40e6381-2db5-49fc-b7b5-ed04fec6ea1f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-153552586661420955805558", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b40e6381-2db5-49fc-b7b5-ed04fec6ea1f", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-05-30", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:901d286f-9bac-4589-8e1e-705e941f80ed", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:901d286f-9bac-4589-8e1e-705e941f80ed", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-561209095664010468545059", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:901d286f-9bac-4589-8e1e-705e941f80ed", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-561209095664010468545059", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 83, - "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" : 44, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-561209095664010468545059", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:901d286f-9bac-4589-8e1e-705e941f80ed", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2a985696-c732-478a-ba23-7056065fb126", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a60496b7-5e78-492d-b8a6-cb179853af5b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b9b4d0b3-fda7-4a46-ae57-85d970fdaf45", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:51a4c6d5-3a06-470d-a0f7-73c1aa0a648e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:75eeb144-c53d-4dc9-8c7a-424c18de02bc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:106ed756-ce9a-41d1-90a0-0255577d5db7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2870a426-6870-4786-a7dc-814c8bd029b6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ffe151a1-b88e-4880-b175-f697cc24cae0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8e68be98-b94e-4919-8760-2c6c5201f839", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9a235518-f4bd-4eb7-8fa4-672e08a2f253", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:2a985696-c732-478a-ba23-7056065fb126", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2a985696-c732-478a-ba23-7056065fb126", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-861734481758840234623401", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2a985696-c732-478a-ba23-7056065fb126", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-861734481758840234623401", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2a985696-c732-478a-ba23-7056065fb126", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-10-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a60496b7-5e78-492d-b8a6-cb179853af5b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a60496b7-5e78-492d-b8a6-cb179853af5b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-919770541743119065038242", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a60496b7-5e78-492d-b8a6-cb179853af5b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-919770541743119065038242", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a60496b7-5e78-492d-b8a6-cb179853af5b", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-07-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b9b4d0b3-fda7-4a46-ae57-85d970fdaf45", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b9b4d0b3-fda7-4a46-ae57-85d970fdaf45", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-851808696497435952203673", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b9b4d0b3-fda7-4a46-ae57-85d970fdaf45", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-851808696497435952203673", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b9b4d0b3-fda7-4a46-ae57-85d970fdaf45", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-06-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:51a4c6d5-3a06-470d-a0f7-73c1aa0a648e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:51a4c6d5-3a06-470d-a0f7-73c1aa0a648e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-795781846008308621244301", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:51a4c6d5-3a06-470d-a0f7-73c1aa0a648e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-795781846008308621244301", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:51a4c6d5-3a06-470d-a0f7-73c1aa0a648e", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-01-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:75eeb144-c53d-4dc9-8c7a-424c18de02bc", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:75eeb144-c53d-4dc9-8c7a-424c18de02bc", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-773194260368257008224781", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:75eeb144-c53d-4dc9-8c7a-424c18de02bc", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-773194260368257008224781", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:75eeb144-c53d-4dc9-8c7a-424c18de02bc", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-10-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-31", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:106ed756-ce9a-41d1-90a0-0255577d5db7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:106ed756-ce9a-41d1-90a0-0255577d5db7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-471857436617759824760971", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:106ed756-ce9a-41d1-90a0-0255577d5db7", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-471857436617759824760971", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:106ed756-ce9a-41d1-90a0-0255577d5db7", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-10-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2870a426-6870-4786-a7dc-814c8bd029b6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2870a426-6870-4786-a7dc-814c8bd029b6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-477294933096127199776559", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2870a426-6870-4786-a7dc-814c8bd029b6", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-477294933096127199776559", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2870a426-6870-4786-a7dc-814c8bd029b6", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-12-12", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:ffe151a1-b88e-4880-b175-f697cc24cae0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ffe151a1-b88e-4880-b175-f697cc24cae0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-523089548350950880420386", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ffe151a1-b88e-4880-b175-f697cc24cae0", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-523089548350950880420386", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ffe151a1-b88e-4880-b175-f697cc24cae0", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-01-10", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8e68be98-b94e-4919-8760-2c6c5201f839", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8e68be98-b94e-4919-8760-2c6c5201f839", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-684750686925069917536535", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8e68be98-b94e-4919-8760-2c6c5201f839", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-684750686925069917536535", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8e68be98-b94e-4919-8760-2c6c5201f839", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-10-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9a235518-f4bd-4eb7-8fa4-672e08a2f253", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9a235518-f4bd-4eb7-8fa4-672e08a2f253", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-691669853509420894540415", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9a235518-f4bd-4eb7-8fa4-672e08a2f253", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-691669853509420894540415", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9a235518-f4bd-4eb7-8fa4-672e08a2f253", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-09-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:85b345ea-007e-499b-9f7c-977f55f5016c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:85b345ea-007e-499b-9f7c-977f55f5016c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-791811756401939851716447", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:85b345ea-007e-499b-9f7c-977f55f5016c", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-791811756401939851716447", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 46, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 82, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-791811756401939851716447", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:85b345ea-007e-499b-9f7c-977f55f5016c", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e4c981d5-b835-40c4-8f49-8b64ca2c22fb", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6096c58f-dc05-40b2-a752-3af4a20e39a8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e9a9f200-366f-4678-a899-6ad5e115393f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:542f2c52-71e2-4bec-817a-3949a2a04670", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0508d0ed-2a19-44fa-9cf5-ef3ef3b05949", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6b0dde4a-0784-4d73-a6f3-382430b029e6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:756e2c00-c6c0-4f6f-8833-5f0fa96d4601", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ab7120c1-ce0e-45c8-82b4-ffdd4b909ff4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1d8e2bf3-069f-49dc-bb4c-bd12e0e87ad9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:15696036-8fb6-4618-ad6a-6b39de4a4e9c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:e4c981d5-b835-40c4-8f49-8b64ca2c22fb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e4c981d5-b835-40c4-8f49-8b64ca2c22fb", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-379324318186827109393522", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e4c981d5-b835-40c4-8f49-8b64ca2c22fb", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-379324318186827109393522", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e4c981d5-b835-40c4-8f49-8b64ca2c22fb", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-09-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6096c58f-dc05-40b2-a752-3af4a20e39a8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6096c58f-dc05-40b2-a752-3af4a20e39a8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-304234983641658171218754", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6096c58f-dc05-40b2-a752-3af4a20e39a8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-304234983641658171218754", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6096c58f-dc05-40b2-a752-3af4a20e39a8", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-09-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e9a9f200-366f-4678-a899-6ad5e115393f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e9a9f200-366f-4678-a899-6ad5e115393f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-585490180234655643834984", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e9a9f200-366f-4678-a899-6ad5e115393f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-585490180234655643834984", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e9a9f200-366f-4678-a899-6ad5e115393f", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-06-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:542f2c52-71e2-4bec-817a-3949a2a04670", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:542f2c52-71e2-4bec-817a-3949a2a04670", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-711917145554254606555433", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:542f2c52-71e2-4bec-817a-3949a2a04670", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-711917145554254606555433", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:542f2c52-71e2-4bec-817a-3949a2a04670", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-01-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0508d0ed-2a19-44fa-9cf5-ef3ef3b05949", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0508d0ed-2a19-44fa-9cf5-ef3ef3b05949", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-727715535964460992128711", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0508d0ed-2a19-44fa-9cf5-ef3ef3b05949", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-727715535964460992128711", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0508d0ed-2a19-44fa-9cf5-ef3ef3b05949", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-05-12", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6b0dde4a-0784-4d73-a6f3-382430b029e6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6b0dde4a-0784-4d73-a6f3-382430b029e6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-847096905301109064431798", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6b0dde4a-0784-4d73-a6f3-382430b029e6", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-847096905301109064431798", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6b0dde4a-0784-4d73-a6f3-382430b029e6", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-08-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:756e2c00-c6c0-4f6f-8833-5f0fa96d4601", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:756e2c00-c6c0-4f6f-8833-5f0fa96d4601", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-183043382453864830433590", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:756e2c00-c6c0-4f6f-8833-5f0fa96d4601", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-183043382453864830433590", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:756e2c00-c6c0-4f6f-8833-5f0fa96d4601", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-06-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:ab7120c1-ce0e-45c8-82b4-ffdd4b909ff4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ab7120c1-ce0e-45c8-82b4-ffdd4b909ff4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-767997020168053612980831", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ab7120c1-ce0e-45c8-82b4-ffdd4b909ff4", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-767997020168053612980831", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ab7120c1-ce0e-45c8-82b4-ffdd4b909ff4", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-09-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-31", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1d8e2bf3-069f-49dc-bb4c-bd12e0e87ad9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1d8e2bf3-069f-49dc-bb4c-bd12e0e87ad9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-285189683117602629291003", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1d8e2bf3-069f-49dc-bb4c-bd12e0e87ad9", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-285189683117602629291003", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1d8e2bf3-069f-49dc-bb4c-bd12e0e87ad9", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-08-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:15696036-8fb6-4618-ad6a-6b39de4a4e9c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:15696036-8fb6-4618-ad6a-6b39de4a4e9c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-743793803912879512778681", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:15696036-8fb6-4618-ad6a-6b39de4a4e9c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-743793803912879512778681", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:15696036-8fb6-4618-ad6a-6b39de4a4e9c", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-12-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:406c95d2-a712-4479-997d-4eeb253679f1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:406c95d2-a712-4479-997d-4eeb253679f1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-521735133087947889044087", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:406c95d2-a712-4479-997d-4eeb253679f1", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-521735133087947889044087", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 36, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 88, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-521735133087947889044087", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:406c95d2-a712-4479-997d-4eeb253679f1", - "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2f4ad2ce-432b-461a-a344-f87fd9e8bb55", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e855cd61-462e-4d09-bac6-dac4ac812ba1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9e3582f1-9373-4fa9-a65b-23880c3fed8f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d99211ab-37b5-4ccc-a9d5-1f9bc0b25886", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:50028026-fb8d-4335-9f92-da6629582dd3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f4a81aa9-bc82-47f4-bfce-1729c8af5a88", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4bf1197c-594d-44ac-869d-8443e6ecfcc5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:802a10a6-1300-4206-85e7-2303b97d5ba4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:dd76cfbc-d8cc-4b22-bdae-3cd6210c78ac", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1ecebe1e-6a93-4d50-93d1-2ab751c42b57", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:2f4ad2ce-432b-461a-a344-f87fd9e8bb55", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2f4ad2ce-432b-461a-a344-f87fd9e8bb55", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-647956012284176082498611", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2f4ad2ce-432b-461a-a344-f87fd9e8bb55", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-647956012284176082498611", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2f4ad2ce-432b-461a-a344-f87fd9e8bb55", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-05-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e855cd61-462e-4d09-bac6-dac4ac812ba1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e855cd61-462e-4d09-bac6-dac4ac812ba1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-365416146919366105019141", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e855cd61-462e-4d09-bac6-dac4ac812ba1", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-365416146919366105019141", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e855cd61-462e-4d09-bac6-dac4ac812ba1", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-09-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9e3582f1-9373-4fa9-a65b-23880c3fed8f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9e3582f1-9373-4fa9-a65b-23880c3fed8f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-917422183556967406098957", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9e3582f1-9373-4fa9-a65b-23880c3fed8f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-917422183556967406098957", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9e3582f1-9373-4fa9-a65b-23880c3fed8f", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-04-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d99211ab-37b5-4ccc-a9d5-1f9bc0b25886", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d99211ab-37b5-4ccc-a9d5-1f9bc0b25886", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-217014747594941486046110", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d99211ab-37b5-4ccc-a9d5-1f9bc0b25886", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-217014747594941486046110", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d99211ab-37b5-4ccc-a9d5-1f9bc0b25886", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-04-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-28", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:50028026-fb8d-4335-9f92-da6629582dd3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:50028026-fb8d-4335-9f92-da6629582dd3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-615228801753106110637362", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:50028026-fb8d-4335-9f92-da6629582dd3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-615228801753106110637362", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:50028026-fb8d-4335-9f92-da6629582dd3", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-04-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f4a81aa9-bc82-47f4-bfce-1729c8af5a88", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f4a81aa9-bc82-47f4-bfce-1729c8af5a88", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-095523281463499941091483", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f4a81aa9-bc82-47f4-bfce-1729c8af5a88", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-095523281463499941091483", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f4a81aa9-bc82-47f4-bfce-1729c8af5a88", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-01-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4bf1197c-594d-44ac-869d-8443e6ecfcc5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4bf1197c-594d-44ac-869d-8443e6ecfcc5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-208508545643792877106906", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4bf1197c-594d-44ac-869d-8443e6ecfcc5", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-208508545643792877106906", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4bf1197c-594d-44ac-869d-8443e6ecfcc5", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-03-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:802a10a6-1300-4206-85e7-2303b97d5ba4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:802a10a6-1300-4206-85e7-2303b97d5ba4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-219075915111166163303319", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:802a10a6-1300-4206-85e7-2303b97d5ba4", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-219075915111166163303319", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:802a10a6-1300-4206-85e7-2303b97d5ba4", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-12-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:dd76cfbc-d8cc-4b22-bdae-3cd6210c78ac", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:dd76cfbc-d8cc-4b22-bdae-3cd6210c78ac", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-154150235290576676820810", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:dd76cfbc-d8cc-4b22-bdae-3cd6210c78ac", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-154150235290576676820810", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:dd76cfbc-d8cc-4b22-bdae-3cd6210c78ac", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-01-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1ecebe1e-6a93-4d50-93d1-2ab751c42b57", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ecebe1e-6a93-4d50-93d1-2ab751c42b57", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-717827008880942033613979", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1ecebe1e-6a93-4d50-93d1-2ab751c42b57", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-717827008880942033613979", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ecebe1e-6a93-4d50-93d1-2ab751c42b57", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-10-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Van", - "catenaXId" : "urn:uuid:cad1c00f-3eaf-4e2f-a794-ab4a4f791c09", - "engine" : { - "size" : 2998, - "power" : 152 - }, - "emptyWeight" : 1.79, - "fuel" : "Benzin/Flüssiggas", - "vehicleModel" : "Vehicle Hybrid", - "productionDateGMT" : "2010-01-01", - "equipmentVariants" : [ { - "code" : "A248B", - "description" : "steering wheel heating", - "group" : "special equipment" - }, { - "code" : "S2AVB", - "description" : "adaptive drive", - "group" : "special equipment" - }, { - "code" : "S218A", - "description" : "sport automatic transmission", - "group" : "special equipment" - }, { - "code" : "A01CR", - "description" : "remote engine start", - "group" : "special equipment" - } ], - "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", - "mileage" : [ { - "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2020-06-20", - "mileageDistance" : 120000 - } ] - } ], - "catenaXId" : "urn:uuid:cad1c00f-3eaf-4e2f-a794-ab4a4f791c09", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "FZ-83", - "key" : "manufacturerPartId" - }, { - "value" : "OMAIQPVYVMJASTYXG", - "key" : "partInstanceId" - }, { - "value" : "OMAIQPVYVMJASTYXG", - "key" : "van" - } ], - "manufacturingInformation" : { - "date" : "2012-12-21T05:15:14.000Z", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cad1c00f-3eaf-4e2f-a794-ab4a4f791c09", - "partTypeInformation" : { - "manufacturerPartId" : "FZ-83", - "classification" : "product", - "nameAtManufacturer" : "Vehicle Hybrid" - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Iron", - "recycledContent" : 4, - "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" : 48, - "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" : 64, - "materialClass" : "0.7", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 109.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "W123" - }, { - "materialName" : "Glue", - "recycledContent" : 44, - "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" : 74, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 250.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Rubber", - "recycledContent" : 14, - "materialClass" : "5.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 7.8 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "R22" - }, { - "materialName" : "Textiles", - "recycledContent" : 45, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 5.12 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "TEX1" - } ] - } ], - "urn:bamm:io.catenax.certificate_of_destruction:1.0.1#CertificateOfDestruction" : [ { - "catenaXId" : "urn:uuid:cad1c00f-3eaf-4e2f-a794-ab4a4f791c09", - "dismantlerProperties" : { - "expiryDate" : "2023-03-14", - "governmentAddress" : { - "zip" : "68161/12", - "country" : "UR", - "street" : "Bernstraße", - "houseNumber" : "45", - "name" : "VLhpfQGTMDYpsBZxvfBoeygjb", - "location" : "Mannheim" - }, - "dismantlerAuditorContact" : { - "phone" : "+908 0984", - "fax" : "2118145186333995599 4455362573 92903453" - }, - "receiverAuditorAddress" : { - "zip" : "68161/12", - "country" : "AR", - "street" : "Bernstraße", - "houseNumber" : "45", - "name" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", - "location" : "Mannheim" - }, - "dismantlerContact" : { - "phone" : " 0437170 59659481408170668550001606181190496817797071900 16680 7 6926221384 05844893247741871 583", - "fax" : "29 013 2258035667 5403" - }, - "dismantlerAuditorAddress" : { - "zip" : "68161/12", - "country" : "GI", - "street" : "Bernstraße", - "houseNumber" : "45", - "name" : "dpHYZGhtgdntugzvvKAXLhM", - "location" : "Mannheim" - }, - "dismantlerAddress" : { - "zip" : "68161/12", - "country" : "KQ", - "street" : "Bernstraße", - "houseNumber" : "45", - "name" : "RYtGKbgicZaHCBRQDSx", - "location" : "Mannheim" - }, - "issueDate" : "2023-03-14", - "isVehicleWithdrawnFromService" : false - }, - "serialNumber" : "LRP1087432", - "companyNumber" : "S30A00065", - "vehicleProperties" : { - "licenseAbbreviation" : "HAL", - "isVehicleInformationComplete" : false, - "licensePlate" : "HAL-UI123", - "identification" : "WBAAY711X0KC28153", - "emptyWeight" : -17, - "model" : "318 I", - "brand" : "BMW", - "class" : "01", - "firstRegistration" : "19.12.2014" - }, - "returnPointProperties" : { - "expiryDate" : "2023-03-14", - "receiverAddress" : { - "zip" : "68161/12", - "country" : "RV", - "street" : "Bernstraße", - "houseNumber" : "45", - "name" : "JxkyvRnL", - "location" : "Mannheim" - }, - "receiverAuditorAddress" : { - "zip" : "68161/12", - "country" : "ZE", - "street" : "Bernstraße", - "houseNumber" : "45", - "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", - "location" : "Mannheim" - }, - "receiverAuditorContact" : { - "phone" : "331526303180940 34307479 92660 38225647 520855838909 01 8 72520515310573752386", - "fax" : "60298704457507 9 8577 76" - }, - "receiverContact" : { - "phone" : "+5585 6 2026 20021538 2747306418525503392771787 089739266209007778 279967117", - "fax" : "4270096015 4309445925080622016597027979396859783 08514571099764 9" - }, - "issueDate" : "2023-03-14", - "isVehicleWithdrawnFromService" : true - }, - "vehicleOwnerProperties" : { - "isVehicleOwnerInformationComplete" : true, - "vehicleOwnerAddress" : { - "zip" : "68161/12", - "country" : "DI", - "street" : "Bernstraße", - "houseNumber" : "45", - "name" : "eOMtThyhVNLWUZNRcBaQKxI", - "location" : "Mannheim" - }, - "citizenship" : "DE" - }, - "dismantlingDate" : "2023-03-14" - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cad1c00f-3eaf-4e2f-a794-ab4a4f791c09", - "childItems" : [ { - "catenaXId" : "urn:uuid:37f8dd16-e46a-4da6-a5f7-e3b1207b5c67", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:58abeda6-c862-4ff3-a96f-d7713f306357", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6692aa18-f008-4b66-a7b8-c67cae22712c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b66328b6-3bc2-4d4a-a5f4-bae2ecf0b27f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d4e71929-2a4e-408c-97cd-d6a197b64dae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:db105319-7a7c-4d03-8411-b5599cf978cf", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:310dcd1d-0e74-4c7e-8325-b69b73fab815", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:28f7eb5e-29ec-442b-92f5-7695215c92a6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c9c6ba58-461a-4e48-b566-a386c76dd401", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c094e2e2-fad2-4797-962a-4cb66c5413bd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f5f7b55e-8849-44c5-b69e-522f6eab64c0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:36330b9f-088e-42f6-9a3a-da954cbc7066", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7da6280c-e54f-4174-9c9c-c6715bb6de46", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7ccc65f8-1923-411d-a2cb-971a5228c6ab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a3ebe5d7-a9af-4639-b9c5-31b8d8cdf7e6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a9600acc-4027-40b1-a836-f7964f54e5ba", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2316af9f-c89f-4bd6-b41c-8418dfb05956", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6377c19e-fb9a-4d0d-ad5b-c3a116d82166", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2bf0d311-69aa-4a01-8aed-425f1f45101e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:bb3b1819-f38e-4b58-acc7-933ecff961d5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:62a77e8e-4083-40e1-bc78-39fc98a4c3be", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:575e83de-7136-47ad-a7a6-f7fcb7bb6306", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6143592c-cbc9-4844-8334-09e8c6ede2cd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1c287955-2590-493d-ad65-85df03e4c537", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f1682712-a059-4faa-9641-d0adba4010ce", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:40863d7c-e844-423b-888e-9186552ca411", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b82d3f04-f880-4a4e-bf79-2fda1e748478", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e09816a9-c9b7-482a-bcec-a5a395d826f0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:72e58480-989e-43dd-959b-304f5ab03814", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ef1ed838-8466-4d9f-b298-be2ed66a06cd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6a34deb9-33f8-45eb-94cd-3af66fa5b81f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2196ecdc-6970-45e8-9d29-b9d3fed8c9cb", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6431e434-f2ca-48dc-9b96-3356754f2fc9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B2OM", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c0e12fe4-c506-46a8-a0c6-f5df6cb689b0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B5MJ", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:091c6059-e0d0-4e96-a62c-a33a6a55dc01", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:37f8dd16-e46a-4da6-a5f7-e3b1207b5c67", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:37f8dd16-e46a-4da6-a5f7-e3b1207b5c67", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "10030939-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-250669967205868662791705", - "key" : "partInstanceId" - }, { - "value" : "Company 7", - "key" : "company" - }, { - "value" : "Brand 7", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:37f8dd16-e46a-4da6-a5f7-e3b1207b5c67", - "partTypeInformation" : { - "manufacturerPartId" : "10030939-59", - "customerPartId" : "10030939-59", - "classification" : "component", - "nameAtManufacturer" : "Engine", - "nameAtCustomer" : "Engine" - } - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 560, - "width" : 762, - "length" : 843, - "weight" : 180, - "height" : 711 - } - } ] - }, { - "catenaXId" : "urn:uuid:58abeda6-c862-4ff3-a96f-d7713f306357", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:58abeda6-c862-4ff3-a96f-d7713f306357", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "32494586-73", - "key" : "manufacturerPartId" - }, { - "value" : "NO-929918390555704208453545", - "key" : "partInstanceId" - }, { - "value" : "Company 8", - "key" : "company" - }, { - "value" : "Brand 8", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:58abeda6-c862-4ff3-a96f-d7713f306357", - "partTypeInformation" : { - "manufacturerPartId" : "32494586-73", - "customerPartId" : "32494586-73", - "classification" : "component", - "nameAtManufacturer" : "Differential Gear", - "nameAtCustomer" : "Differential Gear" - } - } ] - }, { - "catenaXId" : "urn:uuid:6692aa18-f008-4b66-a7b8-c67cae22712c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6692aa18-f008-4b66-a7b8-c67cae22712c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "67034319-44", - "key" : "manufacturerPartId" - }, { - "value" : "NO-358876240866703158292153", - "key" : "partInstanceId" - }, { - "value" : "Company 9", - "key" : "company" - }, { - "value" : "Brand 9", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6692aa18-f008-4b66-a7b8-c67cae22712c", - "partTypeInformation" : { - "manufacturerPartId" : "67034319-44", - "customerPartId" : "67034319-44", - "classification" : "component", - "nameAtManufacturer" : "Turbocharger", - "nameAtCustomer" : "Turbocharger" - } - } ] - }, { - "catenaXId" : "urn:uuid:b66328b6-3bc2-4d4a-a5f4-bae2ecf0b27f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b66328b6-3bc2-4d4a-a5f4-bae2ecf0b27f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "73849201-61", - "key" : "manufacturerPartId" - }, { - "value" : "NO-708807422614811119789141", - "key" : "partInstanceId" - }, { - "value" : "Company 10", - "key" : "company" - }, { - "value" : "Brand 10", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b66328b6-3bc2-4d4a-a5f4-bae2ecf0b27f", - "partTypeInformation" : { - "manufacturerPartId" : "73849201-61", - "customerPartId" : "73849201-61", - "classification" : "component", - "nameAtManufacturer" : "Catalysator", - "nameAtCustomer" : "Catalysator" - } - } ] - }, { - "catenaXId" : "urn:uuid:d4e71929-2a4e-408c-97cd-d6a197b64dae", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d4e71929-2a4e-408c-97cd-d6a197b64dae", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "22782277-50", - "key" : "manufacturerPartId" - }, { - "value" : "NO-548152225627952651741184", - "key" : "partInstanceId" - }, { - "value" : "Company 3", - "key" : "company" - }, { - "value" : "Brand 3", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d4e71929-2a4e-408c-97cd-d6a197b64dae", - "partTypeInformation" : { - "manufacturerPartId" : "22782277-50", - "customerPartId" : "22782277-50", - "classification" : "component", - "nameAtManufacturer" : "Door f-l", - "nameAtCustomer" : "Door front-left" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d4e71929-2a4e-408c-97cd-d6a197b64dae", - "childItems" : [ { - "catenaXId" : "urn:uuid:478fc95f-ab39-4259-8ccc-3d2c83a2de42", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:478fc95f-ab39-4259-8ccc-3d2c83a2de42", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:478fc95f-ab39-4259-8ccc-3d2c83a2de42", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-597607952460998744289291", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:478fc95f-ab39-4259-8ccc-3d2c83a2de42", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "79430134XVF", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:478fc95f-ab39-4259-8ccc-3d2c83a2de42", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:db105319-7a7c-4d03-8411-b5599cf978cf", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:db105319-7a7c-4d03-8411-b5599cf978cf", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "95657362-64", - "key" : "manufacturerPartId" - }, { - "value" : "NO-311001225809671534036657", - "key" : "partInstanceId" - }, { - "value" : "Company 4", - "key" : "company" - }, { - "value" : "Brand 4", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:db105319-7a7c-4d03-8411-b5599cf978cf", - "partTypeInformation" : { - "manufacturerPartId" : "33740332-54", - "customerPartId" : "33740332-54", - "classification" : "component", - "nameAtManufacturer" : "Door f-r", - "nameAtCustomer" : "Door front-right" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:db105319-7a7c-4d03-8411-b5599cf978cf", - "childItems" : [ { - "catenaXId" : "urn:uuid:1b22d6db-f87c-49db-99fd-319c2c569a8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:1b22d6db-f87c-49db-99fd-319c2c569a8c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1b22d6db-f87c-49db-99fd-319c2c569a8c", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-549537330777980234566019", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1b22d6db-f87c-49db-99fd-319c2c569a8c", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "12071570OAX", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:1b22d6db-f87c-49db-99fd-319c2c569a8c", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:310dcd1d-0e74-4c7e-8325-b69b73fab815", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:310dcd1d-0e74-4c7e-8325-b69b73fab815", - "customers" : [ { - "businessPartner" : false, - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "15635759-16", - "key" : "manufacturerPartId" - }, { - "value" : "NO-226947554132569006155450", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:310dcd1d-0e74-4c7e-8325-b69b73fab815", - "partTypeInformation" : { - "manufacturerPartId" : "15635759-16", - "customerPartId" : "15635759-16", - "classification" : "component", - "nameAtManufacturer" : "Door r-l", - "nameAtCustomer" : "Door rear-left" - } - } ] - }, { - "catenaXId" : "urn:uuid:28f7eb5e-29ec-442b-92f5-7695215c92a6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:28f7eb5e-29ec-442b-92f5-7695215c92a6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "28673126-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-364076294729785598301420", - "key" : "partInstanceId" - }, { - "value" : "Company 5", - "key" : "company" - }, { - "value" : "Brand 5", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:28f7eb5e-29ec-442b-92f5-7695215c92a6", - "partTypeInformation" : { - "manufacturerPartId" : "28673126-98", - "customerPartId" : "28673126-98", - "classification" : "component", - "nameAtManufacturer" : "Door r-r", - "nameAtCustomer" : "Door rear-right" - } - } ] - }, { - "catenaXId" : "urn:uuid:c9c6ba58-461a-4e48-b566-a386c76dd401", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c9c6ba58-461a-4e48-b566-a386c76dd401", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "94421589-82", - "key" : "manufacturerPartId" - }, { - "value" : "NO-663416666657765538257599", - "key" : "partInstanceId" - }, { - "value" : "Company 6", - "key" : "company" - }, { - "value" : "Brand 6", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c9c6ba58-461a-4e48-b566-a386c76dd401", - "partTypeInformation" : { - "manufacturerPartId" : "94421589-82", - "customerPartId" : "94421589-82", - "classification" : "component", - "nameAtManufacturer" : "Engine hood", - "nameAtCustomer" : "Engine hood" - } - } ] - }, { - "catenaXId" : "urn:uuid:c094e2e2-fad2-4797-962a-4cb66c5413bd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c094e2e2-fad2-4797-962a-4cb66c5413bd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "85023955-75", - "key" : "manufacturerPartId" - }, { - "value" : "NO-726016386978577428840751", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c094e2e2-fad2-4797-962a-4cb66c5413bd", - "partTypeInformation" : { - "manufacturerPartId" : "85023955-75", - "customerPartId" : "85023955-75", - "classification" : "component", - "nameAtManufacturer" : "Tailgate", - "nameAtCustomer" : "Tailgate" - } - } ] - }, { - "catenaXId" : "urn:uuid:f5f7b55e-8849-44c5-b69e-522f6eab64c0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f5f7b55e-8849-44c5-b69e-522f6eab64c0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "13769860-47", - "key" : "manufacturerPartId" - }, { - "value" : "NO-580842161986567691513978", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f5f7b55e-8849-44c5-b69e-522f6eab64c0", - "partTypeInformation" : { - "manufacturerPartId" : "13769860-47", - "customerPartId" : "13769860-47", - "classification" : "component", - "nameAtManufacturer" : "Fender left", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:36330b9f-088e-42f6-9a3a-da954cbc7066", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:36330b9f-088e-42f6-9a3a-da954cbc7066", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "36643162-35", - "key" : "manufacturerPartId" - }, { - "value" : "NO-213558887127330755907950", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:36330b9f-088e-42f6-9a3a-da954cbc7066", - "partTypeInformation" : { - "manufacturerPartId" : "36643162-35", - "customerPartId" : "36643162-35", - "classification" : "component", - "nameAtManufacturer" : "Fender right", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:7da6280c-e54f-4174-9c9c-c6715bb6de46", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7da6280c-e54f-4174-9c9c-c6715bb6de46", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "54165444-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-817264472976751262239738", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7da6280c-e54f-4174-9c9c-c6715bb6de46", - "partTypeInformation" : { - "manufacturerPartId" : "54165444-59", - "customerPartId" : "54165444-59", - "classification" : "component", - "nameAtManufacturer" : "Bumper front", - "nameAtCustomer" : "Bumper front" - } - } ] - }, { - "catenaXId" : "urn:uuid:7ccc65f8-1923-411d-a2cb-971a5228c6ab", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7ccc65f8-1923-411d-a2cb-971a5228c6ab", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "22768257-25", - "key" : "manufacturerPartId" - }, { - "value" : "NO-163080487855757181850927", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7ccc65f8-1923-411d-a2cb-971a5228c6ab", - "partTypeInformation" : { - "manufacturerPartId" : "22768257-25", - "customerPartId" : "22768257-25", - "classification" : "component", - "nameAtManufacturer" : "Bumper rear", - "nameAtCustomer" : "Bumper rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:a3ebe5d7-a9af-4639-b9c5-31b8d8cdf7e6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a3ebe5d7-a9af-4639-b9c5-31b8d8cdf7e6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "65529521-37", - "key" : "manufacturerPartId" - }, { - "value" : "NO-258748322609153665117442", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a3ebe5d7-a9af-4639-b9c5-31b8d8cdf7e6", - "partTypeInformation" : { - "manufacturerPartId" : "65529521-37", - "customerPartId" : "65529521-37", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror left", - "nameAtCustomer" : "Exterior mirror left" - } - } ] - }, { - "catenaXId" : "urn:uuid:a9600acc-4027-40b1-a836-f7964f54e5ba", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a9600acc-4027-40b1-a836-f7964f54e5ba", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "58471477-24", - "key" : "manufacturerPartId" - }, { - "value" : "NO-730897821357825286406550", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a9600acc-4027-40b1-a836-f7964f54e5ba", - "partTypeInformation" : { - "manufacturerPartId" : "58471477-24", - "customerPartId" : "58471477-24", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror right", - "nameAtCustomer" : "Exterior mirror right" - } - } ] - }, { - "catenaXId" : "urn:uuid:2316af9f-c89f-4bd6-b41c-8418dfb05956", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2316af9f-c89f-4bd6-b41c-8418dfb05956", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "09002013-68", - "key" : "manufacturerPartId" - }, { - "value" : "NO-168983068333433746061878", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2316af9f-c89f-4bd6-b41c-8418dfb05956", - "partTypeInformation" : { - "manufacturerPartId" : "09002013-68", - "customerPartId" : "09002013-68", - "classification" : "component", - "nameAtManufacturer" : "Trailer coupling", - "nameAtCustomer" : "Tailer coupling" - } - } ] - }, { - "catenaXId" : "urn:uuid:6377c19e-fb9a-4d0d-ad5b-c3a116d82166", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6377c19e-fb9a-4d0d-ad5b-c3a116d82166", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "43501996-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-165991715998602014492403", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6377c19e-fb9a-4d0d-ad5b-c3a116d82166", - "partTypeInformation" : { - "manufacturerPartId" : "43501996-98", - "customerPartId" : "43501996-98", - "classification" : "component", - "nameAtManufacturer" : "Dashboard", - "nameAtCustomer" : "Dashboard" - } - } ] - }, { - "catenaXId" : "urn:uuid:2bf0d311-69aa-4a01-8aed-425f1f45101e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2bf0d311-69aa-4a01-8aed-425f1f45101e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "77795937-13", - "key" : "manufacturerPartId" - }, { - "value" : "NO-743373552224812792408496", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2bf0d311-69aa-4a01-8aed-425f1f45101e", - "partTypeInformation" : { - "manufacturerPartId" : "77795937-13", - "customerPartId" : "77795937-13", - "classification" : "component", - "nameAtManufacturer" : "Steering wheel", - "nameAtCustomer" : "Steering wheel" - } - } ] - }, { - "catenaXId" : "urn:uuid:bb3b1819-f38e-4b58-acc7-933ecff961d5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bb3b1819-f38e-4b58-acc7-933ecff961d5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "20125432-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-633523205639680121669046", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:bb3b1819-f38e-4b58-acc7-933ecff961d5", - "partTypeInformation" : { - "manufacturerPartId" : "20125432-59", - "customerPartId" : "20125432-59", - "classification" : "component", - "nameAtManufacturer" : "Indicator left", - "nameAtCustomer" : "Indicator left" - } - } ] - }, { - "catenaXId" : "urn:uuid:62a77e8e-4083-40e1-bc78-39fc98a4c3be", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:62a77e8e-4083-40e1-bc78-39fc98a4c3be", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "19073706-76", - "key" : "manufacturerPartId" - }, { - "value" : "NO-126050334305424266673125", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:62a77e8e-4083-40e1-bc78-39fc98a4c3be", - "partTypeInformation" : { - "manufacturerPartId" : "19073706-76", - "customerPartId" : "19073706-76", - "classification" : "component", - "nameAtManufacturer" : "Indicator right", - "nameAtCustomer" : "Indicator right" - } - } ] - }, { - "catenaXId" : "urn:uuid:575e83de-7136-47ad-a7a6-f7fcb7bb6306", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:575e83de-7136-47ad-a7a6-f7fcb7bb6306", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "45415162-57", - "key" : "manufacturerPartId" - }, { - "value" : "NO-767927049316674615393271", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:575e83de-7136-47ad-a7a6-f7fcb7bb6306", - "partTypeInformation" : { - "manufacturerPartId" : "45415162-57", - "customerPartId" : "45415162-57", - "classification" : "component", - "nameAtManufacturer" : "Led headlight", - "nameAtCustomer" : "Led headlight" - } - } ] - }, { - "catenaXId" : "urn:uuid:6143592c-cbc9-4844-8334-09e8c6ede2cd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6143592c-cbc9-4844-8334-09e8c6ede2cd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "78141846-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-242611945368482599569170", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6143592c-cbc9-4844-8334-09e8c6ede2cd", - "partTypeInformation" : { - "manufacturerPartId" : "78141846-87", - "customerPartId" : "78141846-87", - "classification" : "component", - "nameAtManufacturer" : "Starter motor", - "nameAtCustomer" : "Starter motor" - } - } ] - }, { - "catenaXId" : "urn:uuid:1c287955-2590-493d-ad65-85df03e4c537", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c287955-2590-493d-ad65-85df03e4c537", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "81324139-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-364812406688072153209014", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1c287955-2590-493d-ad65-85df03e4c537", - "partTypeInformation" : { - "manufacturerPartId" : "81324139-23", - "customerPartId" : "81324139-23", - "classification" : "component", - "nameAtManufacturer" : "Alternator", - "nameAtCustomer" : "Alternator" - } - } ] - }, { - "catenaXId" : "urn:uuid:f1682712-a059-4faa-9641-d0adba4010ce", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f1682712-a059-4faa-9641-d0adba4010ce", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "57929013-09", - "key" : "manufacturerPartId" - }, { - "value" : "NO-039089769564020905048514", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f1682712-a059-4faa-9641-d0adba4010ce", - "partTypeInformation" : { - "manufacturerPartId" : "57929013-09", - "customerPartId" : "57929013-09", - "classification" : "component", - "nameAtManufacturer" : "AC compressor", - "nameAtCustomer" : "Air conditioning compressor" - } - } ] - }, { - "catenaXId" : "urn:uuid:40863d7c-e844-423b-888e-9186552ca411", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:40863d7c-e844-423b-888e-9186552ca411", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "61184040-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-717984135551063020123107", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:40863d7c-e844-423b-888e-9186552ca411", - "partTypeInformation" : { - "manufacturerPartId" : "61184040-23", - "customerPartId" : "61184040-23", - "classification" : "component", - "nameAtManufacturer" : "Taillight rear", - "nameAtCustomer" : "Taillight rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:b82d3f04-f880-4a4e-bf79-2fda1e748478", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b82d3f04-f880-4a4e-bf79-2fda1e748478", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "78744126-74", - "key" : "manufacturerPartId" - }, { - "value" : "NO-773714345668409223099181", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b82d3f04-f880-4a4e-bf79-2fda1e748478", - "partTypeInformation" : { - "manufacturerPartId" : "78744126-74", - "customerPartId" : "78744126-74", - "classification" : "component", - "nameAtManufacturer" : "Taillight front", - "nameAtCustomer" : "Taillight front" - } - } ] - }, { - "catenaXId" : "urn:uuid:e09816a9-c9b7-482a-bcec-a5a395d826f0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e09816a9-c9b7-482a-bcec-a5a395d826f0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "12093297-03", - "key" : "manufacturerPartId" - }, { - "value" : "NO-052914108811971534593519", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e09816a9-c9b7-482a-bcec-a5a395d826f0", - "partTypeInformation" : { - "manufacturerPartId" : "12093297-03", - "customerPartId" : "12093297-03", - "classification" : "component", - "nameAtManufacturer" : "Axle part front", - "nameAtCustomer" : "Axle part front" - } - } ] - }, { - "catenaXId" : "urn:uuid:72e58480-989e-43dd-959b-304f5ab03814", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:72e58480-989e-43dd-959b-304f5ab03814", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "88111709-49", - "key" : "manufacturerPartId" - }, { - "value" : "NO-558264299905560873804183", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:72e58480-989e-43dd-959b-304f5ab03814", - "partTypeInformation" : { - "manufacturerPartId" : "88111709-49", - "customerPartId" : "88111709-49", - "classification" : "component", - "nameAtManufacturer" : "Axle part rear", - "nameAtCustomer" : "Axle part rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:ef1ed838-8466-4d9f-b298-be2ed66a06cd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ef1ed838-8466-4d9f-b298-be2ed66a06cd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "00871379-44", - "key" : "manufacturerPartId" - }, { - "value" : "NO-750260089299095841335422", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ef1ed838-8466-4d9f-b298-be2ed66a06cd", - "partTypeInformation" : { - "manufacturerPartId" : "00871379-44", - "customerPartId" : "00871379-44", - "classification" : "component", - "nameAtManufacturer" : "Chassis", - "nameAtCustomer" : "Chassis" - } - } ] - }, { - "catenaXId" : "urn:uuid:6a34deb9-33f8-45eb-94cd-3af66fa5b81f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6a34deb9-33f8-45eb-94cd-3af66fa5b81f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "08901347-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-242590684365784195777048", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6a34deb9-33f8-45eb-94cd-3af66fa5b81f", - "partTypeInformation" : { - "manufacturerPartId" : "08901347-87", - "customerPartId" : "08901347-87", - "classification" : "component", - "nameAtManufacturer" : "Rims", - "nameAtCustomer" : "Rims" - } - } ] - }, { - "catenaXId" : "urn:uuid:2196ecdc-6970-45e8-9d29-b9d3fed8c9cb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2196ecdc-6970-45e8-9d29-b9d3fed8c9cb", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "45863316-60", - "key" : "manufacturerPartId" - }, { - "value" : "NO-314716527418883298787949", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2196ecdc-6970-45e8-9d29-b9d3fed8c9cb", - "partTypeInformation" : { - "manufacturerPartId" : "45863316-60", - "customerPartId" : "45863316-60", - "classification" : "component", - "nameAtManufacturer" : "Tires", - "nameAtCustomer" : "Tires" - } - } ] - }, { - "catenaXId" : "urn:uuid:6431e434-f2ca-48dc-9b96-3356754f2fc9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6431e434-f2ca-48dc-9b96-3356754f2fc9", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B2OM", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B2OM", - "key" : "manufacturerId" - }, { - "value" : "1O222E8-43", - "key" : "manufacturerPartId" - }, { - "value" : "NO-378449724827886855586242", - "key" : "partInstanceId" - }, { - "value" : "Company 2", - "key" : "company" - }, { - "value" : "Brand 2", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6431e434-f2ca-48dc-9b96-3356754f2fc9", - "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:6431e434-f2ca-48dc-9b96-3356754f2fc9", - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-378449724827886855586242", - "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.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "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" : 84, - "materialClass" : "9.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 6.9 - }, - "aggregateState" : "liquid", - "materialAbbreviation" : "SAE40" - }, { - "materialName" : "Copper", - "recycledContent" : 32, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6431e434-f2ca-48dc-9b96-3356754f2fc9", - "childItems" : [ { - "catenaXId" : "urn:uuid:b3e6c82e-fbbd-47e6-b560-d87724604f1a", - "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c54573b0-a68b-4b11-9729-7520c1db8219", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:fe854c5f-270d-465c-b4c6-9e02f53afd23", - "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:b3e6c82e-fbbd-47e6-b560-d87724604f1a", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:b3e6c82e-fbbd-47e6-b560-d87724604f1a", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3e6c82e-fbbd-47e6-b560-d87724604f1a", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B0Q0", - "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" : 5, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 30 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:c54573b0-a68b-4b11-9729-7520c1db8219", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c54573b0-a68b-4b11-9729-7520c1db8219", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "18048M0-43", - "key" : "manufacturerPartId" - }, { - "value" : "NO-197008854477365031738589", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c54573b0-a68b-4b11-9729-7520c1db8219", - "partTypeInformation" : { - "manufacturerPartId" : "18048M0-43", - "customerPartId" : "18048M0-43", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c54573b0-a68b-4b11-9729-7520c1db8219", - "childItems" : [ { - "catenaXId" : "urn:uuid:a28a6845-5ea8-4e4e-8ed3-2ebdf456a9c6", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:a28a6845-5ea8-4e4e-8ed3-2ebdf456a9c6", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:a28a6845-5ea8-4e4e-8ed3-2ebdf456a9c6", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "NTIER Product" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "NTIER Product", - "materialClass" : "5.5", - "component" : [ { - "materialName" : "Aluminium oxide", - "recycledContent" : 7, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 60 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - }, { - "materialName" : "Other", - "recycledContent" : 8, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:percent", - "value" : 40 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:fe854c5f-270d-465c-b4c6-9e02f53afd23", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:fe854c5f-270d-465c-b4c6-9e02f53afd23", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fe854c5f-270d-465c-b4c6-9e02f53afd23", - "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.2341", - "materialAbbreviation" : "GL338" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fe854c5f-270d-465c-b4c6-9e02f53afd23", - "childItems" : [ ] - } ] - }, { - "catenaXId" : "urn:uuid:c0e12fe4-c506-46a8-a0c6-f5df6cb689b0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c0e12fe4-c506-46a8-a0c6-f5df6cb689b0", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B5MJ", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", - "key" : "manufacturerId" - }, { - "value" : "65442W2-14", - "key" : "manufacturerPartId" - }, { - "value" : "NO-647165214859326280280692", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c0e12fe4-c506-46a8-a0c6-f5df6cb689b0", - "partTypeInformation" : { - "manufacturerPartId" : "65442W2-14", - "customerPartId" : "65442W2-14", - "classification" : "component", - "nameAtManufacturer" : "ECU", - "nameAtCustomer" : "ECU" - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "recycledContent" : 28, - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.3301 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GL338" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c0e12fe4-c506-46a8-a0c6-f5df6cb689b0", - "childItems" : [ { - "catenaXId" : "urn:uuid:8087d0e3-fe6a-42ee-b946-d8a5d010f30e", - "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a24c3c14-89cc-4c3d-b5e9-118fe7f46e7b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:eec4f95c-7b3f-46f6-ad90-4eb6c53a5481", - "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:8087d0e3-fe6a-42ee-b946-d8a5d010f30e", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:8087d0e3-fe6a-42ee-b946-d8a5d010f30e", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8087d0e3-fe6a-42ee-b946-d8a5d010f30e", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Glue", - "materialClass" : "5.5", - "component" : [ { - "materialName" : "Aluminium oxide", - "recycledContent" : 72, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "AL7" - }, { - "materialName" : "Other", - "recycledContent" : 51, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:a24c3c14-89cc-4c3d-b5e9-118fe7f46e7b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a24c3c14-89cc-4c3d-b5e9-118fe7f46e7b", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "25167B7-61", - "key" : "manufacturerPartId" - }, { - "value" : "NO-664333074728044082712748", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a24c3c14-89cc-4c3d-b5e9-118fe7f46e7b", - "partTypeInformation" : { - "manufacturerPartId" : "25167B7-61", - "customerPartId" : "25167B7-61", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a24c3c14-89cc-4c3d-b5e9-118fe7f46e7b", - "childItems" : [ { - "catenaXId" : "urn:uuid:32b734b3-0363-4ddc-ad3f-0b051e9d76ea", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:32b734b3-0363-4ddc-ad3f-0b051e9d76ea", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:32b734b3-0363-4ddc-ad3f-0b051e9d76ea", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "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" : 70, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 30 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:eec4f95c-7b3f-46f6-ad90-4eb6c53a5481", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:eec4f95c-7b3f-46f6-ad90-4eb6c53a5481", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "35796M5-64", - "key" : "manufacturerPartId" - }, { - "value" : "NO-791384779860530422910838", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:eec4f95c-7b3f-46f6-ad90-4eb6c53a5481", - "partTypeInformation" : { - "manufacturerPartId" : "35796M5-64", - "customerPartId" : "35796M5-64", - "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" : 48, - "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" - } ], - "catenaXId" : "urn:uuid:091c6059-e0d0-4e96-a62c-a33a6a55dc01", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:091c6059-e0d0-4e96-a62c-a33a6a55dc01", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "38049661-08", - "key" : "manufacturerPartId" - }, { - "value" : "NO-002921238597948148123251", - "key" : "partInstanceId" - }, { - "value" : "Company 1", - "key" : "company" - }, { - "value" : "Brand 1", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:091c6059-e0d0-4e96-a62c-a33a6a55dc01", - "partTypeInformation" : { - "manufacturerPartId" : "38049661-08", - "customerPartId" : "38049661-08", - "classification" : "component", - "nameAtManufacturer" : "Battery", - "nameAtCustomer" : "Battery" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "pack" - } ], - "productType" : "pack" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-002921238597948148123251", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 5.4 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 38, - "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" : false, - "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" : "38049661-08", - "technicalSpecification" : [ { - "technicalValue" : "RYtGKbgicZaHCBRQDSx", - "key" : "JxkyvRnL" - } ], - "productLink" : "https://123", - "oeNumber" : "NO-002921238597948148123251", - "category" : { - "subCategory" : [ "Battery" ], - "mainCategory" : [ "Audio, video, navigation" ] - }, - "originalManufacturer" : "Company 1", - "brand" : "Brand 1", - "productDescription" : "Battery" - }, - "sku" : "1002090, xYz.09, ABcXYZ", - "mileage" : 120000.06 - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-002921238597948148123251", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:091c6059-e0d0-4e96-a62c-a33a6a55dc01", - "childItems" : [ { - "catenaXId" : "urn:uuid:581abaaa-2022-45d4-9720-1ee0c8d30d04", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:316e7baf-3000-4dc0-bb8d-0a5682dca191", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cf55e252-9729-4479-90c0-3110d79a271b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b3d80439-04f3-4561-906d-e307b93358d8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b2b31c45-1e93-401c-ae2e-0c4ada8ba93f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b3af59ae-c09c-4099-a5ed-460a167a3703", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:581abaaa-2022-45d4-9720-1ee0c8d30d04", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:581abaaa-2022-45d4-9720-1ee0c8d30d04", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-623313594613591149799879", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:581abaaa-2022-45d4-9720-1ee0c8d30d04", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-623313594613591149799879", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 1, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 67, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-623313594613591149799879", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:581abaaa-2022-45d4-9720-1ee0c8d30d04", - "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d40f8da4-5099-4d87-8c9c-bf869a353c8e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7b8c2547-f324-4f5a-8804-2d83cc6b7596", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4220e4c6-2c1b-4d6a-88b8-2172900da421", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7b3379a7-ced7-4942-b42e-e9ec0838458c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:38550f8b-f9b6-42db-bc63-795f5952a466", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:351d706c-c207-4d9a-9f89-a16f0565c9b3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d643b6e6-bc2d-43c1-b54c-ffd5e21aeafe", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1a1feb46-af31-433f-9af1-93cc16b60bc5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5e61f3d1-cf9b-44e9-aa9a-121ad16ceee7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7ae4b950-bf4d-4bcc-bb28-2117397615d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:d40f8da4-5099-4d87-8c9c-bf869a353c8e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d40f8da4-5099-4d87-8c9c-bf869a353c8e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-131779923796237535720961", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d40f8da4-5099-4d87-8c9c-bf869a353c8e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-131779923796237535720961", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d40f8da4-5099-4d87-8c9c-bf869a353c8e", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-07-30", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-06", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7b8c2547-f324-4f5a-8804-2d83cc6b7596", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7b8c2547-f324-4f5a-8804-2d83cc6b7596", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-145972492271907484957056", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7b8c2547-f324-4f5a-8804-2d83cc6b7596", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-145972492271907484957056", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7b8c2547-f324-4f5a-8804-2d83cc6b7596", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-02-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4220e4c6-2c1b-4d6a-88b8-2172900da421", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4220e4c6-2c1b-4d6a-88b8-2172900da421", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-369887382507084386223081", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4220e4c6-2c1b-4d6a-88b8-2172900da421", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-369887382507084386223081", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4220e4c6-2c1b-4d6a-88b8-2172900da421", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-08-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-06", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7b3379a7-ced7-4942-b42e-e9ec0838458c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7b3379a7-ced7-4942-b42e-e9ec0838458c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-908135831677988062861021", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7b3379a7-ced7-4942-b42e-e9ec0838458c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-908135831677988062861021", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7b3379a7-ced7-4942-b42e-e9ec0838458c", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-04-18", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:38550f8b-f9b6-42db-bc63-795f5952a466", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:38550f8b-f9b6-42db-bc63-795f5952a466", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-571969287432943369037824", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:38550f8b-f9b6-42db-bc63-795f5952a466", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-571969287432943369037824", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:38550f8b-f9b6-42db-bc63-795f5952a466", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-06-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-11", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:351d706c-c207-4d9a-9f89-a16f0565c9b3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:351d706c-c207-4d9a-9f89-a16f0565c9b3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-122613427370190846153909", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:351d706c-c207-4d9a-9f89-a16f0565c9b3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-122613427370190846153909", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:351d706c-c207-4d9a-9f89-a16f0565c9b3", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-06-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d643b6e6-bc2d-43c1-b54c-ffd5e21aeafe", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d643b6e6-bc2d-43c1-b54c-ffd5e21aeafe", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-940726109069642605468862", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d643b6e6-bc2d-43c1-b54c-ffd5e21aeafe", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-940726109069642605468862", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d643b6e6-bc2d-43c1-b54c-ffd5e21aeafe", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-06-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1a1feb46-af31-433f-9af1-93cc16b60bc5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1a1feb46-af31-433f-9af1-93cc16b60bc5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-143638704879926578559224", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1a1feb46-af31-433f-9af1-93cc16b60bc5", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-143638704879926578559224", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1a1feb46-af31-433f-9af1-93cc16b60bc5", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-04-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5e61f3d1-cf9b-44e9-aa9a-121ad16ceee7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5e61f3d1-cf9b-44e9-aa9a-121ad16ceee7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-582039335115696992211221", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5e61f3d1-cf9b-44e9-aa9a-121ad16ceee7", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-582039335115696992211221", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5e61f3d1-cf9b-44e9-aa9a-121ad16ceee7", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-12-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7ae4b950-bf4d-4bcc-bb28-2117397615d9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7ae4b950-bf4d-4bcc-bb28-2117397615d9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-483043075789955385994954", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7ae4b950-bf4d-4bcc-bb28-2117397615d9", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-483043075789955385994954", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7ae4b950-bf4d-4bcc-bb28-2117397615d9", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-08-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:316e7baf-3000-4dc0-bb8d-0a5682dca191", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:316e7baf-3000-4dc0-bb8d-0a5682dca191", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-563368148357716831384197", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:316e7baf-3000-4dc0-bb8d-0a5682dca191", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-563368148357716831384197", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 43, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 50, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-563368148357716831384197", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:316e7baf-3000-4dc0-bb8d-0a5682dca191", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2bc214fc-6505-40fa-901f-24cf0ced3ca2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:933146ec-d3b8-491a-95eb-96f258efdc96", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4a143248-ede2-45b0-8cfa-62f42ebca33b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0d766afb-1544-4231-8a76-365691afd9eb", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:31ed3eab-20c6-451e-9955-781217e8a874", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:620cc00f-3f70-427f-984b-5e21d2445169", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cb5ad772-4871-44a5-a3ca-3ae450407fa9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a1d42734-49e1-4acc-881b-f173d15e8397", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1aa7b92f-15ea-4ae3-95ef-8efdaeb2f8b7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:edee8c82-80b0-4eb5-abdc-82617ac410aa", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:2bc214fc-6505-40fa-901f-24cf0ced3ca2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2bc214fc-6505-40fa-901f-24cf0ced3ca2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-468811468201048689464841", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2bc214fc-6505-40fa-901f-24cf0ced3ca2", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-468811468201048689464841", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2bc214fc-6505-40fa-901f-24cf0ced3ca2", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-04-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:933146ec-d3b8-491a-95eb-96f258efdc96", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:933146ec-d3b8-491a-95eb-96f258efdc96", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-468557502423075438846164", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:933146ec-d3b8-491a-95eb-96f258efdc96", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-468557502423075438846164", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:933146ec-d3b8-491a-95eb-96f258efdc96", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-11-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4a143248-ede2-45b0-8cfa-62f42ebca33b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4a143248-ede2-45b0-8cfa-62f42ebca33b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-763703296133299736032709", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4a143248-ede2-45b0-8cfa-62f42ebca33b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-763703296133299736032709", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4a143248-ede2-45b0-8cfa-62f42ebca33b", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-06-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0d766afb-1544-4231-8a76-365691afd9eb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0d766afb-1544-4231-8a76-365691afd9eb", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-714080307054256449123919", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0d766afb-1544-4231-8a76-365691afd9eb", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-714080307054256449123919", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0d766afb-1544-4231-8a76-365691afd9eb", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-11-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-06", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:31ed3eab-20c6-451e-9955-781217e8a874", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:31ed3eab-20c6-451e-9955-781217e8a874", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-976955784913619985578786", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:31ed3eab-20c6-451e-9955-781217e8a874", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-976955784913619985578786", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:31ed3eab-20c6-451e-9955-781217e8a874", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-12-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:620cc00f-3f70-427f-984b-5e21d2445169", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:620cc00f-3f70-427f-984b-5e21d2445169", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-064092949058113110034284", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:620cc00f-3f70-427f-984b-5e21d2445169", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-064092949058113110034284", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:620cc00f-3f70-427f-984b-5e21d2445169", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-12-13", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:cb5ad772-4871-44a5-a3ca-3ae450407fa9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cb5ad772-4871-44a5-a3ca-3ae450407fa9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-332471803517715197545015", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cb5ad772-4871-44a5-a3ca-3ae450407fa9", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-332471803517715197545015", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cb5ad772-4871-44a5-a3ca-3ae450407fa9", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-11-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a1d42734-49e1-4acc-881b-f173d15e8397", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a1d42734-49e1-4acc-881b-f173d15e8397", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-031445047882715929093150", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a1d42734-49e1-4acc-881b-f173d15e8397", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-031445047882715929093150", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a1d42734-49e1-4acc-881b-f173d15e8397", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-11-09", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1aa7b92f-15ea-4ae3-95ef-8efdaeb2f8b7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1aa7b92f-15ea-4ae3-95ef-8efdaeb2f8b7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-473815590138084520558559", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1aa7b92f-15ea-4ae3-95ef-8efdaeb2f8b7", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-473815590138084520558559", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1aa7b92f-15ea-4ae3-95ef-8efdaeb2f8b7", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-12-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-31", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:edee8c82-80b0-4eb5-abdc-82617ac410aa", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:edee8c82-80b0-4eb5-abdc-82617ac410aa", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-346910295948556813220490", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:edee8c82-80b0-4eb5-abdc-82617ac410aa", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-346910295948556813220490", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:edee8c82-80b0-4eb5-abdc-82617ac410aa", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-10-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:cf55e252-9729-4479-90c0-3110d79a271b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cf55e252-9729-4479-90c0-3110d79a271b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-110510971529462845144409", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cf55e252-9729-4479-90c0-3110d79a271b", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-110510971529462845144409", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 7, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 67, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-110510971529462845144409", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cf55e252-9729-4479-90c0-3110d79a271b", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:69b13d60-ea5a-427e-9233-9ab2cd73717a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8ade6609-feeb-47f7-b8cc-3ce3f698f46c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:47643d02-3c96-45e4-acc9-592355409469", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:39397c0c-c5d6-4b05-8f37-66cbeea68a3c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:26628ee8-b8b4-44d0-9505-4cce91ac67dd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2ec40be5-3521-4970-b362-2b7fe447060e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9405e3a7-ce4e-4247-a765-604d90075ad4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:99995c7b-a6df-4107-b974-dac2c1152b49", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7f5ce93d-7a07-4a65-aded-183c27e61807", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:dff63814-702f-4bb9-9889-30ed64aa8e6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:69b13d60-ea5a-427e-9233-9ab2cd73717a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:69b13d60-ea5a-427e-9233-9ab2cd73717a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-593851106374001445110543", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:69b13d60-ea5a-427e-9233-9ab2cd73717a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-593851106374001445110543", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:69b13d60-ea5a-427e-9233-9ab2cd73717a", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-12-24", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8ade6609-feeb-47f7-b8cc-3ce3f698f46c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8ade6609-feeb-47f7-b8cc-3ce3f698f46c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-803294596058861034446307", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8ade6609-feeb-47f7-b8cc-3ce3f698f46c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-803294596058861034446307", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8ade6609-feeb-47f7-b8cc-3ce3f698f46c", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-04-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:47643d02-3c96-45e4-acc9-592355409469", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:47643d02-3c96-45e4-acc9-592355409469", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-464515671777472275710169", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:47643d02-3c96-45e4-acc9-592355409469", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-464515671777472275710169", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:47643d02-3c96-45e4-acc9-592355409469", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-04-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-11", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:39397c0c-c5d6-4b05-8f37-66cbeea68a3c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:39397c0c-c5d6-4b05-8f37-66cbeea68a3c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-668276295707438651277095", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:39397c0c-c5d6-4b05-8f37-66cbeea68a3c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-668276295707438651277095", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:39397c0c-c5d6-4b05-8f37-66cbeea68a3c", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-08-13", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-11", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:26628ee8-b8b4-44d0-9505-4cce91ac67dd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:26628ee8-b8b4-44d0-9505-4cce91ac67dd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-089286284196931915688035", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:26628ee8-b8b4-44d0-9505-4cce91ac67dd", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-089286284196931915688035", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:26628ee8-b8b4-44d0-9505-4cce91ac67dd", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-01-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2ec40be5-3521-4970-b362-2b7fe447060e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2ec40be5-3521-4970-b362-2b7fe447060e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-581874913849376887647017", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2ec40be5-3521-4970-b362-2b7fe447060e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-581874913849376887647017", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2ec40be5-3521-4970-b362-2b7fe447060e", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-08-30", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9405e3a7-ce4e-4247-a765-604d90075ad4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9405e3a7-ce4e-4247-a765-604d90075ad4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-263236512094520124197425", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9405e3a7-ce4e-4247-a765-604d90075ad4", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-263236512094520124197425", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9405e3a7-ce4e-4247-a765-604d90075ad4", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-06-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:99995c7b-a6df-4107-b974-dac2c1152b49", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:99995c7b-a6df-4107-b974-dac2c1152b49", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-156881685965335899578008", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:99995c7b-a6df-4107-b974-dac2c1152b49", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-156881685965335899578008", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:99995c7b-a6df-4107-b974-dac2c1152b49", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-11-18", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-23", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7f5ce93d-7a07-4a65-aded-183c27e61807", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7f5ce93d-7a07-4a65-aded-183c27e61807", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-891810204344276573537185", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7f5ce93d-7a07-4a65-aded-183c27e61807", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-891810204344276573537185", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7f5ce93d-7a07-4a65-aded-183c27e61807", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-01-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:dff63814-702f-4bb9-9889-30ed64aa8e6d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:dff63814-702f-4bb9-9889-30ed64aa8e6d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-424190940724368837047331", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:dff63814-702f-4bb9-9889-30ed64aa8e6d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-424190940724368837047331", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:dff63814-702f-4bb9-9889-30ed64aa8e6d", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-09-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b3d80439-04f3-4561-906d-e307b93358d8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3d80439-04f3-4561-906d-e307b93358d8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-367432837996589052487421", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b3d80439-04f3-4561-906d-e307b93358d8", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-367432837996589052487421", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 43, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-367432837996589052487421", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3d80439-04f3-4561-906d-e307b93358d8", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b27863bb-ec9f-4fdc-912b-3ba08a86c38b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ad90abaa-370e-4233-a3bf-3fc620f8a788", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:49333f46-fb39-4c79-b985-61bc6c4bbe23", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f27b9e92-4735-4d8c-a127-4abddf24fbea", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:809c6729-7bf1-42ec-8976-88b15dfb4e21", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ce463f88-244c-4733-a451-7eff80d99781", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:daa81e84-0b19-403b-8b0d-97f997fe0321", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:63612e7c-94fd-4a25-997a-616e3d0cb952", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5a1d09f1-782d-4f5b-8be1-9134fc9586a3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:96b37c6d-84b1-4e53-a2ff-db1a22fc6146", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:b27863bb-ec9f-4fdc-912b-3ba08a86c38b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b27863bb-ec9f-4fdc-912b-3ba08a86c38b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-146106195924737174530605", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b27863bb-ec9f-4fdc-912b-3ba08a86c38b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-146106195924737174530605", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b27863bb-ec9f-4fdc-912b-3ba08a86c38b", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-08-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:ad90abaa-370e-4233-a3bf-3fc620f8a788", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ad90abaa-370e-4233-a3bf-3fc620f8a788", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-794822828137708339504072", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ad90abaa-370e-4233-a3bf-3fc620f8a788", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-794822828137708339504072", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ad90abaa-370e-4233-a3bf-3fc620f8a788", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-02-10", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:49333f46-fb39-4c79-b985-61bc6c4bbe23", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:49333f46-fb39-4c79-b985-61bc6c4bbe23", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-726849844055222451461740", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:49333f46-fb39-4c79-b985-61bc6c4bbe23", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-726849844055222451461740", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:49333f46-fb39-4c79-b985-61bc6c4bbe23", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-01-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f27b9e92-4735-4d8c-a127-4abddf24fbea", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f27b9e92-4735-4d8c-a127-4abddf24fbea", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-588497894097944659206066", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f27b9e92-4735-4d8c-a127-4abddf24fbea", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-588497894097944659206066", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f27b9e92-4735-4d8c-a127-4abddf24fbea", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-01-09", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:809c6729-7bf1-42ec-8976-88b15dfb4e21", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:809c6729-7bf1-42ec-8976-88b15dfb4e21", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-128103750726230103979167", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:809c6729-7bf1-42ec-8976-88b15dfb4e21", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-128103750726230103979167", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:809c6729-7bf1-42ec-8976-88b15dfb4e21", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-10-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-03", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:ce463f88-244c-4733-a451-7eff80d99781", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ce463f88-244c-4733-a451-7eff80d99781", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-186603258541079553971852", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ce463f88-244c-4733-a451-7eff80d99781", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-186603258541079553971852", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ce463f88-244c-4733-a451-7eff80d99781", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-06-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-04", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:daa81e84-0b19-403b-8b0d-97f997fe0321", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:daa81e84-0b19-403b-8b0d-97f997fe0321", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-389462943838606473084275", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:daa81e84-0b19-403b-8b0d-97f997fe0321", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-389462943838606473084275", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:daa81e84-0b19-403b-8b0d-97f997fe0321", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-08-30", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-28", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:63612e7c-94fd-4a25-997a-616e3d0cb952", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:63612e7c-94fd-4a25-997a-616e3d0cb952", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-350678772173017950303140", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:63612e7c-94fd-4a25-997a-616e3d0cb952", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-350678772173017950303140", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:63612e7c-94fd-4a25-997a-616e3d0cb952", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-09-03", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5a1d09f1-782d-4f5b-8be1-9134fc9586a3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5a1d09f1-782d-4f5b-8be1-9134fc9586a3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-444777337675468718510860", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5a1d09f1-782d-4f5b-8be1-9134fc9586a3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-444777337675468718510860", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5a1d09f1-782d-4f5b-8be1-9134fc9586a3", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-07-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:96b37c6d-84b1-4e53-a2ff-db1a22fc6146", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:96b37c6d-84b1-4e53-a2ff-db1a22fc6146", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-377581439154528812375831", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:96b37c6d-84b1-4e53-a2ff-db1a22fc6146", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-377581439154528812375831", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:96b37c6d-84b1-4e53-a2ff-db1a22fc6146", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-06-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b2b31c45-1e93-401c-ae2e-0c4ada8ba93f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b2b31c45-1e93-401c-ae2e-0c4ada8ba93f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-300840952123156683696781", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b2b31c45-1e93-401c-ae2e-0c4ada8ba93f", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-300840952123156683696781", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 75, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 5, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-300840952123156683696781", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b2b31c45-1e93-401c-ae2e-0c4ada8ba93f", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:36d869bd-3dd1-4dac-bd24-606a7ad3de36", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8620e575-afbe-4c8f-856f-b480fd33535c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:91dfc2ef-17c6-493f-9cb5-0b76879869f3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:fa3ff6b1-c3a0-4954-9e81-1a373eeea9d2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0275fb1d-4e0c-4c2f-8911-af49def00770", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:78480f4b-6de9-4dfa-8bd5-f6804080fe37", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8db5fb5e-b3c3-41fd-8c28-a3a240136667", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e32e03c8-3c84-4e00-a27e-2e43a8552038", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:aadf3c38-64e6-4e28-a800-043268c38ad2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f8166ac0-8872-497e-ad50-ebc2db568f31", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:36d869bd-3dd1-4dac-bd24-606a7ad3de36", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:36d869bd-3dd1-4dac-bd24-606a7ad3de36", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-131218349004636557928662", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:36d869bd-3dd1-4dac-bd24-606a7ad3de36", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-131218349004636557928662", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:36d869bd-3dd1-4dac-bd24-606a7ad3de36", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-09-30", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8620e575-afbe-4c8f-856f-b480fd33535c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8620e575-afbe-4c8f-856f-b480fd33535c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-532598851864754479901520", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8620e575-afbe-4c8f-856f-b480fd33535c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-532598851864754479901520", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8620e575-afbe-4c8f-856f-b480fd33535c", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-05-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:91dfc2ef-17c6-493f-9cb5-0b76879869f3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:91dfc2ef-17c6-493f-9cb5-0b76879869f3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-088664522536292986788312", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:91dfc2ef-17c6-493f-9cb5-0b76879869f3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-088664522536292986788312", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:91dfc2ef-17c6-493f-9cb5-0b76879869f3", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-01-31", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:fa3ff6b1-c3a0-4954-9e81-1a373eeea9d2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fa3ff6b1-c3a0-4954-9e81-1a373eeea9d2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-220829609086319143237766", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:fa3ff6b1-c3a0-4954-9e81-1a373eeea9d2", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-220829609086319143237766", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fa3ff6b1-c3a0-4954-9e81-1a373eeea9d2", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-05-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0275fb1d-4e0c-4c2f-8911-af49def00770", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0275fb1d-4e0c-4c2f-8911-af49def00770", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-923452512968770912464731", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0275fb1d-4e0c-4c2f-8911-af49def00770", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-923452512968770912464731", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0275fb1d-4e0c-4c2f-8911-af49def00770", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-07-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:78480f4b-6de9-4dfa-8bd5-f6804080fe37", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:78480f4b-6de9-4dfa-8bd5-f6804080fe37", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-022799441719170883922725", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:78480f4b-6de9-4dfa-8bd5-f6804080fe37", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-022799441719170883922725", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:78480f4b-6de9-4dfa-8bd5-f6804080fe37", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-09-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8db5fb5e-b3c3-41fd-8c28-a3a240136667", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8db5fb5e-b3c3-41fd-8c28-a3a240136667", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-113959552744941227101296", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8db5fb5e-b3c3-41fd-8c28-a3a240136667", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-113959552744941227101296", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8db5fb5e-b3c3-41fd-8c28-a3a240136667", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-02-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e32e03c8-3c84-4e00-a27e-2e43a8552038", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e32e03c8-3c84-4e00-a27e-2e43a8552038", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-908878637794438665483609", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e32e03c8-3c84-4e00-a27e-2e43a8552038", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-908878637794438665483609", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e32e03c8-3c84-4e00-a27e-2e43a8552038", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-08-18", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-23", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:aadf3c38-64e6-4e28-a800-043268c38ad2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:aadf3c38-64e6-4e28-a800-043268c38ad2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-207545091734706903968983", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:aadf3c38-64e6-4e28-a800-043268c38ad2", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-207545091734706903968983", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:aadf3c38-64e6-4e28-a800-043268c38ad2", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-10-12", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f8166ac0-8872-497e-ad50-ebc2db568f31", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f8166ac0-8872-497e-ad50-ebc2db568f31", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-696279400186277889959902", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f8166ac0-8872-497e-ad50-ebc2db568f31", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-696279400186277889959902", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f8166ac0-8872-497e-ad50-ebc2db568f31", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-10-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-06", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b3af59ae-c09c-4099-a5ed-460a167a3703", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3af59ae-c09c-4099-a5ed-460a167a3703", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-529286910552438476484284", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b3af59ae-c09c-4099-a5ed-460a167a3703", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-529286910552438476484284", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 46, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-529286910552438476484284", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3af59ae-c09c-4099-a5ed-460a167a3703", - "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ad11167c-f212-446f-9d28-66ea94f1ed33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1cbeef8b-b1bb-450b-b785-9a5cd86835bc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2da9ef0f-22f8-489e-b646-13595d05891a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e701aaae-ca7e-40d7-8012-433e071f8b43", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ca0d79cd-6109-41cd-82dc-af39df3d017b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e9f500ce-06aa-4237-8a13-695bfcafc772", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3617ed9c-be37-43d9-9e34-ed8a0072c296", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:65dc586c-3afc-46f5-9f11-741871e5a9d4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cd139c79-73d1-46e3-9574-b7fcafd82261", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d7911956-b135-4b9b-93f3-e2eba1735cbf", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:ad11167c-f212-446f-9d28-66ea94f1ed33", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ad11167c-f212-446f-9d28-66ea94f1ed33", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-741576436946807828846327", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ad11167c-f212-446f-9d28-66ea94f1ed33", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-741576436946807828846327", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ad11167c-f212-446f-9d28-66ea94f1ed33", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-12-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1cbeef8b-b1bb-450b-b785-9a5cd86835bc", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1cbeef8b-b1bb-450b-b785-9a5cd86835bc", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-871146383644936792912945", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1cbeef8b-b1bb-450b-b785-9a5cd86835bc", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-871146383644936792912945", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1cbeef8b-b1bb-450b-b785-9a5cd86835bc", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-01-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2da9ef0f-22f8-489e-b646-13595d05891a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2da9ef0f-22f8-489e-b646-13595d05891a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-314652069465852741044485", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2da9ef0f-22f8-489e-b646-13595d05891a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-314652069465852741044485", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2da9ef0f-22f8-489e-b646-13595d05891a", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-11-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e701aaae-ca7e-40d7-8012-433e071f8b43", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e701aaae-ca7e-40d7-8012-433e071f8b43", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-767116652008536208381277", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e701aaae-ca7e-40d7-8012-433e071f8b43", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-767116652008536208381277", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e701aaae-ca7e-40d7-8012-433e071f8b43", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-07-18", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:ca0d79cd-6109-41cd-82dc-af39df3d017b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ca0d79cd-6109-41cd-82dc-af39df3d017b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-158952151890791354506032", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ca0d79cd-6109-41cd-82dc-af39df3d017b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-158952151890791354506032", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ca0d79cd-6109-41cd-82dc-af39df3d017b", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-10-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e9f500ce-06aa-4237-8a13-695bfcafc772", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e9f500ce-06aa-4237-8a13-695bfcafc772", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-025483410812654212525038", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e9f500ce-06aa-4237-8a13-695bfcafc772", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-025483410812654212525038", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e9f500ce-06aa-4237-8a13-695bfcafc772", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-06-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3617ed9c-be37-43d9-9e34-ed8a0072c296", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3617ed9c-be37-43d9-9e34-ed8a0072c296", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-404773490375781864239130", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3617ed9c-be37-43d9-9e34-ed8a0072c296", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-404773490375781864239130", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3617ed9c-be37-43d9-9e34-ed8a0072c296", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-09-14", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:65dc586c-3afc-46f5-9f11-741871e5a9d4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:65dc586c-3afc-46f5-9f11-741871e5a9d4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-018212001499583681008029", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:65dc586c-3afc-46f5-9f11-741871e5a9d4", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-018212001499583681008029", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:65dc586c-3afc-46f5-9f11-741871e5a9d4", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-12-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:cd139c79-73d1-46e3-9574-b7fcafd82261", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cd139c79-73d1-46e3-9574-b7fcafd82261", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-257423175322375609605653", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cd139c79-73d1-46e3-9574-b7fcafd82261", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-257423175322375609605653", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cd139c79-73d1-46e3-9574-b7fcafd82261", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-05-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d7911956-b135-4b9b-93f3-e2eba1735cbf", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d7911956-b135-4b9b-93f3-e2eba1735cbf", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-651927770967816501060914", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d7911956-b135-4b9b-93f3-e2eba1735cbf", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-651927770967816501060914", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d7911956-b135-4b9b-93f3-e2eba1735cbf", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-09-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Kombilimousine", - "catenaXId" : "urn:uuid:6c32be51-af13-4815-8058-cb2d67918007", - "engine" : { - "size" : 2998, - "power" : 152 - }, - "emptyWeight" : 1.79, - "fuel" : "Benzin/Flüssiggas", - "vehicleModel" : "Vehicle Hybrid", - "productionDateGMT" : "2010-01-01", - "equipmentVariants" : [ { - "code" : "S218A", - "description" : "sport automatic transmission", - "group" : "special equipment" - }, { - "code" : "A458D", - "description" : "parking assistance ", - "group" : "special equipment" - }, { - "code" : "B298B", - "description" : "keyless entry", - "group" : "special equipment" - }, { - "code" : "S2AVB", - "description" : "adaptive drive", - "group" : "special equipment" - } ], - "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", - "mileage" : [ { - "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2019-02-16", - "mileageDistance" : 120000 - } ] - } ], - "catenaXId" : "urn:uuid:6c32be51-af13-4815-8058-cb2d67918007", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "CI-64", - "key" : "manufacturerPartId" - }, { - "value" : "OMBIZSFPKPILNJDNG", - "key" : "partInstanceId" - }, { - "value" : "OMBIZSFPKPILNJDNG", - "key" : "van" - } ], - "manufacturingInformation" : { - "date" : "2017-07-02T23:22:38.000Z", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6c32be51-af13-4815-8058-cb2d67918007", - "partTypeInformation" : { - "manufacturerPartId" : "CI-64", - "classification" : "product", - "nameAtManufacturer" : "Vehicle Hybrid" - } - } ], - "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" : 33, - "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" : 34, - "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" : 82, - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 54.6 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GL338" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 28, - "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" : 26, - "materialClass" : "5.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 7.8 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "R22" - }, { - "materialName" : "Textiles", - "recycledContent" : 82, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 5.12 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "TEX1" - } ] - } ], - "urn:bamm:io.catenax.certificate_of_destruction:1.0.1#CertificateOfDestruction" : [ { - "catenaXId" : "urn:uuid:6c32be51-af13-4815-8058-cb2d67918007", - "dismantlerProperties" : { - "expiryDate" : "2023-03-14", - "governmentAddress" : { - "zip" : "68161/12", - "country" : "UR", - "street" : "Bernstraße", - "houseNumber" : "45", - "name" : "VLhpfQGTMDYpsBZxvfBoeygjb", - "location" : "Mannheim" - }, - "dismantlerAuditorContact" : { - "phone" : "+908 0984", - "fax" : "2118145186333995599 4455362573 92903453" - }, - "receiverAuditorAddress" : { - "zip" : "68161/12", - "country" : "AR", - "street" : "Bernstraße", - "houseNumber" : "45", - "name" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", - "location" : "Mannheim" - }, - "dismantlerContact" : { - "phone" : " 0437170 59659481408170668550001606181190496817797071900 16680 7 6926221384 05844893247741871 583", - "fax" : "29 013 2258035667 5403" - }, - "dismantlerAuditorAddress" : { - "zip" : "68161/12", - "country" : "GI", - "street" : "Bernstraße", - "houseNumber" : "45", - "name" : "dpHYZGhtgdntugzvvKAXLhM", - "location" : "Mannheim" - }, - "dismantlerAddress" : { - "zip" : "68161/12", - "country" : "KQ", - "street" : "Bernstraße", - "houseNumber" : "45", - "name" : "RYtGKbgicZaHCBRQDSx", - "location" : "Mannheim" - }, - "issueDate" : "2023-03-14", - "isVehicleWithdrawnFromService" : false - }, - "serialNumber" : "LRP1087432", - "companyNumber" : "S30A00065", - "vehicleProperties" : { - "licenseAbbreviation" : "HAL", - "isVehicleInformationComplete" : false, - "licensePlate" : "HAL-UI123", - "identification" : "WBAAY711X0KC28153", - "emptyWeight" : -17, - "model" : "318 I", - "brand" : "BMW", - "class" : "01", - "firstRegistration" : "19.12.2014" - }, - "returnPointProperties" : { - "expiryDate" : "2023-03-14", - "receiverAddress" : { - "zip" : "68161/12", - "country" : "RV", - "street" : "Bernstraße", - "houseNumber" : "45", - "name" : "JxkyvRnL", - "location" : "Mannheim" - }, - "receiverAuditorAddress" : { - "zip" : "68161/12", - "country" : "ZE", - "street" : "Bernstraße", - "houseNumber" : "45", - "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", - "location" : "Mannheim" - }, - "receiverAuditorContact" : { - "phone" : "331526303180940 34307479 92660 38225647 520855838909 01 8 72520515310573752386", - "fax" : "60298704457507 9 8577 76" - }, - "receiverContact" : { - "phone" : "+5585 6 2026 20021538 2747306418525503392771787 089739266209007778 279967117", - "fax" : "4270096015 4309445925080622016597027979396859783 08514571099764 9" - }, - "issueDate" : "2023-03-14", - "isVehicleWithdrawnFromService" : true - }, - "vehicleOwnerProperties" : { - "isVehicleOwnerInformationComplete" : true, - "vehicleOwnerAddress" : { - "zip" : "68161/12", - "country" : "DI", - "street" : "Bernstraße", - "houseNumber" : "45", - "name" : "eOMtThyhVNLWUZNRcBaQKxI", - "location" : "Mannheim" - }, - "citizenship" : "DE" - }, - "dismantlingDate" : "2023-03-14" - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6c32be51-af13-4815-8058-cb2d67918007", - "childItems" : [ { - "catenaXId" : "urn:uuid:6d0d2223-55fb-4996-ae08-fb0485a3e416", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a163f34b-c054-4b21-bed9-85010cfb9b4a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d4b6d4bd-fac2-4796-bca8-903f5dde4229", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e21c779a-54de-453a-99a1-b21f0086a45b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:becfafe3-6c6a-4910-915a-9ea6830282fd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f8ae411d-65ae-4c79-8a44-89aec281c6c2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4d78c7d8-2130-453a-8a2c-99a9c95bbbee", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c3b898b7-b482-4914-8c24-2448dfee1c05", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9d3625d5-8e36-4ea0-8d52-5d39f8002857", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a26315d6-566b-4bd4-bcd2-109e71383457", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f447d4b7-bf12-48fd-be65-dfcf8407d426", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0d7a191e-ebd0-444e-88de-0fde3092ac9f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:29d65ff2-fb7f-428a-bb46-1da71f821186", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:61eb91be-9120-4f55-a41d-8be53ab77aa9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:96d50f5f-361a-44c3-ac96-690512829962", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:367086e9-8871-4dad-a80f-80f6148fb92d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:263c71df-67ab-4a89-ab0b-778e4e3bda40", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:28b792c4-d197-4a0a-86c9-2ef25ff91bc4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d9714ad6-4fdd-4bba-a3b8-47ed90e24f85", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ced0b7d3-2fb9-40f6-a494-3a1ec1474427", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f335ee10-8657-4f87-a987-892649c0abc9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4e77b557-1d30-45e0-a537-45c7cbccc6f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ef7bc5e0-39b4-4b14-adbb-1785dd69d16c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2409c70a-212e-4669-b45a-24a22f06af49", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:df5fa5b7-b925-4a91-bc9d-9206c3f3dfe9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d7f3d107-894c-4d53-98d3-365edb195400", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9ec195c4-1c11-47be-80f1-1cf4958dd3e7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:537a9592-cf7c-4444-a8f0-cdc19fef8ff3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a415f42b-2839-4d81-9814-cee26774ed8e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7ceeae79-71b3-46cc-98b8-49fcc1686a18", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:95c622a4-fd39-4a33-a45e-e8b2b82b5ce5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:53f45d14-9fb6-4192-a4dc-276adfb4a342", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:703ece16-f7ca-4c8d-8657-0cbd0073ab56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B2OM", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:fdad35f8-e163-4233-8f08-8d0f8bb9e80f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B5MJ", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:41aa2813-310f-40f4-87f1-338f33cb0988", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:6d0d2223-55fb-4996-ae08-fb0485a3e416", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6d0d2223-55fb-4996-ae08-fb0485a3e416", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "10030939-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-880776901240885579856908", - "key" : "partInstanceId" - }, { - "value" : "Company 7", - "key" : "company" - }, { - "value" : "Brand 7", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6d0d2223-55fb-4996-ae08-fb0485a3e416", - "partTypeInformation" : { - "manufacturerPartId" : "10030939-59", - "customerPartId" : "10030939-59", - "classification" : "component", - "nameAtManufacturer" : "Engine", - "nameAtCustomer" : "Engine" - } - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 560, - "width" : 762, - "length" : 843, - "weight" : 180, - "height" : 711 - } - } ] - }, { - "catenaXId" : "urn:uuid:a163f34b-c054-4b21-bed9-85010cfb9b4a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a163f34b-c054-4b21-bed9-85010cfb9b4a", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "32494586-73", - "key" : "manufacturerPartId" - }, { - "value" : "NO-914723782541459986475687", - "key" : "partInstanceId" - }, { - "value" : "Company 8", - "key" : "company" - }, { - "value" : "Brand 8", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a163f34b-c054-4b21-bed9-85010cfb9b4a", - "partTypeInformation" : { - "manufacturerPartId" : "32494586-73", - "customerPartId" : "32494586-73", - "classification" : "component", - "nameAtManufacturer" : "Differential Gear", - "nameAtCustomer" : "Differential Gear" - } - } ] - }, { - "catenaXId" : "urn:uuid:d4b6d4bd-fac2-4796-bca8-903f5dde4229", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d4b6d4bd-fac2-4796-bca8-903f5dde4229", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "67034319-44", - "key" : "manufacturerPartId" - }, { - "value" : "NO-209983066213540355048237", - "key" : "partInstanceId" - }, { - "value" : "Company 9", - "key" : "company" - }, { - "value" : "Brand 9", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d4b6d4bd-fac2-4796-bca8-903f5dde4229", - "partTypeInformation" : { - "manufacturerPartId" : "67034319-44", - "customerPartId" : "67034319-44", - "classification" : "component", - "nameAtManufacturer" : "Turbocharger", - "nameAtCustomer" : "Turbocharger" - } - } ] - }, { - "catenaXId" : "urn:uuid:e21c779a-54de-453a-99a1-b21f0086a45b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e21c779a-54de-453a-99a1-b21f0086a45b", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "73849201-61", - "key" : "manufacturerPartId" - }, { - "value" : "NO-315216553307225910810792", - "key" : "partInstanceId" - }, { - "value" : "Company 10", - "key" : "company" - }, { - "value" : "Brand 10", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e21c779a-54de-453a-99a1-b21f0086a45b", - "partTypeInformation" : { - "manufacturerPartId" : "73849201-61", - "customerPartId" : "73849201-61", - "classification" : "component", - "nameAtManufacturer" : "Catalysator", - "nameAtCustomer" : "Catalysator" - } - } ] - }, { - "catenaXId" : "urn:uuid:becfafe3-6c6a-4910-915a-9ea6830282fd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:becfafe3-6c6a-4910-915a-9ea6830282fd", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "22782277-50", - "key" : "manufacturerPartId" - }, { - "value" : "NO-409873507395277450953299", - "key" : "partInstanceId" - }, { - "value" : "Company 3", - "key" : "company" - }, { - "value" : "Brand 3", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:becfafe3-6c6a-4910-915a-9ea6830282fd", - "partTypeInformation" : { - "manufacturerPartId" : "22782277-50", - "customerPartId" : "22782277-50", - "classification" : "component", - "nameAtManufacturer" : "Door f-l", - "nameAtCustomer" : "Door front-left" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:becfafe3-6c6a-4910-915a-9ea6830282fd", - "childItems" : [ { - "catenaXId" : "urn:uuid:fa87e076-ccd2-4d1b-b39f-ddb2213ec31d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:fa87e076-ccd2-4d1b-b39f-ddb2213ec31d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fa87e076-ccd2-4d1b-b39f-ddb2213ec31d", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-914861151651540512275128", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:fa87e076-ccd2-4d1b-b39f-ddb2213ec31d", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "53778653XXY", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:fa87e076-ccd2-4d1b-b39f-ddb2213ec31d", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:f8ae411d-65ae-4c79-8a44-89aec281c6c2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f8ae411d-65ae-4c79-8a44-89aec281c6c2", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "95657362-64", - "key" : "manufacturerPartId" - }, { - "value" : "NO-298111953334511661842400", - "key" : "partInstanceId" - }, { - "value" : "Company 4", - "key" : "company" - }, { - "value" : "Brand 4", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f8ae411d-65ae-4c79-8a44-89aec281c6c2", - "partTypeInformation" : { - "manufacturerPartId" : "33740332-54", - "customerPartId" : "33740332-54", - "classification" : "component", - "nameAtManufacturer" : "Door f-r", - "nameAtCustomer" : "Door front-right" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f8ae411d-65ae-4c79-8a44-89aec281c6c2", - "childItems" : [ { - "catenaXId" : "urn:uuid:4578cf4e-6634-42e6-bf2d-514cef0a982f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:4578cf4e-6634-42e6-bf2d-514cef0a982f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4578cf4e-6634-42e6-bf2d-514cef0a982f", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-206809715222426062698396", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4578cf4e-6634-42e6-bf2d-514cef0a982f", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "27890195TVM", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:4578cf4e-6634-42e6-bf2d-514cef0a982f", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:4d78c7d8-2130-453a-8a2c-99a9c95bbbee", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4d78c7d8-2130-453a-8a2c-99a9c95bbbee", - "customers" : [ { - "businessPartner" : false, - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "15635759-16", - "key" : "manufacturerPartId" - }, { - "value" : "NO-837121327304188591136801", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4d78c7d8-2130-453a-8a2c-99a9c95bbbee", - "partTypeInformation" : { - "manufacturerPartId" : "15635759-16", - "customerPartId" : "15635759-16", - "classification" : "component", - "nameAtManufacturer" : "Door r-l", - "nameAtCustomer" : "Door rear-left" - } - } ] - }, { - "catenaXId" : "urn:uuid:c3b898b7-b482-4914-8c24-2448dfee1c05", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c3b898b7-b482-4914-8c24-2448dfee1c05", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "28673126-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-329546122336961015306045", - "key" : "partInstanceId" - }, { - "value" : "Company 5", - "key" : "company" - }, { - "value" : "Brand 5", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c3b898b7-b482-4914-8c24-2448dfee1c05", - "partTypeInformation" : { - "manufacturerPartId" : "28673126-98", - "customerPartId" : "28673126-98", - "classification" : "component", - "nameAtManufacturer" : "Door r-r", - "nameAtCustomer" : "Door rear-right" - } - } ] - }, { - "catenaXId" : "urn:uuid:9d3625d5-8e36-4ea0-8d52-5d39f8002857", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9d3625d5-8e36-4ea0-8d52-5d39f8002857", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "94421589-82", - "key" : "manufacturerPartId" - }, { - "value" : "NO-793575322941774039289604", - "key" : "partInstanceId" - }, { - "value" : "Company 6", - "key" : "company" - }, { - "value" : "Brand 6", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9d3625d5-8e36-4ea0-8d52-5d39f8002857", - "partTypeInformation" : { - "manufacturerPartId" : "94421589-82", - "customerPartId" : "94421589-82", - "classification" : "component", - "nameAtManufacturer" : "Engine hood", - "nameAtCustomer" : "Engine hood" - } - } ] - }, { - "catenaXId" : "urn:uuid:a26315d6-566b-4bd4-bcd2-109e71383457", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a26315d6-566b-4bd4-bcd2-109e71383457", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "85023955-75", - "key" : "manufacturerPartId" - }, { - "value" : "NO-883430018826151900151599", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a26315d6-566b-4bd4-bcd2-109e71383457", - "partTypeInformation" : { - "manufacturerPartId" : "85023955-75", - "customerPartId" : "85023955-75", - "classification" : "component", - "nameAtManufacturer" : "Tailgate", - "nameAtCustomer" : "Tailgate" - } - } ] - }, { - "catenaXId" : "urn:uuid:f447d4b7-bf12-48fd-be65-dfcf8407d426", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f447d4b7-bf12-48fd-be65-dfcf8407d426", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "13769860-47", - "key" : "manufacturerPartId" - }, { - "value" : "NO-718906654722605374484846", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f447d4b7-bf12-48fd-be65-dfcf8407d426", - "partTypeInformation" : { - "manufacturerPartId" : "13769860-47", - "customerPartId" : "13769860-47", - "classification" : "component", - "nameAtManufacturer" : "Fender left", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:0d7a191e-ebd0-444e-88de-0fde3092ac9f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0d7a191e-ebd0-444e-88de-0fde3092ac9f", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "36643162-35", - "key" : "manufacturerPartId" - }, { - "value" : "NO-518545149107271638475826", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0d7a191e-ebd0-444e-88de-0fde3092ac9f", - "partTypeInformation" : { - "manufacturerPartId" : "36643162-35", - "customerPartId" : "36643162-35", - "classification" : "component", - "nameAtManufacturer" : "Fender right", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:29d65ff2-fb7f-428a-bb46-1da71f821186", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:29d65ff2-fb7f-428a-bb46-1da71f821186", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "54165444-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-309137604078802675936138", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:29d65ff2-fb7f-428a-bb46-1da71f821186", - "partTypeInformation" : { - "manufacturerPartId" : "54165444-59", - "customerPartId" : "54165444-59", - "classification" : "component", - "nameAtManufacturer" : "Bumper front", - "nameAtCustomer" : "Bumper front" - } - } ] - }, { - "catenaXId" : "urn:uuid:61eb91be-9120-4f55-a41d-8be53ab77aa9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:61eb91be-9120-4f55-a41d-8be53ab77aa9", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "22768257-25", - "key" : "manufacturerPartId" - }, { - "value" : "NO-972965973562670193685680", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:61eb91be-9120-4f55-a41d-8be53ab77aa9", - "partTypeInformation" : { - "manufacturerPartId" : "22768257-25", - "customerPartId" : "22768257-25", - "classification" : "component", - "nameAtManufacturer" : "Bumper rear", - "nameAtCustomer" : "Bumper rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:96d50f5f-361a-44c3-ac96-690512829962", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:96d50f5f-361a-44c3-ac96-690512829962", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "65529521-37", - "key" : "manufacturerPartId" - }, { - "value" : "NO-903323213932304129320853", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:96d50f5f-361a-44c3-ac96-690512829962", - "partTypeInformation" : { - "manufacturerPartId" : "65529521-37", - "customerPartId" : "65529521-37", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror left", - "nameAtCustomer" : "Exterior mirror left" - } - } ] - }, { - "catenaXId" : "urn:uuid:367086e9-8871-4dad-a80f-80f6148fb92d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:367086e9-8871-4dad-a80f-80f6148fb92d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "58471477-24", - "key" : "manufacturerPartId" - }, { - "value" : "NO-361014642269119629150537", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:367086e9-8871-4dad-a80f-80f6148fb92d", - "partTypeInformation" : { - "manufacturerPartId" : "58471477-24", - "customerPartId" : "58471477-24", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror right", - "nameAtCustomer" : "Exterior mirror right" - } - } ] - }, { - "catenaXId" : "urn:uuid:263c71df-67ab-4a89-ab0b-778e4e3bda40", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:263c71df-67ab-4a89-ab0b-778e4e3bda40", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "09002013-68", - "key" : "manufacturerPartId" - }, { - "value" : "NO-512010193040116026123344", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:263c71df-67ab-4a89-ab0b-778e4e3bda40", - "partTypeInformation" : { - "manufacturerPartId" : "09002013-68", - "customerPartId" : "09002013-68", - "classification" : "component", - "nameAtManufacturer" : "Trailer coupling", - "nameAtCustomer" : "Tailer coupling" - } - } ] - }, { - "catenaXId" : "urn:uuid:28b792c4-d197-4a0a-86c9-2ef25ff91bc4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:28b792c4-d197-4a0a-86c9-2ef25ff91bc4", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "43501996-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-112035313964282003704935", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:28b792c4-d197-4a0a-86c9-2ef25ff91bc4", - "partTypeInformation" : { - "manufacturerPartId" : "43501996-98", - "customerPartId" : "43501996-98", - "classification" : "component", - "nameAtManufacturer" : "Dashboard", - "nameAtCustomer" : "Dashboard" - } - } ] - }, { - "catenaXId" : "urn:uuid:d9714ad6-4fdd-4bba-a3b8-47ed90e24f85", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d9714ad6-4fdd-4bba-a3b8-47ed90e24f85", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "77795937-13", - "key" : "manufacturerPartId" - }, { - "value" : "NO-174635475675898123985265", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d9714ad6-4fdd-4bba-a3b8-47ed90e24f85", - "partTypeInformation" : { - "manufacturerPartId" : "77795937-13", - "customerPartId" : "77795937-13", - "classification" : "component", - "nameAtManufacturer" : "Steering wheel", - "nameAtCustomer" : "Steering wheel" - } - } ] - }, { - "catenaXId" : "urn:uuid:ced0b7d3-2fb9-40f6-a494-3a1ec1474427", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ced0b7d3-2fb9-40f6-a494-3a1ec1474427", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "20125432-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-950665084035508890196076", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ced0b7d3-2fb9-40f6-a494-3a1ec1474427", - "partTypeInformation" : { - "manufacturerPartId" : "20125432-59", - "customerPartId" : "20125432-59", - "classification" : "component", - "nameAtManufacturer" : "Indicator left", - "nameAtCustomer" : "Indicator left" - } - } ] - }, { - "catenaXId" : "urn:uuid:f335ee10-8657-4f87-a987-892649c0abc9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f335ee10-8657-4f87-a987-892649c0abc9", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "19073706-76", - "key" : "manufacturerPartId" - }, { - "value" : "NO-927093321622451221760480", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f335ee10-8657-4f87-a987-892649c0abc9", - "partTypeInformation" : { - "manufacturerPartId" : "19073706-76", - "customerPartId" : "19073706-76", - "classification" : "component", - "nameAtManufacturer" : "Indicator right", - "nameAtCustomer" : "Indicator right" - } - } ] - }, { - "catenaXId" : "urn:uuid:4e77b557-1d30-45e0-a537-45c7cbccc6f2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4e77b557-1d30-45e0-a537-45c7cbccc6f2", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "45415162-57", - "key" : "manufacturerPartId" - }, { - "value" : "NO-986091956052723052979276", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4e77b557-1d30-45e0-a537-45c7cbccc6f2", - "partTypeInformation" : { - "manufacturerPartId" : "45415162-57", - "customerPartId" : "45415162-57", - "classification" : "component", - "nameAtManufacturer" : "Led headlight", - "nameAtCustomer" : "Led headlight" - } - } ] - }, { - "catenaXId" : "urn:uuid:ef7bc5e0-39b4-4b14-adbb-1785dd69d16c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ef7bc5e0-39b4-4b14-adbb-1785dd69d16c", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "78141846-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-093351612402658980491916", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ef7bc5e0-39b4-4b14-adbb-1785dd69d16c", - "partTypeInformation" : { - "manufacturerPartId" : "78141846-87", - "customerPartId" : "78141846-87", - "classification" : "component", - "nameAtManufacturer" : "Starter motor", - "nameAtCustomer" : "Starter motor" - } - } ] - }, { - "catenaXId" : "urn:uuid:2409c70a-212e-4669-b45a-24a22f06af49", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2409c70a-212e-4669-b45a-24a22f06af49", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "81324139-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-463834089058475851951409", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2409c70a-212e-4669-b45a-24a22f06af49", - "partTypeInformation" : { - "manufacturerPartId" : "81324139-23", - "customerPartId" : "81324139-23", - "classification" : "component", - "nameAtManufacturer" : "Alternator", - "nameAtCustomer" : "Alternator" - } - } ] - }, { - "catenaXId" : "urn:uuid:df5fa5b7-b925-4a91-bc9d-9206c3f3dfe9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:df5fa5b7-b925-4a91-bc9d-9206c3f3dfe9", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "57929013-09", - "key" : "manufacturerPartId" - }, { - "value" : "NO-358263521055139729975466", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:df5fa5b7-b925-4a91-bc9d-9206c3f3dfe9", - "partTypeInformation" : { - "manufacturerPartId" : "57929013-09", - "customerPartId" : "57929013-09", - "classification" : "component", - "nameAtManufacturer" : "AC compressor", - "nameAtCustomer" : "Air conditioning compressor" - } - } ] - }, { - "catenaXId" : "urn:uuid:d7f3d107-894c-4d53-98d3-365edb195400", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d7f3d107-894c-4d53-98d3-365edb195400", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "61184040-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-566577298652994194591470", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d7f3d107-894c-4d53-98d3-365edb195400", - "partTypeInformation" : { - "manufacturerPartId" : "61184040-23", - "customerPartId" : "61184040-23", - "classification" : "component", - "nameAtManufacturer" : "Taillight rear", - "nameAtCustomer" : "Taillight rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:9ec195c4-1c11-47be-80f1-1cf4958dd3e7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9ec195c4-1c11-47be-80f1-1cf4958dd3e7", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "78744126-74", - "key" : "manufacturerPartId" - }, { - "value" : "NO-893247756761839880458094", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9ec195c4-1c11-47be-80f1-1cf4958dd3e7", - "partTypeInformation" : { - "manufacturerPartId" : "78744126-74", - "customerPartId" : "78744126-74", - "classification" : "component", - "nameAtManufacturer" : "Taillight front", - "nameAtCustomer" : "Taillight front" - } - } ] - }, { - "catenaXId" : "urn:uuid:537a9592-cf7c-4444-a8f0-cdc19fef8ff3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:537a9592-cf7c-4444-a8f0-cdc19fef8ff3", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "12093297-03", - "key" : "manufacturerPartId" - }, { - "value" : "NO-949753617406789244581153", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:537a9592-cf7c-4444-a8f0-cdc19fef8ff3", - "partTypeInformation" : { - "manufacturerPartId" : "12093297-03", - "customerPartId" : "12093297-03", - "classification" : "component", - "nameAtManufacturer" : "Axle part front", - "nameAtCustomer" : "Axle part front" - } - } ] - }, { - "catenaXId" : "urn:uuid:a415f42b-2839-4d81-9814-cee26774ed8e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a415f42b-2839-4d81-9814-cee26774ed8e", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "88111709-49", - "key" : "manufacturerPartId" - }, { - "value" : "NO-274759428452916125708292", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a415f42b-2839-4d81-9814-cee26774ed8e", - "partTypeInformation" : { - "manufacturerPartId" : "88111709-49", - "customerPartId" : "88111709-49", - "classification" : "component", - "nameAtManufacturer" : "Axle part rear", - "nameAtCustomer" : "Axle part rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:7ceeae79-71b3-46cc-98b8-49fcc1686a18", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7ceeae79-71b3-46cc-98b8-49fcc1686a18", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "00871379-44", - "key" : "manufacturerPartId" - }, { - "value" : "NO-001212709650318979745048", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7ceeae79-71b3-46cc-98b8-49fcc1686a18", - "partTypeInformation" : { - "manufacturerPartId" : "00871379-44", - "customerPartId" : "00871379-44", - "classification" : "component", - "nameAtManufacturer" : "Chassis", - "nameAtCustomer" : "Chassis" - } - } ] - }, { - "catenaXId" : "urn:uuid:95c622a4-fd39-4a33-a45e-e8b2b82b5ce5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:95c622a4-fd39-4a33-a45e-e8b2b82b5ce5", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "08901347-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-716296707297658465133808", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:95c622a4-fd39-4a33-a45e-e8b2b82b5ce5", - "partTypeInformation" : { - "manufacturerPartId" : "08901347-87", - "customerPartId" : "08901347-87", - "classification" : "component", - "nameAtManufacturer" : "Rims", - "nameAtCustomer" : "Rims" - } - } ] - }, { - "catenaXId" : "urn:uuid:53f45d14-9fb6-4192-a4dc-276adfb4a342", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:53f45d14-9fb6-4192-a4dc-276adfb4a342", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "45863316-60", - "key" : "manufacturerPartId" - }, { - "value" : "NO-639335793492096466030622", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:53f45d14-9fb6-4192-a4dc-276adfb4a342", - "partTypeInformation" : { - "manufacturerPartId" : "45863316-60", - "customerPartId" : "45863316-60", - "classification" : "component", - "nameAtManufacturer" : "Tires", - "nameAtCustomer" : "Tires" - } - } ] - }, { - "catenaXId" : "urn:uuid:703ece16-f7ca-4c8d-8657-0cbd0073ab56", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:703ece16-f7ca-4c8d-8657-0cbd0073ab56", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B2OM", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B2OM", - "key" : "manufacturerId" - }, { - "value" : "1O222E8-43", - "key" : "manufacturerPartId" - }, { - "value" : "NO-043391090837339160303082", - "key" : "partInstanceId" - }, { - "value" : "Company 2", - "key" : "company" - }, { - "value" : "Brand 2", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:703ece16-f7ca-4c8d-8657-0cbd0073ab56", - "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:703ece16-f7ca-4c8d-8657-0cbd0073ab56", - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-043391090837339160303082", - "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.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Carbon Steel", - "recycledContent" : 22, - "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" : 38, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:703ece16-f7ca-4c8d-8657-0cbd0073ab56", - "childItems" : [ { - "catenaXId" : "urn:uuid:33aeaef2-a2ad-4ec8-9106-1b8864578633", - "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f5440599-6c81-4a2d-a713-445094250fca", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:dc7493ba-b15d-42ea-a828-3cb713bd8f2c", - "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:33aeaef2-a2ad-4ec8-9106-1b8864578633", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:33aeaef2-a2ad-4ec8-9106-1b8864578633", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:33aeaef2-a2ad-4ec8-9106-1b8864578633", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B0Q0", - "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" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:f5440599-6c81-4a2d-a713-445094250fca", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f5440599-6c81-4a2d-a713-445094250fca", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "90705Z7-82", - "key" : "manufacturerPartId" - }, { - "value" : "NO-891924716315799359173544", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f5440599-6c81-4a2d-a713-445094250fca", - "partTypeInformation" : { - "manufacturerPartId" : "90705Z7-82", - "customerPartId" : "90705Z7-82", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f5440599-6c81-4a2d-a713-445094250fca", - "childItems" : [ { - "catenaXId" : "urn:uuid:7c140bba-415b-46de-9e9b-13d3965f4acf", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:7c140bba-415b-46de-9e9b-13d3965f4acf", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:7c140bba-415b-46de-9e9b-13d3965f4acf", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "NTIER Product" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "NTIER Product", - "materialClass" : "5.5", - "component" : [ { - "materialName" : "Aluminium oxide", - "recycledContent" : 73, - "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" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:dc7493ba-b15d-42ea-a828-3cb713bd8f2c", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:dc7493ba-b15d-42ea-a828-3cb713bd8f2c", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:dc7493ba-b15d-42ea-a828-3cb713bd8f2c", - "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.2341", - "materialAbbreviation" : "GL338" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:dc7493ba-b15d-42ea-a828-3cb713bd8f2c", - "childItems" : [ ] - } ] - }, { - "catenaXId" : "urn:uuid:fdad35f8-e163-4233-8f08-8d0f8bb9e80f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fdad35f8-e163-4233-8f08-8d0f8bb9e80f", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B5MJ", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", - "key" : "manufacturerId" - }, { - "value" : "99377B5-19", - "key" : "manufacturerPartId" - }, { - "value" : "NO-972648688562511599156971", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:fdad35f8-e163-4233-8f08-8d0f8bb9e80f", - "partTypeInformation" : { - "manufacturerPartId" : "99377B5-19", - "customerPartId" : "99377B5-19", - "classification" : "component", - "nameAtManufacturer" : "ECU", - "nameAtCustomer" : "ECU" - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "recycledContent" : 8, - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.3301 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GL338" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fdad35f8-e163-4233-8f08-8d0f8bb9e80f", - "childItems" : [ { - "catenaXId" : "urn:uuid:684b5c69-6c76-4664-b2ec-751cae676e5a", - "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8f43a912-ed03-4085-bb5d-3c79055ec422", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4c852ec1-4c9e-4251-ab70-ca22c66f66b9", - "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:684b5c69-6c76-4664-b2ec-751cae676e5a", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:684b5c69-6c76-4664-b2ec-751cae676e5a", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:684b5c69-6c76-4664-b2ec-751cae676e5a", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Glue", - "materialClass" : "5.5", - "component" : [ { - "materialName" : "Aluminium oxide", - "recycledContent" : 33, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "AL7" - }, { - "materialName" : "Other", - "recycledContent" : 52, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:8f43a912-ed03-4085-bb5d-3c79055ec422", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8f43a912-ed03-4085-bb5d-3c79055ec422", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "57304H9-57", - "key" : "manufacturerPartId" - }, { - "value" : "NO-800532117429176983997955", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8f43a912-ed03-4085-bb5d-3c79055ec422", - "partTypeInformation" : { - "manufacturerPartId" : "57304H9-57", - "customerPartId" : "57304H9-57", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8f43a912-ed03-4085-bb5d-3c79055ec422", - "childItems" : [ { - "catenaXId" : "urn:uuid:d3a78586-4564-4da5-848e-b392b36d4c0b", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:d3a78586-4564-4da5-848e-b392b36d4c0b", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:d3a78586-4564-4da5-848e-b392b36d4c0b", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "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" : 72, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 30 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:4c852ec1-4c9e-4251-ab70-ca22c66f66b9", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4c852ec1-4c9e-4251-ab70-ca22c66f66b9", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "04620P8-64", - "key" : "manufacturerPartId" - }, { - "value" : "NO-010755248047392498800963", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4c852ec1-4c9e-4251-ab70-ca22c66f66b9", - "partTypeInformation" : { - "manufacturerPartId" : "04620P8-64", - "customerPartId" : "04620P8-64", - "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" : 66, - "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" - } ], - "catenaXId" : "urn:uuid:41aa2813-310f-40f4-87f1-338f33cb0988", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:41aa2813-310f-40f4-87f1-338f33cb0988", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "38049661-08", - "key" : "manufacturerPartId" - }, { - "value" : "NO-296951439997567605410427", - "key" : "partInstanceId" - }, { - "value" : "Company 1", - "key" : "company" - }, { - "value" : "Brand 1", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:41aa2813-310f-40f4-87f1-338f33cb0988", - "partTypeInformation" : { - "manufacturerPartId" : "38049661-08", - "customerPartId" : "38049661-08", - "classification" : "component", - "nameAtManufacturer" : "Battery", - "nameAtCustomer" : "Battery" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "pack" - } ], - "productType" : "pack" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-296951439997567605410427", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 55, - "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" : 54, - "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" : false, - "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" : "38049661-08", - "technicalSpecification" : [ { - "technicalValue" : "RYtGKbgicZaHCBRQDSx", - "key" : "JxkyvRnL" - } ], - "productLink" : "https://123", - "oeNumber" : "NO-296951439997567605410427", - "category" : { - "subCategory" : [ "Battery" ], - "mainCategory" : [ "Audio, video, navigation" ] - }, - "originalManufacturer" : "Company 1", - "brand" : "Brand 1", - "productDescription" : "Battery" - }, - "sku" : "1002090, xYz.09, ABcXYZ", - "mileage" : 120000.06 - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-296951439997567605410427", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:41aa2813-310f-40f4-87f1-338f33cb0988", - "childItems" : [ { - "catenaXId" : "urn:uuid:e5932c97-06c1-4a15-9f21-e71c0e88124f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2b44185b-7499-4746-b59f-355be932cff1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e76f88b4-d188-4ca6-a0d1-5d1105de531d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5d61caaa-c05e-4afd-ab35-fcb911cbe98b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:562b1a05-e1a3-499e-9568-5c71ca37475a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b3abaffc-6890-417a-adbe-b6a159ed9290", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:e5932c97-06c1-4a15-9f21-e71c0e88124f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e5932c97-06c1-4a15-9f21-e71c0e88124f", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-386082984381631751157227", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e5932c97-06c1-4a15-9f21-e71c0e88124f", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-386082984381631751157227", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 37, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-386082984381631751157227", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e5932c97-06c1-4a15-9f21-e71c0e88124f", - "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:16318499-01df-4837-bec2-c50e18a16b9b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:707e2e60-824b-4092-87bb-fffbd00b8fbb", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5897cbd9-f444-4cb4-a6a1-12098f91b9d4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3b4c1ac4-3120-48d4-b481-d9c2995ac300", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0aaf4460-62d1-4ea0-ad09-09a0afcb49fb", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9bc9614e-086a-4f00-a96a-10fe74293ad6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:13c37af6-912d-44c0-a60a-3a10dfbaeff1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:46b32b36-bb71-47d7-ae70-1bbd69b2ea21", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:080d60e5-b058-41c7-935c-6a8097050fb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:390e4dea-43fe-41d4-83df-2318c50e4ddf", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:16318499-01df-4837-bec2-c50e18a16b9b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:16318499-01df-4837-bec2-c50e18a16b9b", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-768379063890224263716726", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:16318499-01df-4837-bec2-c50e18a16b9b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-768379063890224263716726", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:16318499-01df-4837-bec2-c50e18a16b9b", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-10-18", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:707e2e60-824b-4092-87bb-fffbd00b8fbb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:707e2e60-824b-4092-87bb-fffbd00b8fbb", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-509232621625130302979259", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:707e2e60-824b-4092-87bb-fffbd00b8fbb", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-509232621625130302979259", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:707e2e60-824b-4092-87bb-fffbd00b8fbb", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5897cbd9-f444-4cb4-a6a1-12098f91b9d4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5897cbd9-f444-4cb4-a6a1-12098f91b9d4", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-778659719895262160759804", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5897cbd9-f444-4cb4-a6a1-12098f91b9d4", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-778659719895262160759804", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5897cbd9-f444-4cb4-a6a1-12098f91b9d4", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-08-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3b4c1ac4-3120-48d4-b481-d9c2995ac300", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3b4c1ac4-3120-48d4-b481-d9c2995ac300", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-867357935078262148145860", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3b4c1ac4-3120-48d4-b481-d9c2995ac300", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-867357935078262148145860", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3b4c1ac4-3120-48d4-b481-d9c2995ac300", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-04-12", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0aaf4460-62d1-4ea0-ad09-09a0afcb49fb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0aaf4460-62d1-4ea0-ad09-09a0afcb49fb", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-284737784487898723135048", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0aaf4460-62d1-4ea0-ad09-09a0afcb49fb", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-284737784487898723135048", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0aaf4460-62d1-4ea0-ad09-09a0afcb49fb", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-08-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9bc9614e-086a-4f00-a96a-10fe74293ad6", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9bc9614e-086a-4f00-a96a-10fe74293ad6", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-856846491319199132395825", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9bc9614e-086a-4f00-a96a-10fe74293ad6", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-856846491319199132395825", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9bc9614e-086a-4f00-a96a-10fe74293ad6", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-08-18", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:13c37af6-912d-44c0-a60a-3a10dfbaeff1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:13c37af6-912d-44c0-a60a-3a10dfbaeff1", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-465473244092805952400177", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:13c37af6-912d-44c0-a60a-3a10dfbaeff1", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-465473244092805952400177", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:13c37af6-912d-44c0-a60a-3a10dfbaeff1", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-12-10", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:46b32b36-bb71-47d7-ae70-1bbd69b2ea21", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:46b32b36-bb71-47d7-ae70-1bbd69b2ea21", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-354681615619970128025989", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:46b32b36-bb71-47d7-ae70-1bbd69b2ea21", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-354681615619970128025989", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:46b32b36-bb71-47d7-ae70-1bbd69b2ea21", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-05-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-06", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:080d60e5-b058-41c7-935c-6a8097050fb8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:080d60e5-b058-41c7-935c-6a8097050fb8", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-082148051151961752564608", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:080d60e5-b058-41c7-935c-6a8097050fb8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-082148051151961752564608", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:080d60e5-b058-41c7-935c-6a8097050fb8", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-01-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:390e4dea-43fe-41d4-83df-2318c50e4ddf", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:390e4dea-43fe-41d4-83df-2318c50e4ddf", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-464501386044746561951693", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:390e4dea-43fe-41d4-83df-2318c50e4ddf", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-464501386044746561951693", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:390e4dea-43fe-41d4-83df-2318c50e4ddf", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-07-24", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2b44185b-7499-4746-b59f-355be932cff1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2b44185b-7499-4746-b59f-355be932cff1", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-438355518114230832460971", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2b44185b-7499-4746-b59f-355be932cff1", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-438355518114230832460971", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 15, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-438355518114230832460971", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2b44185b-7499-4746-b59f-355be932cff1", - "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2e7cdc0c-37f9-46aa-86ca-3219840c6016", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5bcfc53c-3aac-4a50-86e9-fcd84ea247db", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e2e42c15-66a3-4474-8697-9cc29a8c4180", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:75c1ab80-85d2-4046-9510-ee7bc4a9651e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:50d12164-5503-4f7d-addd-09a159ae9271", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4b0995fa-d340-4884-956d-78dee91fb7f1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b7fc7e56-99b6-41f3-bec1-560192b52025", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:eb568450-30a3-420c-8626-21789409ec3f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5817c6e0-3950-4394-8394-6053bdfd77ab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:45a51b76-5f8b-4c5b-9b85-ec67aad04119", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:2e7cdc0c-37f9-46aa-86ca-3219840c6016", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2e7cdc0c-37f9-46aa-86ca-3219840c6016", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-289647228691961401448812", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2e7cdc0c-37f9-46aa-86ca-3219840c6016", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-289647228691961401448812", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2e7cdc0c-37f9-46aa-86ca-3219840c6016", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-02-09", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5bcfc53c-3aac-4a50-86e9-fcd84ea247db", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5bcfc53c-3aac-4a50-86e9-fcd84ea247db", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-317952735206591536079756", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5bcfc53c-3aac-4a50-86e9-fcd84ea247db", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-317952735206591536079756", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5bcfc53c-3aac-4a50-86e9-fcd84ea247db", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-09-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e2e42c15-66a3-4474-8697-9cc29a8c4180", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e2e42c15-66a3-4474-8697-9cc29a8c4180", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-054413514006705958016466", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e2e42c15-66a3-4474-8697-9cc29a8c4180", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-054413514006705958016466", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e2e42c15-66a3-4474-8697-9cc29a8c4180", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-10-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:75c1ab80-85d2-4046-9510-ee7bc4a9651e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:75c1ab80-85d2-4046-9510-ee7bc4a9651e", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-021004210038257526348013", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:75c1ab80-85d2-4046-9510-ee7bc4a9651e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-021004210038257526348013", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:75c1ab80-85d2-4046-9510-ee7bc4a9651e", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-12-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-28", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:50d12164-5503-4f7d-addd-09a159ae9271", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:50d12164-5503-4f7d-addd-09a159ae9271", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-089485671236914982604470", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:50d12164-5503-4f7d-addd-09a159ae9271", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-089485671236914982604470", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:50d12164-5503-4f7d-addd-09a159ae9271", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-07-03", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4b0995fa-d340-4884-956d-78dee91fb7f1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4b0995fa-d340-4884-956d-78dee91fb7f1", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-020826515303312291927938", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4b0995fa-d340-4884-956d-78dee91fb7f1", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-020826515303312291927938", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4b0995fa-d340-4884-956d-78dee91fb7f1", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-01-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b7fc7e56-99b6-41f3-bec1-560192b52025", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b7fc7e56-99b6-41f3-bec1-560192b52025", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-627713792060879213132685", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b7fc7e56-99b6-41f3-bec1-560192b52025", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-627713792060879213132685", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b7fc7e56-99b6-41f3-bec1-560192b52025", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-09-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:eb568450-30a3-420c-8626-21789409ec3f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:eb568450-30a3-420c-8626-21789409ec3f", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-844152734224046079496371", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:eb568450-30a3-420c-8626-21789409ec3f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-844152734224046079496371", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:eb568450-30a3-420c-8626-21789409ec3f", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-04-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5817c6e0-3950-4394-8394-6053bdfd77ab", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5817c6e0-3950-4394-8394-6053bdfd77ab", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-003402053385521335101777", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5817c6e0-3950-4394-8394-6053bdfd77ab", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-003402053385521335101777", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5817c6e0-3950-4394-8394-6053bdfd77ab", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-01-10", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-04", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:45a51b76-5f8b-4c5b-9b85-ec67aad04119", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:45a51b76-5f8b-4c5b-9b85-ec67aad04119", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-968440137719016823394915", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:45a51b76-5f8b-4c5b-9b85-ec67aad04119", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-968440137719016823394915", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:45a51b76-5f8b-4c5b-9b85-ec67aad04119", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-09-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e76f88b4-d188-4ca6-a0d1-5d1105de531d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e76f88b4-d188-4ca6-a0d1-5d1105de531d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-112835641253968178531936", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e76f88b4-d188-4ca6-a0d1-5d1105de531d", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-112835641253968178531936", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 28, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-112835641253968178531936", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e76f88b4-d188-4ca6-a0d1-5d1105de531d", - "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:78e18ed5-264a-4a35-b735-d19a999addb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b998b569-1b6c-4fd6-9e02-d11ab1d3fbd7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b8dfc4c3-04a3-4c3c-89a1-f7954c4a637c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:10db4e52-9cb7-498e-a347-a5f16a217c06", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9cba9634-f105-462c-9040-22df52592f69", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:97dc843f-79ea-41a1-8f1d-9a688763d021", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d6b672d4-86d7-46c6-8939-b6e9297d5547", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b6775885-88eb-4892-8efb-474bfa49f4fb", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6adcc7e7-7654-4cc9-81e6-58e440dabc59", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7a29a514-3b09-43e3-acd5-c65abc1840dc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:78e18ed5-264a-4a35-b735-d19a999addb8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:78e18ed5-264a-4a35-b735-d19a999addb8", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-662061753630801994618722", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:78e18ed5-264a-4a35-b735-d19a999addb8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-662061753630801994618722", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:78e18ed5-264a-4a35-b735-d19a999addb8", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-07-30", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-10", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b998b569-1b6c-4fd6-9e02-d11ab1d3fbd7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b998b569-1b6c-4fd6-9e02-d11ab1d3fbd7", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-292083362828285815551327", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b998b569-1b6c-4fd6-9e02-d11ab1d3fbd7", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-292083362828285815551327", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b998b569-1b6c-4fd6-9e02-d11ab1d3fbd7", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-10-31", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b8dfc4c3-04a3-4c3c-89a1-f7954c4a637c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b8dfc4c3-04a3-4c3c-89a1-f7954c4a637c", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-439729397349638842126199", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b8dfc4c3-04a3-4c3c-89a1-f7954c4a637c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-439729397349638842126199", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b8dfc4c3-04a3-4c3c-89a1-f7954c4a637c", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-10-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-28", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:10db4e52-9cb7-498e-a347-a5f16a217c06", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:10db4e52-9cb7-498e-a347-a5f16a217c06", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-449403245825836703236348", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:10db4e52-9cb7-498e-a347-a5f16a217c06", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-449403245825836703236348", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:10db4e52-9cb7-498e-a347-a5f16a217c06", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-04-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9cba9634-f105-462c-9040-22df52592f69", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9cba9634-f105-462c-9040-22df52592f69", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-491990304097474621880315", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9cba9634-f105-462c-9040-22df52592f69", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-491990304097474621880315", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9cba9634-f105-462c-9040-22df52592f69", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-03-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:97dc843f-79ea-41a1-8f1d-9a688763d021", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:97dc843f-79ea-41a1-8f1d-9a688763d021", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-597711510509178901563242", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:97dc843f-79ea-41a1-8f1d-9a688763d021", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-597711510509178901563242", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:97dc843f-79ea-41a1-8f1d-9a688763d021", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-01-12", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d6b672d4-86d7-46c6-8939-b6e9297d5547", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d6b672d4-86d7-46c6-8939-b6e9297d5547", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-146711093757311555218829", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d6b672d4-86d7-46c6-8939-b6e9297d5547", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-146711093757311555218829", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d6b672d4-86d7-46c6-8939-b6e9297d5547", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-06-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b6775885-88eb-4892-8efb-474bfa49f4fb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b6775885-88eb-4892-8efb-474bfa49f4fb", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-539888092560925345261630", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b6775885-88eb-4892-8efb-474bfa49f4fb", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-539888092560925345261630", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b6775885-88eb-4892-8efb-474bfa49f4fb", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-02-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6adcc7e7-7654-4cc9-81e6-58e440dabc59", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6adcc7e7-7654-4cc9-81e6-58e440dabc59", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-809493773339642311823600", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6adcc7e7-7654-4cc9-81e6-58e440dabc59", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-809493773339642311823600", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6adcc7e7-7654-4cc9-81e6-58e440dabc59", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-08-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7a29a514-3b09-43e3-acd5-c65abc1840dc", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7a29a514-3b09-43e3-acd5-c65abc1840dc", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-181758372900194667554691", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7a29a514-3b09-43e3-acd5-c65abc1840dc", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-181758372900194667554691", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7a29a514-3b09-43e3-acd5-c65abc1840dc", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-09-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5d61caaa-c05e-4afd-ab35-fcb911cbe98b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5d61caaa-c05e-4afd-ab35-fcb911cbe98b", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-783074322738219207265875", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5d61caaa-c05e-4afd-ab35-fcb911cbe98b", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-783074322738219207265875", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 35, - "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" : 64, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-783074322738219207265875", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5d61caaa-c05e-4afd-ab35-fcb911cbe98b", - "childItems" : [ { - "catenaXId" : "urn:uuid:b2c9a0f7-f03e-4433-81bb-8e054ec6ddae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:34b00588-7dfe-49c1-a8aa-fd07f0bdc992", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:87dc63b5-4de6-4067-b74a-0a14a723d5c1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:027f189d-6fff-46c5-9558-44e01285aaf8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:543ddeca-69f9-4430-883f-994be8157aa3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9f7d654f-554b-4710-9101-26bfa7f7a781", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0e5d7d8b-298d-4d30-be2b-356a2b5d99c0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8efbd599-c074-4985-a85f-6453d550030c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2faa0a34-5fc0-4a91-b54f-2817d9c42159", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:eaa22643-9539-459b-b3f1-7ab345212ff0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:93870eb4-7393-4f91-93bd-6b12144f9324", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:34b00588-7dfe-49c1-a8aa-fd07f0bdc992", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:34b00588-7dfe-49c1-a8aa-fd07f0bdc992", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-646696605967665690642587", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:34b00588-7dfe-49c1-a8aa-fd07f0bdc992", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-646696605967665690642587", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:34b00588-7dfe-49c1-a8aa-fd07f0bdc992", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-10-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:87dc63b5-4de6-4067-b74a-0a14a723d5c1", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:87dc63b5-4de6-4067-b74a-0a14a723d5c1", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-211928697474845597692948", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:87dc63b5-4de6-4067-b74a-0a14a723d5c1", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-211928697474845597692948", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:87dc63b5-4de6-4067-b74a-0a14a723d5c1", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-12-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:027f189d-6fff-46c5-9558-44e01285aaf8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:027f189d-6fff-46c5-9558-44e01285aaf8", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-299440875618756750890334", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:027f189d-6fff-46c5-9558-44e01285aaf8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-299440875618756750890334", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:027f189d-6fff-46c5-9558-44e01285aaf8", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-10-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:543ddeca-69f9-4430-883f-994be8157aa3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:543ddeca-69f9-4430-883f-994be8157aa3", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-019506601126817482487189", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:543ddeca-69f9-4430-883f-994be8157aa3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-019506601126817482487189", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:543ddeca-69f9-4430-883f-994be8157aa3", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-06-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9f7d654f-554b-4710-9101-26bfa7f7a781", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9f7d654f-554b-4710-9101-26bfa7f7a781", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-211713075054073660297892", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9f7d654f-554b-4710-9101-26bfa7f7a781", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-211713075054073660297892", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9f7d654f-554b-4710-9101-26bfa7f7a781", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-11-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-04", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0e5d7d8b-298d-4d30-be2b-356a2b5d99c0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0e5d7d8b-298d-4d30-be2b-356a2b5d99c0", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-766924012908154089127740", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0e5d7d8b-298d-4d30-be2b-356a2b5d99c0", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-766924012908154089127740", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0e5d7d8b-298d-4d30-be2b-356a2b5d99c0", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-11-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-31", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8efbd599-c074-4985-a85f-6453d550030c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8efbd599-c074-4985-a85f-6453d550030c", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-692031807717432071583828", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8efbd599-c074-4985-a85f-6453d550030c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-692031807717432071583828", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8efbd599-c074-4985-a85f-6453d550030c", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-08-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-10", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2faa0a34-5fc0-4a91-b54f-2817d9c42159", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2faa0a34-5fc0-4a91-b54f-2817d9c42159", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-886261633305902269454076", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2faa0a34-5fc0-4a91-b54f-2817d9c42159", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-886261633305902269454076", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2faa0a34-5fc0-4a91-b54f-2817d9c42159", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-04-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:eaa22643-9539-459b-b3f1-7ab345212ff0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:eaa22643-9539-459b-b3f1-7ab345212ff0", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-824753291895471480918986", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:eaa22643-9539-459b-b3f1-7ab345212ff0", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-824753291895471480918986", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:eaa22643-9539-459b-b3f1-7ab345212ff0", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-11-09", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-23", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:93870eb4-7393-4f91-93bd-6b12144f9324", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:93870eb4-7393-4f91-93bd-6b12144f9324", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-540803424901311788238929", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:93870eb4-7393-4f91-93bd-6b12144f9324", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-540803424901311788238929", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:93870eb4-7393-4f91-93bd-6b12144f9324", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-08-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:562b1a05-e1a3-499e-9568-5c71ca37475a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:562b1a05-e1a3-499e-9568-5c71ca37475a", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-931956202957913855580013", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:562b1a05-e1a3-499e-9568-5c71ca37475a", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-931956202957913855580013", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 20, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-931956202957913855580013", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:562b1a05-e1a3-499e-9568-5c71ca37475a", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3d3f67f7-12fe-4e0a-ba5d-407ce6be3e70", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f35ca82e-52c5-4c56-867b-6f5754a8ef48", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:699691da-813c-406b-9ef4-2e5f447aa5fb", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4fbbb4cd-c477-43f9-b956-cff7387f180d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d418d115-8362-40fc-ad7f-a9a6b3e6f568", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3c70ca55-0a35-4d8d-9f41-346bccf448a5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9b964a7f-f6c6-4b78-a872-ca7032af7338", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:40f28caf-e99f-4a01-bcd5-9a84398c8774", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d5d243c0-3435-4cfd-95d1-4cce6661a571", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d7f5a732-4ad2-408f-9906-a62c2060e235", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:3d3f67f7-12fe-4e0a-ba5d-407ce6be3e70", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3d3f67f7-12fe-4e0a-ba5d-407ce6be3e70", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-329770962385728724157920", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3d3f67f7-12fe-4e0a-ba5d-407ce6be3e70", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-329770962385728724157920", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3d3f67f7-12fe-4e0a-ba5d-407ce6be3e70", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-12-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f35ca82e-52c5-4c56-867b-6f5754a8ef48", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f35ca82e-52c5-4c56-867b-6f5754a8ef48", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-808867499316832727721743", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f35ca82e-52c5-4c56-867b-6f5754a8ef48", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-808867499316832727721743", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f35ca82e-52c5-4c56-867b-6f5754a8ef48", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-09-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-23", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:699691da-813c-406b-9ef4-2e5f447aa5fb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:699691da-813c-406b-9ef4-2e5f447aa5fb", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-106879415327801549184422", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:699691da-813c-406b-9ef4-2e5f447aa5fb", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-106879415327801549184422", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:699691da-813c-406b-9ef4-2e5f447aa5fb", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-09-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-31", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4fbbb4cd-c477-43f9-b956-cff7387f180d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4fbbb4cd-c477-43f9-b956-cff7387f180d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-523929389442901978525313", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4fbbb4cd-c477-43f9-b956-cff7387f180d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-523929389442901978525313", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4fbbb4cd-c477-43f9-b956-cff7387f180d", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-10-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d418d115-8362-40fc-ad7f-a9a6b3e6f568", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d418d115-8362-40fc-ad7f-a9a6b3e6f568", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-293428684178846940328074", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d418d115-8362-40fc-ad7f-a9a6b3e6f568", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-293428684178846940328074", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d418d115-8362-40fc-ad7f-a9a6b3e6f568", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-12-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3c70ca55-0a35-4d8d-9f41-346bccf448a5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3c70ca55-0a35-4d8d-9f41-346bccf448a5", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-816188249179912309144432", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3c70ca55-0a35-4d8d-9f41-346bccf448a5", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-816188249179912309144432", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3c70ca55-0a35-4d8d-9f41-346bccf448a5", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-12-14", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-11", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9b964a7f-f6c6-4b78-a872-ca7032af7338", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9b964a7f-f6c6-4b78-a872-ca7032af7338", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-416919961150344797612802", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9b964a7f-f6c6-4b78-a872-ca7032af7338", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-416919961150344797612802", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9b964a7f-f6c6-4b78-a872-ca7032af7338", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-01-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:40f28caf-e99f-4a01-bcd5-9a84398c8774", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:40f28caf-e99f-4a01-bcd5-9a84398c8774", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-101228377018728545548721", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:40f28caf-e99f-4a01-bcd5-9a84398c8774", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-101228377018728545548721", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:40f28caf-e99f-4a01-bcd5-9a84398c8774", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-11-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d5d243c0-3435-4cfd-95d1-4cce6661a571", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d5d243c0-3435-4cfd-95d1-4cce6661a571", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-885753777101568776769180", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d5d243c0-3435-4cfd-95d1-4cce6661a571", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-885753777101568776769180", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d5d243c0-3435-4cfd-95d1-4cce6661a571", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-04-03", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d7f5a732-4ad2-408f-9906-a62c2060e235", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d7f5a732-4ad2-408f-9906-a62c2060e235", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-719005028402733225390200", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d7f5a732-4ad2-408f-9906-a62c2060e235", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-719005028402733225390200", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d7f5a732-4ad2-408f-9906-a62c2060e235", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-07-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b3abaffc-6890-417a-adbe-b6a159ed9290", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3abaffc-6890-417a-adbe-b6a159ed9290", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-209189982631823190254364", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b3abaffc-6890-417a-adbe-b6a159ed9290", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-209189982631823190254364", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 27, - "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" : 49, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" - }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" - }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 - }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-209189982631823190254364", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3abaffc-6890-417a-adbe-b6a159ed9290", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c408a55b-703f-4be8-bcdf-b41d573a9f28", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:535495f0-9ed3-47cd-a7ab-b3386f64f76a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8253f537-94f7-4a69-bf8a-e925a8d1ecdd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1fee8f81-bb4d-4a39-a343-94763e60ea20", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3e5981cd-3fef-4534-ad8c-9ce87ae1575c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8894d6c0-9cbe-4493-8fe0-95a64187b5af", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0621e4b2-4ea6-4ab7-b862-2e604cc36136", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:976a649e-453e-4cd4-9651-849647cfa241", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1e36d54b-7e13-4b87-aec7-0792ab16a89e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4e2e5093-6a63-403e-8efe-8be2fa73e7ad", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:c408a55b-703f-4be8-bcdf-b41d573a9f28", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c408a55b-703f-4be8-bcdf-b41d573a9f28", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-845900666336994591399875", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c408a55b-703f-4be8-bcdf-b41d573a9f28", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-845900666336994591399875", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c408a55b-703f-4be8-bcdf-b41d573a9f28", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-11-13", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:535495f0-9ed3-47cd-a7ab-b3386f64f76a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:535495f0-9ed3-47cd-a7ab-b3386f64f76a", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-680057935586320022269433", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:535495f0-9ed3-47cd-a7ab-b3386f64f76a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-680057935586320022269433", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:535495f0-9ed3-47cd-a7ab-b3386f64f76a", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-04-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8253f537-94f7-4a69-bf8a-e925a8d1ecdd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8253f537-94f7-4a69-bf8a-e925a8d1ecdd", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-094242069603019918208172", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8253f537-94f7-4a69-bf8a-e925a8d1ecdd", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-094242069603019918208172", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8253f537-94f7-4a69-bf8a-e925a8d1ecdd", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-09-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1fee8f81-bb4d-4a39-a343-94763e60ea20", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1fee8f81-bb4d-4a39-a343-94763e60ea20", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-238375429556539417868624", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1fee8f81-bb4d-4a39-a343-94763e60ea20", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-238375429556539417868624", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1fee8f81-bb4d-4a39-a343-94763e60ea20", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-04-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3e5981cd-3fef-4534-ad8c-9ce87ae1575c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3e5981cd-3fef-4534-ad8c-9ce87ae1575c", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-874683687936668060248518", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3e5981cd-3fef-4534-ad8c-9ce87ae1575c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-874683687936668060248518", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3e5981cd-3fef-4534-ad8c-9ce87ae1575c", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-01-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-31", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8894d6c0-9cbe-4493-8fe0-95a64187b5af", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8894d6c0-9cbe-4493-8fe0-95a64187b5af", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-657246842003040313725604", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8894d6c0-9cbe-4493-8fe0-95a64187b5af", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-657246842003040313725604", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8894d6c0-9cbe-4493-8fe0-95a64187b5af", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-08-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-16", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0621e4b2-4ea6-4ab7-b862-2e604cc36136", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0621e4b2-4ea6-4ab7-b862-2e604cc36136", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-602883262581179063927483", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0621e4b2-4ea6-4ab7-b862-2e604cc36136", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-602883262581179063927483", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0621e4b2-4ea6-4ab7-b862-2e604cc36136", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-07-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-11", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:976a649e-453e-4cd4-9651-849647cfa241", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:976a649e-453e-4cd4-9651-849647cfa241", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-312749629851240401718703", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:976a649e-453e-4cd4-9651-849647cfa241", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-312749629851240401718703", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:976a649e-453e-4cd4-9651-849647cfa241", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-06-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1e36d54b-7e13-4b87-aec7-0792ab16a89e", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1e36d54b-7e13-4b87-aec7-0792ab16a89e", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-554341705220032487611284", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1e36d54b-7e13-4b87-aec7-0792ab16a89e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-554341705220032487611284", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1e36d54b-7e13-4b87-aec7-0792ab16a89e", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-08-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4e2e5093-6a63-403e-8efe-8be2fa73e7ad", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4e2e5093-6a63-403e-8efe-8be2fa73e7ad", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-425166215630009168045071", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4e2e5093-6a63-403e-8efe-8be2fa73e7ad", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-425166215630009168045071", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4e2e5093-6a63-403e-8efe-8be2fa73e7ad", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-04-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Schräghecklimousine", - "catenaXId" : "urn:uuid:9664d76a-dfd5-43d8-b429-91eaa7504dd1", - "engine" : { - "size" : 2998, - "power" : 152 - }, - "emptyWeight" : 1.79, - "fuel" : "Benzin/komp.Erdgas", - "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" : "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" : "2021-06-18", - "mileageDistance" : 120000 - } ] - } ], - "catenaXId" : "urn:uuid:9664d76a-dfd5-43d8-b429-91eaa7504dd1", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "SY-65", - "key" : "manufacturerPartId" - }, { - "value" : "OMARGYAEXEEIOXYXX", - "key" : "partInstanceId" - }, { - "value" : "OMARGYAEXEEIOXYXX", - "key" : "van" - } ], - "manufacturingInformation" : { - "date" : "2016-02-21T06:46:05.000Z", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9664d76a-dfd5-43d8-b429-91eaa7504dd1", - "partTypeInformation" : { - "manufacturerPartId" : "SY-65", - "classification" : "product", - "nameAtManufacturer" : "Vehicle Hybrid" - } - } ], - "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" : 67, - "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" : 29, - "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" : 59, - "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" : 65, - "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" : 43, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 5.12 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "TEX1" - } ] - } ], - "urn:bamm:io.catenax.certificate_of_destruction:1.0.1#CertificateOfDestruction" : [ { - "catenaXId" : "urn:uuid:9664d76a-dfd5-43d8-b429-91eaa7504dd1", - "dismantlerProperties" : { - "expiryDate" : "2023-03-14", - "governmentAddress" : { - "zip" : "68161/12", - "country" : "UR", - "street" : "Bernstraße", - "houseNumber" : "45", - "name" : "VLhpfQGTMDYpsBZxvfBoeygjb", - "location" : "Mannheim" - }, - "dismantlerAuditorContact" : { - "phone" : "+908 0984", - "fax" : "2118145186333995599 4455362573 92903453" - }, - "receiverAuditorAddress" : { - "zip" : "68161/12", - "country" : "AR", - "street" : "Bernstraße", - "houseNumber" : "45", - "name" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", - "location" : "Mannheim" - }, - "dismantlerContact" : { - "phone" : " 0437170 59659481408170668550001606181190496817797071900 16680 7 6926221384 05844893247741871 583", - "fax" : "29 013 2258035667 5403" - }, - "dismantlerAuditorAddress" : { - "zip" : "68161/12", - "country" : "GI", - "street" : "Bernstraße", - "houseNumber" : "45", - "name" : "dpHYZGhtgdntugzvvKAXLhM", - "location" : "Mannheim" - }, - "dismantlerAddress" : { - "zip" : "68161/12", - "country" : "KQ", - "street" : "Bernstraße", - "houseNumber" : "45", - "name" : "RYtGKbgicZaHCBRQDSx", - "location" : "Mannheim" - }, - "issueDate" : "2023-03-14", - "isVehicleWithdrawnFromService" : false - }, - "serialNumber" : "LRP1087432", - "companyNumber" : "S30A00065", - "vehicleProperties" : { - "licenseAbbreviation" : "HAL", - "isVehicleInformationComplete" : false, - "licensePlate" : "HAL-UI123", - "identification" : "WBAAY711X0KC28153", - "emptyWeight" : -17, - "model" : "318 I", - "brand" : "BMW", - "class" : "01", - "firstRegistration" : "19.12.2014" - }, - "returnPointProperties" : { - "expiryDate" : "2023-03-14", - "receiverAddress" : { - "zip" : "68161/12", - "country" : "RV", - "street" : "Bernstraße", - "houseNumber" : "45", - "name" : "JxkyvRnL", - "location" : "Mannheim" - }, - "receiverAuditorAddress" : { - "zip" : "68161/12", - "country" : "ZE", - "street" : "Bernstraße", - "houseNumber" : "45", - "name" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", - "location" : "Mannheim" - }, - "receiverAuditorContact" : { - "phone" : "331526303180940 34307479 92660 38225647 520855838909 01 8 72520515310573752386", - "fax" : "60298704457507 9 8577 76" - }, - "receiverContact" : { - "phone" : "+5585 6 2026 20021538 2747306418525503392771787 089739266209007778 279967117", - "fax" : "4270096015 4309445925080622016597027979396859783 08514571099764 9" - }, - "issueDate" : "2023-03-14", - "isVehicleWithdrawnFromService" : true - }, - "vehicleOwnerProperties" : { - "isVehicleOwnerInformationComplete" : true, - "vehicleOwnerAddress" : { - "zip" : "68161/12", - "country" : "DI", - "street" : "Bernstraße", - "houseNumber" : "45", - "name" : "eOMtThyhVNLWUZNRcBaQKxI", - "location" : "Mannheim" - }, - "citizenship" : "DE" - }, - "dismantlingDate" : "2023-03-14" - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9664d76a-dfd5-43d8-b429-91eaa7504dd1", - "childItems" : [ { - "catenaXId" : "urn:uuid:d6dd7e92-b46d-47ff-b2ca-ed6e56776f95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:63be44f4-6923-4cb8-a3b1-40adca703cf3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:29034e7a-397c-432a-bf3c-7c634b333318", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f66a78f2-edef-40d6-988c-cb4f3d04134f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8f09644c-4b1d-4a53-9ef9-f38083a39c59", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d8c3ae01-012b-4854-a378-b245db25ea64", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7e2e2292-497e-4bab-9366-30c2e0a7e3f4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4f8a831c-7da4-441f-8cc0-45115f07bc01", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b5ad5a80-2da4-435e-968c-5e9b19774452", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cc28728d-5bc8-4355-b435-c83fb622ce8f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:56404bf1-cce1-4491-812b-96e55c470c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:73ae5c6c-0a28-4f25-bb94-69456dcf0133", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:211ab0a9-3237-442b-b8d8-d666f2907de8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:61a79f6b-b644-4ec1-9eb5-13652242d281", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e4986391-b2d4-46a3-8fd5-0d72c3eb21dd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4933fcc9-60f0-48fe-928e-eef045a36982", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7fa70dd6-9ac6-4e60-82b9-8b8a659dba38", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0e3d6132-2ab2-44fb-b49e-b8a559219470", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a427ac9c-845b-4358-977f-8442d5963da8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9d2c48fa-a045-4eeb-8116-f08ac55e9514", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ede0de9e-2fd7-40fd-964e-cc8b06a47ba5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:fdcd7192-f524-4060-9bd2-e3fb21e7b151", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a2fe64f7-f70f-40eb-b9dd-6396ce321e81", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0f6f722d-f08c-4329-900d-c58e533b07fd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:fc1a5a4d-d148-4f87-b4da-fbbba9e0cc6b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:237d55ae-bb68-450b-ab89-1a28f8586ed4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:75eb59bd-2836-4897-8a48-ea4dce425ade", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b1cd43a3-fa5f-4519-82f1-dadcee8834b5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d2d13a3d-1d4a-4051-98e3-299256ee3212", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e2daa85f-5a83-4c1b-ba3e-07f02dc51422", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1a3be6ee-e6f0-4fce-880a-06caffdfc9ab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:03a18701-a7d7-43ea-8122-51c8dfdbd7a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5b3e107c-7eb2-472e-bd19-b5cbfd947e61", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B2OM", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d81bde77-ca19-4bc2-a277-e78fb0c8786a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B5MJ", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7c49762f-1c6c-4bf4-8ea5-116cc4db83fa", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:d6dd7e92-b46d-47ff-b2ca-ed6e56776f95", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d6dd7e92-b46d-47ff-b2ca-ed6e56776f95", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "10030939-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-328983399567530476955580", - "key" : "partInstanceId" - }, { - "value" : "Company 7", - "key" : "company" - }, { - "value" : "Brand 7", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d6dd7e92-b46d-47ff-b2ca-ed6e56776f95", - "partTypeInformation" : { - "manufacturerPartId" : "10030939-59", - "customerPartId" : "10030939-59", - "classification" : "component", - "nameAtManufacturer" : "Engine", - "nameAtCustomer" : "Engine" - } - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 560, - "width" : 762, - "length" : 843, - "weight" : 180, - "height" : 711 - } - } ] - }, { - "catenaXId" : "urn:uuid:63be44f4-6923-4cb8-a3b1-40adca703cf3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:63be44f4-6923-4cb8-a3b1-40adca703cf3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "32494586-73", - "key" : "manufacturerPartId" - }, { - "value" : "NO-737374530818032206325801", - "key" : "partInstanceId" - }, { - "value" : "Company 8", - "key" : "company" - }, { - "value" : "Brand 8", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:63be44f4-6923-4cb8-a3b1-40adca703cf3", - "partTypeInformation" : { - "manufacturerPartId" : "32494586-73", - "customerPartId" : "32494586-73", - "classification" : "component", - "nameAtManufacturer" : "Differential Gear", - "nameAtCustomer" : "Differential Gear" - } - } ] - }, { - "catenaXId" : "urn:uuid:29034e7a-397c-432a-bf3c-7c634b333318", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:29034e7a-397c-432a-bf3c-7c634b333318", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "67034319-44", - "key" : "manufacturerPartId" - }, { - "value" : "NO-720519727742552375897244", - "key" : "partInstanceId" - }, { - "value" : "Company 9", - "key" : "company" - }, { - "value" : "Brand 9", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:29034e7a-397c-432a-bf3c-7c634b333318", - "partTypeInformation" : { - "manufacturerPartId" : "67034319-44", - "customerPartId" : "67034319-44", - "classification" : "component", - "nameAtManufacturer" : "Turbocharger", - "nameAtCustomer" : "Turbocharger" - } - } ] - }, { - "catenaXId" : "urn:uuid:f66a78f2-edef-40d6-988c-cb4f3d04134f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f66a78f2-edef-40d6-988c-cb4f3d04134f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "73849201-61", - "key" : "manufacturerPartId" - }, { - "value" : "NO-727853523412228284458262", - "key" : "partInstanceId" - }, { - "value" : "Company 10", - "key" : "company" - }, { - "value" : "Brand 10", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f66a78f2-edef-40d6-988c-cb4f3d04134f", - "partTypeInformation" : { - "manufacturerPartId" : "73849201-61", - "customerPartId" : "73849201-61", - "classification" : "component", - "nameAtManufacturer" : "Catalysator", - "nameAtCustomer" : "Catalysator" - } - } ] - }, { - "catenaXId" : "urn:uuid:8f09644c-4b1d-4a53-9ef9-f38083a39c59", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8f09644c-4b1d-4a53-9ef9-f38083a39c59", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "22782277-50", - "key" : "manufacturerPartId" - }, { - "value" : "NO-568633894332172463267757", - "key" : "partInstanceId" - }, { - "value" : "Company 3", - "key" : "company" - }, { - "value" : "Brand 3", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8f09644c-4b1d-4a53-9ef9-f38083a39c59", - "partTypeInformation" : { - "manufacturerPartId" : "22782277-50", - "customerPartId" : "22782277-50", - "classification" : "component", - "nameAtManufacturer" : "Door f-l", - "nameAtCustomer" : "Door front-left" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8f09644c-4b1d-4a53-9ef9-f38083a39c59", - "childItems" : [ { - "catenaXId" : "urn:uuid:f086bff2-6632-42cf-836f-1414a02e46de", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:f086bff2-6632-42cf-836f-1414a02e46de", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f086bff2-6632-42cf-836f-1414a02e46de", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-490248244769456560814964", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f086bff2-6632-42cf-836f-1414a02e46de", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "40152814JGA", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:f086bff2-6632-42cf-836f-1414a02e46de", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:d8c3ae01-012b-4854-a378-b245db25ea64", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d8c3ae01-012b-4854-a378-b245db25ea64", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "95657362-64", - "key" : "manufacturerPartId" - }, { - "value" : "NO-081329668360342463503526", - "key" : "partInstanceId" - }, { - "value" : "Company 4", - "key" : "company" - }, { - "value" : "Brand 4", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d8c3ae01-012b-4854-a378-b245db25ea64", - "partTypeInformation" : { - "manufacturerPartId" : "33740332-54", - "customerPartId" : "33740332-54", - "classification" : "component", - "nameAtManufacturer" : "Door f-r", - "nameAtCustomer" : "Door front-right" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d8c3ae01-012b-4854-a378-b245db25ea64", - "childItems" : [ { - "catenaXId" : "urn:uuid:4d6fabea-ad81-4bf8-8a94-a09eba3690bd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:4d6fabea-ad81-4bf8-8a94-a09eba3690bd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4d6fabea-ad81-4bf8-8a94-a09eba3690bd", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-928253510718429016943081", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4d6fabea-ad81-4bf8-8a94-a09eba3690bd", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "11902081ZUM", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:4d6fabea-ad81-4bf8-8a94-a09eba3690bd", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:7e2e2292-497e-4bab-9366-30c2e0a7e3f4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7e2e2292-497e-4bab-9366-30c2e0a7e3f4", - "customers" : [ { - "businessPartner" : false, - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "15635759-16", - "key" : "manufacturerPartId" - }, { - "value" : "NO-051263712119423579170722", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7e2e2292-497e-4bab-9366-30c2e0a7e3f4", - "partTypeInformation" : { - "manufacturerPartId" : "15635759-16", - "customerPartId" : "15635759-16", - "classification" : "component", - "nameAtManufacturer" : "Door r-l", - "nameAtCustomer" : "Door rear-left" - } - } ] - }, { - "catenaXId" : "urn:uuid:4f8a831c-7da4-441f-8cc0-45115f07bc01", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4f8a831c-7da4-441f-8cc0-45115f07bc01", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "28673126-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-329438627571110344651745", - "key" : "partInstanceId" - }, { - "value" : "Company 5", - "key" : "company" - }, { - "value" : "Brand 5", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4f8a831c-7da4-441f-8cc0-45115f07bc01", - "partTypeInformation" : { - "manufacturerPartId" : "28673126-98", - "customerPartId" : "28673126-98", - "classification" : "component", - "nameAtManufacturer" : "Door r-r", - "nameAtCustomer" : "Door rear-right" - } - } ] - }, { - "catenaXId" : "urn:uuid:b5ad5a80-2da4-435e-968c-5e9b19774452", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b5ad5a80-2da4-435e-968c-5e9b19774452", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "94421589-82", - "key" : "manufacturerPartId" - }, { - "value" : "NO-972871043475060836597950", - "key" : "partInstanceId" - }, { - "value" : "Company 6", - "key" : "company" - }, { - "value" : "Brand 6", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b5ad5a80-2da4-435e-968c-5e9b19774452", - "partTypeInformation" : { - "manufacturerPartId" : "94421589-82", - "customerPartId" : "94421589-82", - "classification" : "component", - "nameAtManufacturer" : "Engine hood", - "nameAtCustomer" : "Engine hood" - } - } ] - }, { - "catenaXId" : "urn:uuid:cc28728d-5bc8-4355-b435-c83fb622ce8f", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cc28728d-5bc8-4355-b435-c83fb622ce8f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "85023955-75", - "key" : "manufacturerPartId" - }, { - "value" : "NO-520070260539634952194986", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cc28728d-5bc8-4355-b435-c83fb622ce8f", - "partTypeInformation" : { - "manufacturerPartId" : "85023955-75", - "customerPartId" : "85023955-75", - "classification" : "component", - "nameAtManufacturer" : "Tailgate", - "nameAtCustomer" : "Tailgate" - } - } ] - }, { - "catenaXId" : "urn:uuid:56404bf1-cce1-4491-812b-96e55c470c6d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:56404bf1-cce1-4491-812b-96e55c470c6d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "13769860-47", - "key" : "manufacturerPartId" - }, { - "value" : "NO-558583408438447170352522", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:56404bf1-cce1-4491-812b-96e55c470c6d", - "partTypeInformation" : { - "manufacturerPartId" : "13769860-47", - "customerPartId" : "13769860-47", - "classification" : "component", - "nameAtManufacturer" : "Fender left", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:73ae5c6c-0a28-4f25-bb94-69456dcf0133", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:73ae5c6c-0a28-4f25-bb94-69456dcf0133", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "36643162-35", - "key" : "manufacturerPartId" - }, { - "value" : "NO-820874485085601713314657", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:73ae5c6c-0a28-4f25-bb94-69456dcf0133", - "partTypeInformation" : { - "manufacturerPartId" : "36643162-35", - "customerPartId" : "36643162-35", - "classification" : "component", - "nameAtManufacturer" : "Fender right", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:211ab0a9-3237-442b-b8d8-d666f2907de8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:211ab0a9-3237-442b-b8d8-d666f2907de8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "54165444-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-111697553661624744266272", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:211ab0a9-3237-442b-b8d8-d666f2907de8", - "partTypeInformation" : { - "manufacturerPartId" : "54165444-59", - "customerPartId" : "54165444-59", - "classification" : "component", - "nameAtManufacturer" : "Bumper front", - "nameAtCustomer" : "Bumper front" - } - } ] - }, { - "catenaXId" : "urn:uuid:61a79f6b-b644-4ec1-9eb5-13652242d281", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:61a79f6b-b644-4ec1-9eb5-13652242d281", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "22768257-25", - "key" : "manufacturerPartId" - }, { - "value" : "NO-331865846695170721541704", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:61a79f6b-b644-4ec1-9eb5-13652242d281", - "partTypeInformation" : { - "manufacturerPartId" : "22768257-25", - "customerPartId" : "22768257-25", - "classification" : "component", - "nameAtManufacturer" : "Bumper rear", - "nameAtCustomer" : "Bumper rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:e4986391-b2d4-46a3-8fd5-0d72c3eb21dd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e4986391-b2d4-46a3-8fd5-0d72c3eb21dd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "65529521-37", - "key" : "manufacturerPartId" - }, { - "value" : "NO-769655048267590974530650", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e4986391-b2d4-46a3-8fd5-0d72c3eb21dd", - "partTypeInformation" : { - "manufacturerPartId" : "65529521-37", - "customerPartId" : "65529521-37", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror left", - "nameAtCustomer" : "Exterior mirror left" - } - } ] - }, { - "catenaXId" : "urn:uuid:4933fcc9-60f0-48fe-928e-eef045a36982", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4933fcc9-60f0-48fe-928e-eef045a36982", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "58471477-24", - "key" : "manufacturerPartId" - }, { - "value" : "NO-666709036261861151743087", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4933fcc9-60f0-48fe-928e-eef045a36982", - "partTypeInformation" : { - "manufacturerPartId" : "58471477-24", - "customerPartId" : "58471477-24", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror right", - "nameAtCustomer" : "Exterior mirror right" - } - } ] - }, { - "catenaXId" : "urn:uuid:7fa70dd6-9ac6-4e60-82b9-8b8a659dba38", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7fa70dd6-9ac6-4e60-82b9-8b8a659dba38", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "09002013-68", - "key" : "manufacturerPartId" - }, { - "value" : "NO-406326563094489665072507", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7fa70dd6-9ac6-4e60-82b9-8b8a659dba38", - "partTypeInformation" : { - "manufacturerPartId" : "09002013-68", - "customerPartId" : "09002013-68", - "classification" : "component", - "nameAtManufacturer" : "Trailer coupling", - "nameAtCustomer" : "Tailer coupling" - } - } ] - }, { - "catenaXId" : "urn:uuid:0e3d6132-2ab2-44fb-b49e-b8a559219470", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0e3d6132-2ab2-44fb-b49e-b8a559219470", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "43501996-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-318342870648574195050874", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0e3d6132-2ab2-44fb-b49e-b8a559219470", - "partTypeInformation" : { - "manufacturerPartId" : "43501996-98", - "customerPartId" : "43501996-98", - "classification" : "component", - "nameAtManufacturer" : "Dashboard", - "nameAtCustomer" : "Dashboard" - } - } ] - }, { - "catenaXId" : "urn:uuid:a427ac9c-845b-4358-977f-8442d5963da8", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a427ac9c-845b-4358-977f-8442d5963da8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "77795937-13", - "key" : "manufacturerPartId" - }, { - "value" : "NO-362599636704925427285485", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a427ac9c-845b-4358-977f-8442d5963da8", - "partTypeInformation" : { - "manufacturerPartId" : "77795937-13", - "customerPartId" : "77795937-13", - "classification" : "component", - "nameAtManufacturer" : "Steering wheel", - "nameAtCustomer" : "Steering wheel" - } - } ] - }, { - "catenaXId" : "urn:uuid:9d2c48fa-a045-4eeb-8116-f08ac55e9514", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9d2c48fa-a045-4eeb-8116-f08ac55e9514", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "20125432-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-823202577319365135507917", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9d2c48fa-a045-4eeb-8116-f08ac55e9514", - "partTypeInformation" : { - "manufacturerPartId" : "20125432-59", - "customerPartId" : "20125432-59", - "classification" : "component", - "nameAtManufacturer" : "Indicator left", - "nameAtCustomer" : "Indicator left" - } - } ] - }, { - "catenaXId" : "urn:uuid:ede0de9e-2fd7-40fd-964e-cc8b06a47ba5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ede0de9e-2fd7-40fd-964e-cc8b06a47ba5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "19073706-76", - "key" : "manufacturerPartId" - }, { - "value" : "NO-464691172443279033482856", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ede0de9e-2fd7-40fd-964e-cc8b06a47ba5", - "partTypeInformation" : { - "manufacturerPartId" : "19073706-76", - "customerPartId" : "19073706-76", - "classification" : "component", - "nameAtManufacturer" : "Indicator right", - "nameAtCustomer" : "Indicator right" - } - } ] - }, { - "catenaXId" : "urn:uuid:fdcd7192-f524-4060-9bd2-e3fb21e7b151", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fdcd7192-f524-4060-9bd2-e3fb21e7b151", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "45415162-57", - "key" : "manufacturerPartId" - }, { - "value" : "NO-602532150330529396855226", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:fdcd7192-f524-4060-9bd2-e3fb21e7b151", - "partTypeInformation" : { - "manufacturerPartId" : "45415162-57", - "customerPartId" : "45415162-57", - "classification" : "component", - "nameAtManufacturer" : "Led headlight", - "nameAtCustomer" : "Led headlight" - } - } ] - }, { - "catenaXId" : "urn:uuid:a2fe64f7-f70f-40eb-b9dd-6396ce321e81", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a2fe64f7-f70f-40eb-b9dd-6396ce321e81", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "78141846-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-678482811991271695527504", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a2fe64f7-f70f-40eb-b9dd-6396ce321e81", - "partTypeInformation" : { - "manufacturerPartId" : "78141846-87", - "customerPartId" : "78141846-87", - "classification" : "component", - "nameAtManufacturer" : "Starter motor", - "nameAtCustomer" : "Starter motor" - } - } ] - }, { - "catenaXId" : "urn:uuid:0f6f722d-f08c-4329-900d-c58e533b07fd", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f6f722d-f08c-4329-900d-c58e533b07fd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "81324139-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-843009635149868834167151", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0f6f722d-f08c-4329-900d-c58e533b07fd", - "partTypeInformation" : { - "manufacturerPartId" : "81324139-23", - "customerPartId" : "81324139-23", - "classification" : "component", - "nameAtManufacturer" : "Alternator", - "nameAtCustomer" : "Alternator" - } - } ] - }, { - "catenaXId" : "urn:uuid:fc1a5a4d-d148-4f87-b4da-fbbba9e0cc6b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fc1a5a4d-d148-4f87-b4da-fbbba9e0cc6b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "57929013-09", - "key" : "manufacturerPartId" - }, { - "value" : "NO-853403032472188606766212", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:fc1a5a4d-d148-4f87-b4da-fbbba9e0cc6b", - "partTypeInformation" : { - "manufacturerPartId" : "57929013-09", - "customerPartId" : "57929013-09", - "classification" : "component", - "nameAtManufacturer" : "AC compressor", - "nameAtCustomer" : "Air conditioning compressor" - } - } ] - }, { - "catenaXId" : "urn:uuid:237d55ae-bb68-450b-ab89-1a28f8586ed4", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:237d55ae-bb68-450b-ab89-1a28f8586ed4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "61184040-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-921287437807957920774971", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:237d55ae-bb68-450b-ab89-1a28f8586ed4", - "partTypeInformation" : { - "manufacturerPartId" : "61184040-23", - "customerPartId" : "61184040-23", - "classification" : "component", - "nameAtManufacturer" : "Taillight rear", - "nameAtCustomer" : "Taillight rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:75eb59bd-2836-4897-8a48-ea4dce425ade", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:75eb59bd-2836-4897-8a48-ea4dce425ade", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "78744126-74", - "key" : "manufacturerPartId" - }, { - "value" : "NO-359704568485998437734479", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:75eb59bd-2836-4897-8a48-ea4dce425ade", - "partTypeInformation" : { - "manufacturerPartId" : "78744126-74", - "customerPartId" : "78744126-74", - "classification" : "component", - "nameAtManufacturer" : "Taillight front", - "nameAtCustomer" : "Taillight front" - } - } ] - }, { - "catenaXId" : "urn:uuid:b1cd43a3-fa5f-4519-82f1-dadcee8834b5", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b1cd43a3-fa5f-4519-82f1-dadcee8834b5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "12093297-03", - "key" : "manufacturerPartId" - }, { - "value" : "NO-640825363334320947516507", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b1cd43a3-fa5f-4519-82f1-dadcee8834b5", - "partTypeInformation" : { - "manufacturerPartId" : "12093297-03", - "customerPartId" : "12093297-03", - "classification" : "component", - "nameAtManufacturer" : "Axle part front", - "nameAtCustomer" : "Axle part front" - } - } ] - }, { - "catenaXId" : "urn:uuid:d2d13a3d-1d4a-4051-98e3-299256ee3212", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d2d13a3d-1d4a-4051-98e3-299256ee3212", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "88111709-49", - "key" : "manufacturerPartId" - }, { - "value" : "NO-845290496133330339716708", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d2d13a3d-1d4a-4051-98e3-299256ee3212", - "partTypeInformation" : { - "manufacturerPartId" : "88111709-49", - "customerPartId" : "88111709-49", - "classification" : "component", - "nameAtManufacturer" : "Axle part rear", - "nameAtCustomer" : "Axle part rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:e2daa85f-5a83-4c1b-ba3e-07f02dc51422", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e2daa85f-5a83-4c1b-ba3e-07f02dc51422", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "00871379-44", - "key" : "manufacturerPartId" - }, { - "value" : "NO-319553807970286080065202", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e2daa85f-5a83-4c1b-ba3e-07f02dc51422", - "partTypeInformation" : { - "manufacturerPartId" : "00871379-44", - "customerPartId" : "00871379-44", - "classification" : "component", - "nameAtManufacturer" : "Chassis", - "nameAtCustomer" : "Chassis" - } - } ] - }, { - "catenaXId" : "urn:uuid:1a3be6ee-e6f0-4fce-880a-06caffdfc9ab", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1a3be6ee-e6f0-4fce-880a-06caffdfc9ab", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "08901347-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-812892748319818577056533", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1a3be6ee-e6f0-4fce-880a-06caffdfc9ab", - "partTypeInformation" : { - "manufacturerPartId" : "08901347-87", - "customerPartId" : "08901347-87", - "classification" : "component", - "nameAtManufacturer" : "Rims", - "nameAtCustomer" : "Rims" - } - } ] - }, { - "catenaXId" : "urn:uuid:03a18701-a7d7-43ea-8122-51c8dfdbd7a7", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:03a18701-a7d7-43ea-8122-51c8dfdbd7a7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "45863316-60", - "key" : "manufacturerPartId" - }, { - "value" : "NO-332734700189243248691462", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:03a18701-a7d7-43ea-8122-51c8dfdbd7a7", - "partTypeInformation" : { - "manufacturerPartId" : "45863316-60", - "customerPartId" : "45863316-60", - "classification" : "component", - "nameAtManufacturer" : "Tires", - "nameAtCustomer" : "Tires" - } - } ] - }, { - "catenaXId" : "urn:uuid:5b3e107c-7eb2-472e-bd19-b5cbfd947e61", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5b3e107c-7eb2-472e-bd19-b5cbfd947e61", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B2OM", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B2OM", - "key" : "manufacturerId" - }, { - "value" : "1O222E8-43", - "key" : "manufacturerPartId" - }, { - "value" : "NO-859483770766071994006516", - "key" : "partInstanceId" - }, { - "value" : "Company 2", - "key" : "company" - }, { - "value" : "Brand 2", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5b3e107c-7eb2-472e-bd19-b5cbfd947e61", - "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:5b3e107c-7eb2-472e-bd19-b5cbfd947e61", - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-859483770766071994006516", - "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.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Carbon Steel", - "recycledContent" : 65, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 72.843 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - }, { - "materialName" : "Oil", - "recycledContent" : 47, - "materialClass" : "9.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 6.9 - }, - "aggregateState" : "liquid", - "materialAbbreviation" : "SAE40" - }, { - "materialName" : "Copper", - "recycledContent" : 46, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5b3e107c-7eb2-472e-bd19-b5cbfd947e61", - "childItems" : [ { - "catenaXId" : "urn:uuid:11ed0047-db95-411d-b827-361cf675a2b0", - "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a43e4af0-8a57-4ad6-96e2-76d52c0c1007", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:41d0573d-8f8e-45ec-944c-3a703ee41dff", - "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:11ed0047-db95-411d-b827-361cf675a2b0", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:11ed0047-db95-411d-b827-361cf675a2b0", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:11ed0047-db95-411d-b827-361cf675a2b0", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Engineering Plastics", - "materialClass" : "5.1", - "component" : [ { - "materialName" : "PA66", - "recycledContent" : 17, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "PA66" - }, { - "materialName" : "GF-Faser", - "recycledContent" : 45, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 30 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:a43e4af0-8a57-4ad6-96e2-76d52c0c1007", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a43e4af0-8a57-4ad6-96e2-76d52c0c1007", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "03723H3-52", - "key" : "manufacturerPartId" - }, { - "value" : "NO-815649148976375073215745", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a43e4af0-8a57-4ad6-96e2-76d52c0c1007", - "partTypeInformation" : { - "manufacturerPartId" : "03723H3-52", - "customerPartId" : "03723H3-52", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a43e4af0-8a57-4ad6-96e2-76d52c0c1007", - "childItems" : [ { - "catenaXId" : "urn:uuid:38f77a62-a69b-4240-b719-bf6d6bd4e1bb", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:38f77a62-a69b-4240-b719-bf6d6bd4e1bb", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" }, - "catenaXId" : "urn:uuid:38f77a62-a69b-4240-b719-bf6d6bd4e1bb", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "NTIER Product" - } + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-867497373255801160984990", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 } ], - "bpnl" : "BPNL00000003B0Q0", - "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" : 17, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:percent", - "value" : 40 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:41d0573d-8f8e-45ec-944c-3a703ee41dff", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:41d0573d-8f8e-45ec-944c-3a703ee41dff", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } + "productType" : "cell" } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:41d0573d-8f8e-45ec-944c-3a703ee41dff", + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -328475,187 +180475,444 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.2341", - "materialAbbreviation" : "GL338" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:41d0573d-8f8e-45ec-944c-3a703ee41dff", - "childItems" : [ ] } ] }, { - "catenaXId" : "urn:uuid:d81bde77-ca19-4bc2-a277-e78fb0c8786a", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d81bde77-ca19-4bc2-a277-e78fb0c8786a", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "bpnl" : "BPNL00000003B5MJ", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", - "key" : "manufacturerId" - }, { - "value" : "56152M6-03", - "key" : "manufacturerPartId" + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-11-29", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 }, { - "value" : "NO-766492522791044320537895", - "key" : "partInstanceId" + "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 }, - "catenaXId" : "urn:uuid:d81bde77-ca19-4bc2-a277-e78fb0c8786a", - "partTypeInformation" : { - "manufacturerPartId" : "56152M6-03", - "customerPartId" : "56152M6-03", - "classification" : "component", - "nameAtManufacturer" : "ECU", - "nameAtCustomer" : "ECU" - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "recycledContent" : 53, - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.3301 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GL338" - } ] + "type" : "HVB" } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d81bde77-ca19-4bc2-a277-e78fb0c8786a", - "childItems" : [ { - "catenaXId" : "urn:uuid:ed281d3e-2b8c-4a96-87f3-c2b0b81de683", - "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" + "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "228999", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1bd45e1a-20ca-4443-959b-45ebe388760d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d187cacb-f6e0-4a0b-abb2-95000383d51b", - "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "2870", + "materialNameStandardizedValue" : "PP-TD10" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] - } ] - }, { - "catenaXId" : "urn:uuid:ed281d3e-2b8c-4a96-87f3-c2b0b81de683", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "BID12345678", - "key" : "batchId" + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-234433363527778995608209", + "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:ed281d3e-2b8c-4a96-87f3-c2b0b81de683", + "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ed281d3e-2b8c-4a96-87f3-c2b0b81de683", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, "measurementUnit" : "unit:litre" }, + "ownerItemId" : "urn:uuid:0f13f249-d965-477f-ae0a-08ab28801cf4", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "bpnl" : "BPNL00000003AXS3", - "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 + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 }, - "aggregateState" : "solid", - "materialAbbreviation" : "AL7" - }, { - "materialName" : "Other", - "recycledContent" : 47, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:1bd45e1a-20ca-4443-959b-45ebe388760d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1bd45e1a-20ca-4443-959b-45ebe388760d", + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-234433363527778995608209", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AYRE", "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" @@ -328666,232 +180923,195 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "57760N7-77", - "key" : "manufacturerPartId" - }, { - "value" : "NO-248972346570047935563592", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1bd45e1a-20ca-4443-959b-45ebe388760d", - "partTypeInformation" : { - "manufacturerPartId" : "57760N7-77", - "customerPartId" : "57760N7-77", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1bd45e1a-20ca-4443-959b-45ebe388760d", + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", "childItems" : [ { - "catenaXId" : "urn:uuid:3c8f78d0-6eaf-4263-9930-5dd47ef33571", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "catenaXId" : "urn:uuid:3c8f78d0-6eaf-4263-9930-5dd47ef33571", - "urn:bamm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-11-11", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 }, { - "value" : "BID12345678", - "key" : "batchId" + "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 }, - "catenaXId" : "urn:uuid:3c8f78d0-6eaf-4263-9930-5dd47ef33571", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } + "type" : "HVB" } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Engineering Plastics", - "materialClass" : "5.1", - "component" : [ { - "materialName" : "PA66", - "recycledContent" : 20, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 + "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "574946", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } }, - "aggregateState" : "solid", - "materialAbbreviation" : "PA66" - }, { - "materialName" : "GF-Faser", - "recycledContent" : 45, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 30 + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:d187cacb-f6e0-4a0b-abb2-95000383d51b", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d187cacb-f6e0-4a0b-abb2-95000383d51b", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "1733", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "76727B3-83", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-919113658681429680777524", + "value" : "NO-352108796706027868787571", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:d187cacb-f6e0-4a0b-abb2-95000383d51b", + "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", "partTypeInformation" : { - "manufacturerPartId" : "76727B3-83", - "customerPartId" : "76727B3-83", - "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" : 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" + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" }, - "returnConditions" : "Wishes to buy", - "requestDate" : "2022-01-01", - "needsReturn" : true, - "latestReturnDate" : "2025-01-01" + "itemVersion" : "01" } ], - "catenaXId" : "urn:uuid:7c49762f-1c6c-4bf4-8ea5-116cc4db83fa", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7c49762f-1c6c-4bf4-8ea5-116cc4db83fa", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, "measurementUnit" : "unit:litre" }, + "ownerItemId" : "urn:uuid:b5da61e9-871c-4ecc-99ba-79b0d377d985", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "38049661-08", - "key" : "manufacturerPartId" - }, { - "value" : "NO-076672429737098065891053", - "key" : "partInstanceId" - }, { - "value" : "Company 1", - "key" : "company" - }, { - "value" : "Brand 1", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:7c49762f-1c6c-4bf4-8ea5-116cc4db83fa", + "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", "partTypeInformation" : { - "manufacturerPartId" : "38049661-08", - "customerPartId" : "38049661-08", - "classification" : "component", - "nameAtManufacturer" : "Battery", - "nameAtCustomer" : "Battery" + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" } } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "pack" - } ], - "productType" : "pack" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -329116,7 +181336,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-076672429737098065891053", + "batteryIDDMCCode" : "NO-352108796706027868787571", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -329127,352 +181347,247 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 28, + "recycledContent" : 49, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", - "value" : 5.4 + "value" : 1.2 }, "aggregateState" : "solid", "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 18, + "recycledContent" : 34, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", - "value" : 11.75 + "value" : 2.5 }, "aggregateState" : "solid", "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 60, + "recycledContent" : 40, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", - "value" : 1.23 + "value" : 0.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" : false, - "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" : "38049661-08", - "technicalSpecification" : [ { - "technicalValue" : "RYtGKbgicZaHCBRQDSx", - "key" : "JxkyvRnL" - } ], - "productLink" : "https://123", - "oeNumber" : "NO-076672429737098065891053", - "category" : { - "subCategory" : [ "Battery" ], - "mainCategory" : [ "Audio, video, navigation" ] - }, - "originalManufacturer" : "Company 1", - "brand" : "Brand 1", - "productDescription" : "Battery" - }, - "sku" : "1002090, xYz.09, ABcXYZ", - "mileage" : 120000.06 - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "childItems" : [ { + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", - "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "lifespan" : { - "unit" : "unit:day", - "value" : 36 - } - }, - "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-076672429737098065891053", - "key" : "PartInstanceID" - } ], - "gtin" : "12345678", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "8703 24 10 00" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "safetyPackaging" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2000-01-01", - "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", - "name" : "Lead", - "location" : "Housing", - "concentration" : { - "left" : [ 3.592682E37 ] - }, - "id" : "RC0402" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", - "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : true, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } - } ], - "carbonContentTotal" : 2.5 + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL1234567890ZZ", - "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7c49762f-1c6c-4bf4-8ea5-116cc4db83fa", - "childItems" : [ { - "catenaXId" : "urn:uuid:8f27b819-5943-4594-ab52-731947b80e6d", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2d927b64-93ee-446e-a577-b6db609f641d", + "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f05fa855-5571-48a8-bf4b-9a96bb259ab2", + "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0140f4df-4fc5-4291-8188-8599823a2436", + "catenaXId" : "urn:uuid:8676f165-bf4c-4a55-ace1-08df65e2f835", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9a06a3f0-d021-451c-93ea-8b8020a12629", + "catenaXId" : "urn:uuid:a1d66637-a7e1-48f6-b242-fa2217f691b6", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:611408dc-921f-45a6-b80c-b10b91a1543f", + "catenaXId" : "urn:uuid:a462bfe5-5071-4a30-950d-54c1f083e904", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:8f27b819-5943-4594-ab52-731947b80e6d", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8f27b819-5943-4594-ab52-731947b80e6d", - "customers" : [ { + }, { + "catenaXId" : "urn:uuid:cb36d626-0fc9-4b0f-b322-de454d6bb41d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "90764", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "6177", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -329480,31 +181595,264 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-645340221142826984402676", + "value" : "NO-513465712429541111831569", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:8f27b819-5943-4594-ab52-731947b80e6d", + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0d7c9619-af62-41fe-a888-cecb4ed250cd", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fefa38d5-0efd-4d71-a92a-eeccb72ac3b9", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4a8b5cf8-93fc-4f6e-abbd-f6df7d5492bd", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:544145c5-6553-4f7f-8450-eacb815b415a", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b99ab465-e8b8-4686-b604-187720ac60a6", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f38ef7b5-e5b9-43b7-9161-6c03b3543e18", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4495b76c-88b4-4590-9533-6c8a1d09dd1f", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:85eb4b3f-dfcb-49ea-b279-3c123b8a4e77", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:8676f165-bf4c-4a55-ace1-08df65e2f835", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:405cb7cb-c22a-44aa-a129-c7395d2415b2", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:a1d66637-a7e1-48f6-b242-fa2217f691b6", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ba17dda5-76b0-462a-9941-6b8064a0b640", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:a462bfe5-5071-4a30-950d-54c1f083e904", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d7535b59-cda6-4e4f-bd4d-c4702d5dcef5", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:cb36d626-0fc9-4b0f-b322-de454d6bb41d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -329729,7 +182077,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-645340221142826984402676", + "batteryIDDMCCode" : "NO-513465712429541111831569", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -329740,40 +182088,7 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Cooper", - "recycledContent" : 35, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 57, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", @@ -329784,99 +182099,99 @@ "value" : 1 }, "registration" : { - "customerPartId" : "PRT-12345", - "manufacturerPartId" : "123-0.740-3434-A" + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" } }, "typology" : { "name" : "Transmission Type 8HP60", - "description" : "Product Description long text", + "description" : "This is the product description of a module", "class" : { - "code" : "44-09-02-02", - "definition" : "Manual transmission (motor vehicle)" + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" }, - "nameAtManufacturer" : "Mirror left", - "nameAtCustomer" : "side element A" + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" }, "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL1234567890ZZ", - "eori" : "GB123456789000" + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" }, - "issueDate" : "2000-01-01", - "version" : "1.0.0", - "status" : "Draft" + "issueDate" : "2023-04-14", + "version" : 1.1, + "status" : "Invalid" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 0.03, - "width" : 1000, - "length" : 20000.1, - "weight" : 100.7, - "height" : 0.1 + "diameter" : 229.6336, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 }, "lifespan" : { - "unit" : "unit:day", - "value" : 36 + "unit" : "unit:year", + "value" : 16 } }, "commercial" : { - "placedOnMarket" : "2000-01-01", - "warranty" : 36 + "placedOnMarket" : "2022-05-22", + "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-645340221142826984402676", + "value" : "NO-513465712429541111831569", "key" : "PartInstanceID" } ], - "gtin" : "12345678", + "gtin" : " 30556220", "additionalCode" : [ { "name" : "TARIC", - "value" : "8703 24 10 00" + "value" : "162038866" } ] }, "sources" : { "optional" : [ { "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, - "name" : "other" + "name" : "sustainability" } ], "mandatory" : { "safetyTransportation" : { - "header" : "Sustainability Document Material XY", + "header" : "Shipping guidelines", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "substanceOfConcernDisassembly" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Compliance", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "substanceOfConcernInstruction" : { - "header" : "Sustainability Document Material XY", + "header" : "Laboratory test results HVB Module HV MODUL", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "safetyPackaging" : { - "header" : "Sustainability Document Material XY", + "header" : "Packaging instruction for HVB Module HV MODUL", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "declarationOfConformity" : [ { "document" : { "header" : "Sustainability Document Material XY", "category" : "Safety", - "type" : "link", - "content" : "www.alink.pdf" + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" }, "name" : "other" } ] @@ -329884,209 +182199,203 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2000-01-01", + "date" : "2023-04-24", "activity" : "Inspection", - "description" : "Check tire pressure and rotate tires", - "title" : "Check-up" + "description" : "Battery test", + "title" : "Maintenance Service" } ], - "reusablePackaging" : true, + "reusablePackaging" : false, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", "producerId" : "BPNL1234567890ZZ" } ], "substanceOfConcern" : [ { - "unit" : "unit:partPerMillion", + "unit" : "unit:percent", "name" : "Lead", - "location" : "Housing", + "location" : "HvbCell", "concentration" : { - "left" : [ 3.592682E37 ] + "left" : [ 4.767 ] }, - "id" : "RC0402" + "id" : "IW4785" } ] }, "additionalData" : [ { "data" : "23", "children" : [ { - "data" : "23", - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", + "data" : "", + "description" : "", + "label" : "", "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" + "dataType" : "xsd:string", + "typeUnit" : "" } } ], - "description" : "Description of an attribute", - "label" : "Maximum permitted battery power", + "description" : "", + "label" : "", "type" : { - "dataType" : "array", - "typeUnit" : "unit:volume" + "dataType" : "xsd:string", + "typeUnit" : "" } } ], "sustainability" : { "material" : [ { - "recycled" : false, - "renewable" : true, + "recycled" : true, + "renewable" : false, "percentage" : 5, - "name" : "Aluminium" + "name" : "Nickel" } ], - "critical" : [ "eOMtThyhVNLWUZNRcBaQKxI" ], + "critical" : [ "Cobalt" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { "extWBCSD_otherOperatorName" : "NSF", "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : { + "productOrSectorSpecificRules" : [ { "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } + } ] } ], - "carbonContentTotal" : 2.5 + "carbonContentTotal" : 106 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL1234567890ZZ", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL1234567890ZZ", + "facilityId" : "BPNL00000003B3NX", "manufacturerId" : "BPNL00000003AYRE" } } } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8f27b819-5943-4594-ab52-731947b80e6d", - "childItems" : [ { - "catenaXId" : "urn:uuid:3be9f09c-5dca-46cb-b89f-db69567a3bb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9ac4f35d-c18c-4ca7-95ad-653b9a8e4efa", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f6fb0dce-8ccd-481a-a97a-770e2b134cce", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e00d1039-3eaa-4454-aac6-3a9e349e2dc2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5ddf1ee9-397d-45df-9cf4-1a1f9039dd94", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:da8fd415-b8c0-4400-88df-ccb76973620c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d7639e49-1e22-457f-b080-136cf9f590fb", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "customers" : [ { "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0cea2645-9fda-4bb1-8632-88f4f7fcec25", + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-08-21", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 }, { - "catenaXId" : "urn:uuid:c0900064-a763-4c89-af6d-f7d1ae8e0491", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "883160", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f3f44ec4-b550-48d5-bfdc-9ff642ca60fb", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b6ecf9ce-fbc6-47b3-822f-7bd066e47ca2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "2652", + "materialNameStandardizedValue" : "PP-TD10" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:9ac4f35d-c18c-4ca7-95ad-653b9a8e4efa", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9ac4f35d-c18c-4ca7-95ad-653b9a8e4efa", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -330094,31 +182403,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-337067651742880649644849", + "value" : "NO-882472948282380332973098", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:9ac4f35d-c18c-4ca7-95ad-653b9a8e4efa", + "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "05" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0ad6dd3f-c673-40b5-a37e-72c399af9b08", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -330127,7 +182461,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -330352,7 +182704,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-337067651742880649644849", + "batteryIDDMCCode" : "NO-882472948282380332973098", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -330363,32 +182715,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9ac4f35d-c18c-4ca7-95ad-653b9a8e4efa", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-07-09", + "currentStateOfHealthTimestamp" : "2023-08-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-12", + "currentStateOfHealthTimestamp" : "2024-02-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -330397,28 +182775,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f6fb0dce-8ccd-481a-a97a-770e2b134cce", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f6fb0dce-8ccd-481a-a97a-770e2b134cce", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "278409", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "9260", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -330426,31 +182851,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-820027591069265384376926", + "value" : "NO-377536511860412570066760", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:f6fb0dce-8ccd-481a-a97a-770e2b134cce", + "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:da3d43ee-d2ac-4797-ba8f-fa65b29aa40e", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -330459,7 +182909,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -330684,7 +183152,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-820027591069265384376926", + "batteryIDDMCCode" : "NO-377536511860412570066760", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -330695,32 +183163,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f6fb0dce-8ccd-481a-a97a-770e2b134cce", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-03-02", + "currentStateOfHealthTimestamp" : "2020-11-02", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-16", + "currentStateOfHealthTimestamp" : "2024-02-27", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -330729,28 +183223,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e00d1039-3eaa-4454-aac6-3a9e349e2dc2", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e00d1039-3eaa-4454-aac6-3a9e349e2dc2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "295968", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "2028", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -330758,31 +183299,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-555947312864809586927413", + "value" : "NO-701547472602799656630142", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:e00d1039-3eaa-4454-aac6-3a9e349e2dc2", + "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "02" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:75bf40e6-8e1b-43a1-9723-bccc9e145a5b", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -330791,7 +183357,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -331016,7 +183600,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-555947312864809586927413", + "batteryIDDMCCode" : "NO-701547472602799656630142", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -331027,32 +183611,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e00d1039-3eaa-4454-aac6-3a9e349e2dc2", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-01-04", + "currentStateOfHealthTimestamp" : "2023-07-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-29", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -331061,28 +183671,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5ddf1ee9-397d-45df-9cf4-1a1f9039dd94", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5ddf1ee9-397d-45df-9cf4-1a1f9039dd94", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "124613", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "5294", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -331090,31 +183747,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-258731383861456778530842", + "value" : "NO-198122193606342526648807", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:5ddf1ee9-397d-45df-9cf4-1a1f9039dd94", + "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "03" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:77247910-191b-4599-bc1f-b1dfb6234afd", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -331123,7 +183805,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -331348,7 +184048,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-258731383861456778530842", + "batteryIDDMCCode" : "NO-198122193606342526648807", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -331359,43 +184059,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5ddf1ee9-397d-45df-9cf4-1a1f9039dd94", - "childItems" : [ { - "catenaXId" : "urn:uuid:b64645fd-4d20-4696-a6b3-e853306b8558", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, -{ - "catenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CNKC", + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-10-26", + "currentStateOfHealthTimestamp" : "2023-05-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-08-17", + "currentStateOfHealthTimestamp" : "2024-02-18", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -331404,28 +184119,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:da8fd415-b8c0-4400-88df-ccb76973620c", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:da8fd415-b8c0-4400-88df-ccb76973620c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "310629", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "7292", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -331433,31 +184195,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-622692051236174192901563", + "value" : "NO-861416653605285640927773", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:da8fd415-b8c0-4400-88df-ccb76973620c", + "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:765bd7f0-d494-41d8-8641-1380055afe8a", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -331466,7 +184253,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -331691,7 +184496,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-622692051236174192901563", + "batteryIDDMCCode" : "NO-861416653605285640927773", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -331702,32 +184507,58 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:da8fd415-b8c0-4400-88df-ccb76973620c", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : true, + "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { "minimalStateOfHealth" : { "minimalStateOfHealthValue" : 90, "specificatorId" : "OEM", "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-11-20", + "currentStateOfHealthTimestamp" : "2021-07-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2023-09-09", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -331736,28 +184567,75 @@ "electrictiyCapacityMin" : 26212.182226034147 }, "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d7639e49-1e22-457f-b080-136cf9f590fb", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d7639e49-1e22-457f-b080-136cf9f590fb", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "938186", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "6877", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ], - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -331765,31 +184643,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-341800743032536550018481", + "value" : "NO-549783520636760057701443", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, - "catenaXId" : "urn:uuid:d7639e49-1e22-457f-b080-136cf9f590fb", + "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "01" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a9c4698c-1568-4fad-a44c-356a30e8762c", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -331798,7 +184701,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -332023,7 +184944,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-341800743032536550018481", + "batteryIDDMCCode" : "NO-549783520636760057701443", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -332034,42 +184955,33 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d7639e49-1e22-457f-b080-136cf9f590fb", - "childItems" : [ { - "catenaXId" : "urn:uuid:21cdc717-3b05-4d7c-bf10-b1bf4cab7326", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-09-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" } ] - }, + } + , { "catenaXId": "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", "bpnl": "BPNL00000003AYRE", @@ -339162,4 +192074,5 @@ ] } ] + } \ No newline at end of file diff --git a/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/central/AssetAdministrationShellTestdataCreator.java b/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/central/AssetAdministrationShellTestdataCreator.java index 4c0316fbab..4bd75fc24a 100644 --- a/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/central/AssetAdministrationShellTestdataCreator.java +++ b/irs-registry-client/src/main/java/org/eclipse/tractusx/irs/registryclient/central/AssetAdministrationShellTestdataCreator.java @@ -114,22 +114,22 @@ public AssetAdministrationShellDescriptor createDummyAssetAdministrationShellDes } private SubmodelDescriptor createSingleLevelBomAsBuiltSubmodelDescriptor(final String catenaXId) { - return createSubmodelDescriptor(catenaXId, "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt", + return createSubmodelDescriptor(catenaXId, "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt", "singleLevelBomAsBuilt"); } private SubmodelDescriptor createSingleLevelUsageAsBuiltSubmodelDescriptor(final String catenaXId) { - return createSubmodelDescriptor(catenaXId, "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt", + return createSubmodelDescriptor(catenaXId, "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt", "singleLevelUsageAsBuilt"); } private SubmodelDescriptor createSingleLevelBomAsSpecifiedSubmodelDescriptor(final String catenaXId) { - return createSubmodelDescriptor(catenaXId, "urn:bamm:io.catenax.single_level_bom_as_specified:1.0.0#SingleLevelBomAsSpecified", + return createSubmodelDescriptor(catenaXId, "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified", "singleLevelBomAsSpecified"); } private SubmodelDescriptor createSerialPartSubmodelDescriptor(final String catenaXId) { - return createSubmodelDescriptor(catenaXId, "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart", "serialPart"); + return createSubmodelDescriptor(catenaXId, "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", "serialPart"); } private SubmodelDescriptor createSingleLevelBomAsPlannedSubmodelDescriptor(final String catenaXId) { @@ -142,21 +142,21 @@ private SubmodelDescriptor createPartAsPlannedSubmodelDescriptor(final String ca } private SubmodelDescriptor createBatchSubmodelDescriptor(final String catenaXId) { - return createSubmodelDescriptor(catenaXId, "urn:bamm:io.catenax.batch:2.0.0#Batch", "batch"); + return createSubmodelDescriptor(catenaXId, "urn:samm:io.catenax.batch:3.0.0#Batch", "batch"); } private SubmodelDescriptor createMaterialForRecyclingSubmodelDescriptor(final String catenaXId) { - return createSubmodelDescriptor(catenaXId, "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + return createSubmodelDescriptor(catenaXId, "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", "materialForRecycling"); } private SubmodelDescriptor createProductDescriptionSubmodelDescriptor(final String catenaXId) { - return createSubmodelDescriptor(catenaXId, "urn:bamm:io.catenax.product_description:1.0.0#ProductDescription", + return createSubmodelDescriptor(catenaXId, "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription", "productDescription"); } private SubmodelDescriptor createPhysicalDimensionSubmodelDescriptor(final String catenaXId) { - return createSubmodelDescriptor(catenaXId, "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension", "physicalDimension"); + return createSubmodelDescriptor(catenaXId, "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension", "physicalDimension"); } private SubmodelDescriptor createPartAsSpecifiedSubmodelDescriptor(final String catenaXId) { diff --git a/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/central/AssetAdministrationShellTestdataCreatorTest.java b/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/central/AssetAdministrationShellTestdataCreatorTest.java index acc0ed5269..e27a923156 100644 --- a/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/central/AssetAdministrationShellTestdataCreatorTest.java +++ b/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/central/AssetAdministrationShellTestdataCreatorTest.java @@ -47,7 +47,7 @@ class AssetAdministrationShellTestdataCreatorTest extends LocalTestDataConfigura @Test void shouldReturnAssetAdministrationShellDescriptorWhenRequestingWithCatenaXId() { - final String catenaXId = "urn:uuid:a65c35a8-8d31-4a86-899b-57912de33675"; + final String catenaXId = "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f"; final AssetAdministrationShellDescriptor aasDescriptor = assetAdministrationShellTestdataCreator.createDummyAssetAdministrationShellDescriptorForId( catenaXId); @@ -64,8 +64,8 @@ void shouldReturnAssetAdministrationShellDescriptorWhenRequestingWithCatenaXId() assertThat(endpointAddress).isEqualTo("singleLevelBomAsBuilt"); assertThat(aasDescriptor.getSubmodelDescriptors().get(0).getEndpoints().get(0).getProtocolInformation().getSubprotocolBody()).contains(catenaXId); - assertThat(aasDescriptor.getSubmodelDescriptors().get(0).getSemanticId().getKeys().get(0).getValue()).isEqualTo("urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt"); - assertThat(aasDescriptor.getSubmodelDescriptors().get(1).getSemanticId().getKeys().get(0).getValue()).isEqualTo("urn:bamm:io.catenax.serial_part:1.0.1#SerialPart"); + assertThat(aasDescriptor.getSubmodelDescriptors().get(0).getSemanticId().getKeys().get(0).getValue()).isEqualTo("urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt"); + assertThat(aasDescriptor.getSubmodelDescriptors().get(1).getSemanticId().getKeys().get(0).getValue()).isEqualTo("urn:samm:io.catenax.serial_part:3.0.0#SerialPart"); } @Test diff --git a/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/central/CentralDigitalTwinRegistryServiceTest.java b/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/central/CentralDigitalTwinRegistryServiceTest.java index 96919bc530..55624556b7 100644 --- a/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/central/CentralDigitalTwinRegistryServiceTest.java +++ b/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/central/CentralDigitalTwinRegistryServiceTest.java @@ -57,8 +57,8 @@ @ExtendWith(MockitoExtension.class) class CentralDigitalTwinRegistryServiceTest extends LocalTestDataConfigurationAware { - private final String singleLevelBomAsBuiltURN = "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt"; - private final String serialPartURN = "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart"; + private final String singleLevelBomAsBuiltURN = "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt"; + private final String serialPartURN = "urn:samm:io.catenax.serial_part:3.0.0#SerialPart"; private DigitalTwinRegistryService digitalTwinRegistryService; @Mock private DigitalTwinRegistryClient dtRegistryClientMock; @@ -77,7 +77,7 @@ void setUp() throws IOException { @Test void shouldReturnSubmodelEndpointsWhenRequestingWithCatenaXId() throws RegistryServiceException { - final String existingCatenaXId = "urn:uuid:a65c35a8-8d31-4a86-899b-57912de33675"; + final String existingCatenaXId = "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f"; final Collection aasShellDescriptor = digitalTwinRegistryService.fetchShells( List.of(new DigitalTwinRegistryKey(existingCatenaXId, ""))); @@ -174,7 +174,7 @@ void shouldThrowErrorWhenCallingTestId() { @Test void shouldReturnSubmodelEndpointsWhenFilteringByAspectType() throws RegistryServiceException { - final String existingCatenaXId = "urn:uuid:a65c35a8-8d31-4a86-899b-57912de33675"; + final String existingCatenaXId = "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f"; final List shellEndpoints = digitalTwinRegistryService.fetchShells( List.of(new DigitalTwinRegistryKey(existingCatenaXId, ""))) diff --git a/local/testing/testdata/CX_Testdata_v1.6.2_AsBuilt-not-accepted-policy.json b/local/testing/testdata/CX_Testdata_v1.7.0_AsBuilt-not-accepted-policy.json similarity index 68% rename from local/testing/testdata/CX_Testdata_v1.6.2_AsBuilt-not-accepted-policy.json rename to local/testing/testdata/CX_Testdata_v1.7.0_AsBuilt-not-accepted-policy.json index beb72df935..d346000e7d 100644 --- a/local/testing/testdata/CX_Testdata_v1.6.2_AsBuilt-not-accepted-policy.json +++ b/local/testing/testdata/CX_Testdata_v1.7.0_AsBuilt-not-accepted-policy.json @@ -1,4 +1,4 @@ -{ +{ "policies": { "ID 3.0 NotAccepted": { "@context": { @@ -28,29 +28,112 @@ ] } } - }, - "https://catenax.io/schema/TestDataContainer/1.0.0" : [ - { + }, + "https://catenax.io/schema/TestDataContainer/1.0.0" : [ { + + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b0cc2dc9-b011-4b21-9c58-f48bd06d439f", + "childItems" : [ { + "catenaXId" : "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-05-29", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], "catenaXId" : "urn:uuid:b0cc2dc9-b011-4b21-9c58-f48bd06d439f", "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b0cc2dc9-b011-4b21-9c58-f48bd06d439f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7192e2e9-70aa-4e81-8fef-8c9ee3595aad", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "845221", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "1665", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } } ] } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" @@ -58,31 +141,56 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-202985304807824966383613", + "value" : "NO-088559388438816364444095", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] }, "catenaXId" : "urn:uuid:b0cc2dc9-b011-4b21-9c58-f48bd06d439f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", - "classification" : "component", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" - } + }, + "itemVersion" : "04" } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b0cc2dc9-b011-4b21-9c58-f48bd06d439f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a7852bf6-ea94-40e5-895b-bd240eee8469", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { "physicalDimensionsProperty" : { "diameter" : 380, "width" : 590, @@ -91,7 +199,25 @@ "height" : 610 } } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b0cc2dc9-b011-4b21-9c58-f48bd06d439f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, "batteryEnergy" : { @@ -316,7 +442,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-202985304807824966383613", + "batteryIDDMCCode" : "NO-088559388438816364444095", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -327,42 +453,32 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { "catenaXId" : "urn:uuid:b0cc2dc9-b011-4b21-9c58-f48bd06d439f", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" } ] - } ] - - + } + ] + } \ No newline at end of file diff --git a/local/testing/testdata/CX_Testdata_v1.7.0_AsBuilt-reduced-with-Specified.json b/local/testing/testdata/CX_Testdata_v1.7.0_AsBuilt-reduced-with-Specified.json new file mode 100644 index 0000000000..23ded49800 --- /dev/null +++ b/local/testing/testdata/CX_Testdata_v1.7.0_AsBuilt-reduced-with-Specified.json @@ -0,0 +1,185016 @@ +{ + "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": "PURPOSE", + "odrl:operator": { + "@id": "odrl:eq" + }, + "odrl:rightOperand": "ID 3.0 Trace" + } + ] + } + } + ] + } + } + }, + "https://catenax.io/schema/TestDataContainer/1.0.0" : [ { + "catenaXId" : "urn:uuid:76e07e0b-15e9-4279-9d19-8bee67260ce4", + "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", + "BATCH_SEALANT_1" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "BATCH_SEALANT_2" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "AUTHOR" : "T-Systems", + "BPN_NATURAL_RUBBER" : "BPNL00000007OR16", + "BATCH_GLUE_2" : "urn:uuid:70e850fd-c1cb-4418-964e-cd3ba0bb6459", + "BATCH_GLUE_1" : "urn:uuid:8d75a647-b003-46d9-9ed2-d3577cb1a171", + "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", + "SPT_MPO_LINK" : "urn:uuid:13752e97-e42f-4cd8-89b5-333615d4de5c", + "BPN_TIER_B" : "BPNL00000003B5MJ", + "BPN_SUB_TIER_B" : "BPNL00000003AXS3", + "BPN_SUB_TIER_A" : "BPNL00000003B3NX", + "BATCH_CATHODE_1" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "BATCH_CATHODE_2" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "BPN_SUB_TIER_C" : "BPNL00000000BJTL", + "CREATION_DATE" : "2024-03-15T06:19:40.513Z", + "BPN_TIER_C_SITE_A" : "BPNS00000003CSGV", + "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", + "BATCH_POLYAMID_1" : "urn:uuid:a87b4573-048a-42e0-a0a6-86c4680c28b1", + "BATCH_POLYAMID_2" : "urn:uuid:cd81204d-f7ac-4673-833b-799ea6da60d7" + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 48, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 31, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 53, + "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" : 1, + "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" : 66, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 17, + "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" : 7, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "childItems" : [ { + "catenaXId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003CSGV", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003CSGV", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B2OM", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B5MJ", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "NK-28", + "key" : "manufacturerPartId" + }, { + "value" : "OMBOCDCFHZXMZBJZC", + "key" : "partInstanceId" + }, { + "value" : "OMBOCDCFHZXMZBJZC", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2020-08-19T11:21:15.000Z", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "partTypeInformation" : { + "manufacturerPartId" : "NK-28", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Vehicle Fully Electric" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Kombilimousine", + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "engine" : { + "size" : 2998, + "power" : 143 + }, + "emptyWeight" : 1.73, + "fuel" : "Elektro", + "vehicleModel" : "Vehicle Fully Electric", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "S2AVB", + "description" : "adaptive drive", + "group" : "special equipment" + }, { + "code" : "S763C", + "description" : "sport package", + "group" : "special equipment" + }, { + "code" : "A01CR", + "description" : "remote engine start", + "group" : "special equipment" + }, { + "code" : "S378B", + "description" : "integrated child seats", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2014-11-14", + "mileageDistance" : 120000 + } ] + } ] + }, { + "catenaXId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "84513", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "6226", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-066647475705439133590731", + "key" : "partInstanceId" + }, { + "value" : "Company 10", + "key" : "company" + }, { + "value" : "Brand 10", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", + "partTypeInformation" : { + "ownerPartId" : "73849201-61", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Catalysator", + "partClassification" : [ { + "value" : "Catalysator", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Catalysator" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "childItems" : [ { + "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000000BJTL", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "bpnl" : "BPNL00000003CSGV", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "493373", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "4467", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-070860464145139398402631", + "key" : "partInstanceId" + }, { + "value" : "Company 3", + "key" : "company" + }, { + "value" : "Brand 3", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "manufacturerId" : "BPNL00000003CSGV", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ca454f06-e3ac-4908-8632-0fece3946e62", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "partTypeInformation" : { + "ownerPartId" : "22782277-50", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Door front-left", + "partClassification" : [ { + "value" : "Door front-left", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "nameAtOwner" : "Door front-left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "customers" : [ { + "businessPartner" : "BPNL00000003CSGV", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { + "localIdentifiers" : [ { + "value" : "86681316RUO", + "key" : "jisNumber" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000000BJTL", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-3434-A", + "customerPartId" : "PRT-12345", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "side element A" + } + } ], + "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "bpnl" : "BPNL00000000BJTL", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "358518", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "5674", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-747120479071756798529531", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "manufacturerId" : "BPNL00000000BJTL", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "partTypeInformation" : { + "ownerPartId" : "95657762-59", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Door Key", + "partClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000000BJTL:PartFamily" + } ], + "nameAtOwner" : "Door Key" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "customers" : [ { + "businessPartner" : "BPNL00000000BJTL", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "childItems" : [ { + "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000000BJTL", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "bpnl" : "BPNL00000003CSGV", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "909852", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "6025", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-717125314697526511835089", + "key" : "partInstanceId" + }, { + "value" : "Company 4", + "key" : "company" + }, { + "value" : "Brand 4", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "manufacturerId" : "BPNL00000003CSGV", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5bec6e30-f1be-49b1-9a80-d6d6da5780fe", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "partTypeInformation" : { + "ownerPartId" : "33740332-54", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Door front-right", + "partClassification" : [ { + "value" : "Door front-right", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "nameAtOwner" : "Door front-right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "customers" : [ { + "businessPartner" : "BPNL00000003CSGV", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { + "localIdentifiers" : [ { + "value" : "50695399XFB", + "key" : "jisNumber" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000000BJTL", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-3434-A", + "customerPartId" : "PRT-12345", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "side element A" + } + } ], + "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "bpnl" : "BPNL00000000BJTL", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "820213", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "3619", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-933249529973009274367708", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "manufacturerId" : "BPNL00000000BJTL", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "partTypeInformation" : { + "ownerPartId" : "95657762-59", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Door Key", + "partClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000000BJTL:PartFamily" + } ], + "nameAtOwner" : "Door Key" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "customers" : [ { + "businessPartner" : "BPNL00000000BJTL", + "parentItems" : [ { + "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "866717", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "4399", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-935348299524699268826561", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", + "partTypeInformation" : { + "ownerPartId" : "15635759-16", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Door rear-left", + "partClassification" : [ { + "value" : "Door rear-left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Door rear-left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "829696", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "4314", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-312287171739061318684731", + "key" : "partInstanceId" + }, { + "value" : "Company 5", + "key" : "company" + }, { + "value" : "Brand 5", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", + "partTypeInformation" : { + "ownerPartId" : "28673126-98", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Door rear-right", + "partClassification" : [ { + "value" : "Door rear-right", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Door rear-right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "853381", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "3642", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-512057047299506284822846", + "key" : "partInstanceId" + }, { + "value" : "Company 6", + "key" : "company" + }, { + "value" : "Brand 6", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", + "partTypeInformation" : { + "ownerPartId" : "94421589-82", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Engine hood", + "partClassification" : [ { + "value" : "Engine hood", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Engine hood" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "998741", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9870", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-935241026522592720471442", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", + "partTypeInformation" : { + "ownerPartId" : "85023955-75", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Tailgate", + "partClassification" : [ { + "value" : "Tailgate", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Tailgate" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "712288", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "2045", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-797225775878072083424960", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", + "partTypeInformation" : { + "ownerPartId" : "13769860-47", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Fender right", + "partClassification" : [ { + "value" : "Fender right", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Fender right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "966218", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 8 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "3912", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-448918216597975248405544", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", + "partTypeInformation" : { + "ownerPartId" : "36643162-35", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Fender right", + "partClassification" : [ { + "value" : "Fender right", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Fender right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "164297", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 7 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "7329", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-234316605230590922467140", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", + "partTypeInformation" : { + "ownerPartId" : "54165444-59", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Bumper front", + "partClassification" : [ { + "value" : "Bumper front", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Bumper front" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "698262", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "6642", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-561770140107022421469955", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", + "partTypeInformation" : { + "ownerPartId" : "22768257-25", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Bumper rear", + "partClassification" : [ { + "value" : "Bumper rear", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Bumper rear" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "685035", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "5253", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-472963873349845436443693", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", + "partTypeInformation" : { + "ownerPartId" : "65529521-37", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Exterior mirror left", + "partClassification" : [ { + "value" : "Exterior mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Exterior mirror left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "762163", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "3630", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-498373680403428328935294", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", + "partTypeInformation" : { + "ownerPartId" : "58471477-24", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Exterior mirror right", + "partClassification" : [ { + "value" : "Exterior mirror right", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Exterior mirror right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "430687", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "8728", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-814540334583663330747432", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", + "partTypeInformation" : { + "ownerPartId" : "09002013-68", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Tailer coupling", + "partClassification" : [ { + "value" : "Tailer coupling", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Tailer coupling" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "313504", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "1917", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-909562885178693699037440", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", + "partTypeInformation" : { + "ownerPartId" : "43501996-98", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Dashboard", + "partClassification" : [ { + "value" : "Dashboard", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Dashboard" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "511397", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2060", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-859483763601915613763162", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", + "partTypeInformation" : { + "ownerPartId" : "77795937-13", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Steering wheel", + "partClassification" : [ { + "value" : "Steering wheel", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Steering wheel" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "618145", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 26 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "9419", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-381058856694394911749515", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", + "partTypeInformation" : { + "ownerPartId" : "20125432-59", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Indicator left", + "partClassification" : [ { + "value" : "Indicator left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Indicator left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "878250", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 23 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "4207", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-738810714196805495613608", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", + "partTypeInformation" : { + "ownerPartId" : "19073706-76", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Indicator right", + "partClassification" : [ { + "value" : "Indicator right", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Indicator right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "970830", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "7314", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-706869576108504911888487", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", + "partTypeInformation" : { + "ownerPartId" : "45415162-57", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Led headlight", + "partClassification" : [ { + "value" : "Led headlight", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Led headlight" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "190425", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "6691", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-302124803790642780585327", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", + "partTypeInformation" : { + "ownerPartId" : "78141846-87", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Starter motor", + "partClassification" : [ { + "value" : "Starter motor", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Starter motor" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "172988", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "7711", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-522630666682237918821842", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", + "partTypeInformation" : { + "ownerPartId" : "81324139-23", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Alternator", + "partClassification" : [ { + "value" : "Alternator", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Alternator" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "532019", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "2963", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-756871575834670298298957", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", + "partTypeInformation" : { + "ownerPartId" : "57929013-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Air conditioning compressor", + "partClassification" : [ { + "value" : "Air conditioning compressor", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Air conditioning compressor" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "131076", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "5508", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-524620221933669424039127", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", + "partTypeInformation" : { + "ownerPartId" : "61184040-23", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Taillight rear", + "partClassification" : [ { + "value" : "Taillight rear", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Taillight rear" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "696401", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "2883", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-613060820318211072608449", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", + "partTypeInformation" : { + "ownerPartId" : "78744126-74", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Taillight front", + "partClassification" : [ { + "value" : "Taillight front", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Taillight front" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "988355", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "6092", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-295509185072402053464558", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", + "partTypeInformation" : { + "ownerPartId" : "12093297-03", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Axle part front", + "partClassification" : [ { + "value" : "Axle part front", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Axle part front" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "173380", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "5710", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-771993242485837410678109", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", + "partTypeInformation" : { + "ownerPartId" : "88111709-49", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Axle part rear", + "partClassification" : [ { + "value" : "Axle part rear", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Axle part rear" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "510968", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "5089", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-403886949080884450587727", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", + "partTypeInformation" : { + "ownerPartId" : "00871379-44", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Chassis", + "partClassification" : [ { + "value" : "Chassis", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Chassis" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "632367", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6913", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-567537304722173805639181", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", + "partTypeInformation" : { + "ownerPartId" : "08901347-87", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Rims", + "partClassification" : [ { + "value" : "Rims", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Rims" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "449891", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "9043", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-754930692443785638020334", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", + "partTypeInformation" : { + "ownerPartId" : "45863316-60", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Tires", + "partClassification" : [ { + "value" : "Tires", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Tires" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 19, + "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" : 57, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "childItems" : [ { + "catenaXId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B3NX", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "bpnl" : "BPNL00000003B2OM", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "514312", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1780", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "42555H1-52", + "key" : "manufacturerPartId" + }, { + "value" : "NO-971749365763688998182907", + "key" : "partInstanceId" + }, { + "value" : "Company 2", + "key" : "company" + }, { + "value" : "Brand 2", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B2OM", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "partTypeInformation" : { + "manufacturerPartId" : "42555H1-52", + "customerPartId" : "42555H1-52", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "manufacturerId" : "BPNL00000003B2OM", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:071a570c-7f67-441d-b6f5-7c9b8a54ac8e", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2ecd94b8-ca32-4e01-81be-58d0e8cba1e6", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4f3a4c9b-0ca3-440e-8ca0-650e2304dc91", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "partTypeInformation" : { + "ownerPartId" : "42555H1-52", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Transmission", + "partClassification" : [ { + "value" : "Transmission", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "nameAtOwner" : "Transmission" + } + } ], + "urn:samm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "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:788cc369-6180-4bd0-b218-4401dc13fcf7", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-971749365763688998182907", + "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:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "customers" : [ { + "businessPartner" : "BPNL00000003B2OM", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "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" : 40, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ], + "catenaXId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "914874", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "9797", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "partTypeInformation" : { + "manufacturerPartId" : "IS-82", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "childItems" : [ { + "catenaXId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "bpnl" : "BPNL00000003B3NX", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "183972", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "5873", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "18676V9-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-695360115480032480516118", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "partTypeInformation" : { + "manufacturerPartId" : "18676V9-48", + "customerPartId" : "18676V9-48", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "manufacturerId" : "BPNL00000003B3NX", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4e7a7f9b-5acc-4bc6-a4f5-82b5dda8bc7d", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "partTypeInformation" : { + "ownerPartId" : "18676V9-48", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Sensor", + "partClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "nameAtOwner" : "Sensor" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "customers" : [ { + "businessPartner" : "BPNL00000003B3NX", + "parentItems" : [ { + "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 8, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 84, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + } ] + } ], + "catenaXId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "864400", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "1916", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "partTypeInformation" : { + "manufacturerPartId" : "RT-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ], + "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "284458", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 23 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "4331", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "manufacturerId" : "BPNL00000003AXS3", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "partTypeInformation" : { + "manufacturerPartId" : "VP-89", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "customers" : [ { + "businessPartner" : "BPNL00000003AXS3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 65, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "childItems" : [ { + "catenaXId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B3NX", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "bpnl" : "BPNL00000003B5MJ", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "213226", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "5794", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "56278T7-12", + "key" : "manufacturerPartId" + }, { + "value" : "NO-014305725252821672580588", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B5MJ", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "partTypeInformation" : { + "manufacturerPartId" : "56278T7-12", + "customerPartId" : "56278T7-12", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "manufacturerId" : "BPNL00000003B5MJ", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0ddcd695-9464-464a-b487-14a53f36023a", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:aa426b78-e61f-4c95-90c3-635f9ebc0233", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d33b687a-7663-42c5-98a4-39eddc9ff979", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "partTypeInformation" : { + "ownerPartId" : "56278T7-12", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ECU", + "partClassification" : [ { + "value" : "ECU", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "nameAtOwner" : "ECU" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "customers" : [ { + "businessPartner" : "BPNL00000003B5MJ", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 25, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 77, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + } ] + } ], + "catenaXId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "540047", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "7664", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "manufacturerId" : "BPNL00000003AXS3", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "partTypeInformation" : { + "manufacturerPartId" : "ID-97", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "customers" : [ { + "businessPartner" : "BPNL00000003AXS3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "childItems" : [ { + "catenaXId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "bpnl" : "BPNL00000003B3NX", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "24984", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "7508", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "80422J1-66", + "key" : "manufacturerPartId" + }, { + "value" : "NO-114299309749179970389865", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "partTypeInformation" : { + "manufacturerPartId" : "80422J1-66", + "customerPartId" : "80422J1-66", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "manufacturerId" : "BPNL00000003B3NX", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a66063b1-92d4-42f1-b551-b04f4bc4e8e9", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "partTypeInformation" : { + "ownerPartId" : "80422J1-66", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Sensor", + "partClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "nameAtOwner" : "Sensor" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "customers" : [ { + "businessPartner" : "BPNL00000003B3NX", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm: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" : 16, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ], + "catenaXId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "631562", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "2022", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "partTypeInformation" : { + "manufacturerPartId" : "HP-63", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm: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" : 70, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ], + "catenaXId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "744179", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9997", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "63678I1-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-265189266576051308905480", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "partTypeInformation" : { + "manufacturerPartId" : "63678I1-57", + "customerPartId" : "63678I1-57", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "partTypeInformation" : { + "ownerPartId" : "63678I1-57", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Engineering Plastics", + "partClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "Engineering Plastics" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-934355851064683759352825", + "key" : "partInstanceId" + }, { + "value" : "Company 1", + "key" : "company" + }, { + "value" : "Brand 1", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + }, + "itemVersion" : "01" + } ], + "urn:samm: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" : false, + "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" : "38049661-08", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "https://123", + "oeNumber" : "NO-934355851064683759352825", + "category" : { + "subCategory" : [ "Battery" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "Company 1", + "brand" : "Brand 1", + "productDescription" : "Battery" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e71d7b26-4f7a-4905-bf3e-0df598badc01", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5237a522-3fa1-4af1-a8d9-ab0aa82e13cc", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:01c089eb-b189-476a-9acb-323a7bc8e19a", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8aefd359-d90a-4c0f-abbb-e99faeeba771", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ca3056fe-a946-405b-9966-c4b930d7acdd", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7bb21073-8689-4939-b3b8-85d9fdbd2ae3", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "38049661-08", + "manufacturerPartId" : "38049661-08" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a Battery", + "class" : { + "code" : "27-05-02-91", + "definition" : "Traction battery, starter battery (parts)" + }, + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-04-15", + "version" : 1.3, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 1704.0408, + "width" : 1704, + "length" : 2025, + "weight" : 533, + "height" : 278 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 16 + } + }, + "commercial" : { + "placedOnMarket" : "2020-04-10", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-934355851064683759352825", + "key" : "PartInstanceID" + } ], + "gtin" : " 94050133", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "516138614" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Passport", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2023-06-09", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 2.9809 ] + }, + "id" : "PP9529" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Others" + } ], + "critical" : [ "Lithium" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 109 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AXS3", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 81, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 46, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 19, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "childItems" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "752234", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "8442", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "partTypeInformation" : { + "ownerPartId" : "38049661-08", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Battery", + "partClassification" : [ { + "value" : "Battery", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Battery" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-934355851064683759352825", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "pack" + } ], + "productType" : "pack" + } ], + "urn:samm: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:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 35, + "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" : 36, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "childItems" : [ { + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "955212", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "5228", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-919179362377079580444521", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:673c28c2-708b-433f-82db-56e61f8f66ca", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9f534261-dfb6-4baa-b8a7-ae313aa5b3ce", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0f89bb5e-a93f-4fdc-87be-2abf0129cc33", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fac73553-c929-43c8-a4db-6a916522a098", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:796ea6f2-4b09-4674-87b0-ed3029417b95", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d8f61b46-569f-4d31-9641-e545b5622dac", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9dcd0291-a393-4234-b5e3-d4a9c275ac0b", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8a77c60e-723e-4d59-84ea-09144b28ff30", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:041a9a8b-b424-4f5d-8374-3f730d6313cf", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0c2bd490-f173-4531-ab58-4f7a9a9888f3", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ec6040d9-2a3c-46af-90d4-9644cc83bc9b", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-919179362377079580444521", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-03-14", + "version" : 1.4, + "status" : "Approved" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6247, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 15 + } + }, + "commercial" : { + "placedOnMarket" : "2022-01-16", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-919179362377079580444521", + "key" : "PartInstanceID" + } ], + "gtin" : " 45252906", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "696133927" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "SubstanceOfConcern", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2023-03-29", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 0.2175 ] + }, + "id" : "TH5675" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Manganese" + } ], + "critical" : [ "Nickel" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 118 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B2OM", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + } ], + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "439214", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "7990", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "manufacturerId" : "BPNL00000003AXS3", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "partTypeInformation" : { + "manufacturerPartId" : "ZP-94", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "customers" : [ { + "businessPartner" : "BPNL00000003AXS3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:50a7db2d-2370-45db-99a0-1041c9f616fa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-09-23", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "825197", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "6699", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-870119299818458530530204", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ff6d56f4-ba0a-41a7-9eac-644afb77c476", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-870119299818458530530204", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 64, + "materialClass" : "8.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ] + } ], + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "284332", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "4702", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "partTypeInformation" : { + "manufacturerPartId" : "PB-87", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b857d83b-24ba-4011-8670-afa57caee306", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-07-04", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "152028", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "3992", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-935980723922638521184633", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:090a652a-eb82-4bd2-b922-9552d0dc119a", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-935980723922638521184633", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-12-23", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "139981", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "2416", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-238580062345830034707563", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9b2a9d07-362d-4280-b197-7560f8b83466", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-238580062345830034707563", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-01-20", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-04", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "595129", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "5497", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-455702864631548437744445", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:85e9413f-feb0-49ac-96eb-500434d4cd67", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-455702864631548437744445", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-10-19", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-09", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "585154", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "5298", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-979377149851032251466611", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7c569605-cb6f-4c8a-8eea-023f57a54b2f", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-979377149851032251466611", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-06-10", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "659956", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "7569", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-953337162480525054890231", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6319ef3a-a750-460e-9dfb-11548c767ce3", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-953337162480525054890231", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-09-17", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "350434", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "5076", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-283025147867584842633737", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:227fc68c-8fcb-470e-b4b2-7d2a4306119a", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-283025147867584842633737", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 5, + "materialClass" : "8.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ] + } ], + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "367891", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "9726", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "partTypeInformation" : { + "manufacturerPartId" : "NF-25", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:01a26bc3-e056-462d-a140-18143ef35552", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-07-31", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "859856", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "5694", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-409479289986597261873689", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e33f4ea9-6b55-43ce-95c1-2114aa644a79", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-409479289986597261873689", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-04-13", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "545341", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 9 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "4845", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-927504595898056099855081", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:23dcadc5-48a6-44c2-ab39-a0f7df4c3673", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-927504595898056099855081", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-11-12", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "953322", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "7532", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-235015725608216527525071", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2992debd-b624-4e10-a8b0-14d75bacb06e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-235015725608216527525071", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 85, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 22, + "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:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "childItems" : [ { + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "257733", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "8201", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-838322959839811561036246", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:237a08cc-a748-4328-a1a3-26fce5b741ec", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1a880c81-c570-4f23-86bd-dd1663ba5005", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8178eeef-1938-42bd-bae0-b36c1ef2955b", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0a095fba-2240-4a3e-99e8-2a131d955aa8", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e74b82c3-238d-4183-a09d-9aefe69ff2a1", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c4071f3c-ace8-422a-bb4d-24f525ec4205", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4637ad73-e6cb-4d46-9969-bb072fa94ce4", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0b3b77b9-bebb-4b19-9c57-ec03c29e084b", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c113691e-5a5b-4dd4-92f9-4770d88aa2ae", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:dc4d46c1-3254-4655-85df-ade73fdd2276", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4487104c-2670-48c8-821f-95bb06d457e4", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-838322959839811561036246", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2022-10-11", + "version" : 1.7, + "status" : "Approved" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6942, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 16 + } + }, + "commercial" : { + "placedOnMarket" : "2021-12-17", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-838322959839811561036246", + "key" : "PartInstanceID" + } ], + "gtin" : " 97227772", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "636715904" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Compliance", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2023-04-26", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 6.5069 ] + }, + "id" : "YQ8580" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "UV Varnish" + } ], + "critical" : [ "Cobalt" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 118 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B3NX", + "manufacturer" : { + "facilityId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-01-16", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-17", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "904375", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 23 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "2364", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-663073156093039453892485", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:30d3e983-f90e-4392-9d12-d30ba1b6c9ed", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-663073156093039453892485", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-02-07", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "421491", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "1098", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-816234871234575434175023", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:adee468e-b4ac-449d-bd1d-af91c0ef97b8", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-816234871234575434175023", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-26", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-06", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "779982", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "6142", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-738268322111071992512022", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b54255d5-26c1-439f-9fed-cc1234d85a7c", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-738268322111071992512022", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-12-12", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "873620", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "6215", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-321442052139648020241062", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6f120025-b053-4ce1-baad-62df174f0b12", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-321442052139648020241062", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-10-04", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "175377", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "9620", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-114516443320856885894272", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f7fb4221-398c-4445-8392-1f52a7bf6263", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-114516443320856885894272", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-02-09", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "968582", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "2601", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-202860084166978430348394", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:11a35756-0df2-4e6f-8360-a615062cd546", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-202860084166978430348394", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-05-30", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "745299", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "3571", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-494374901619716039791371", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:34462397-5903-4a4a-9c39-257ac4d690e6", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-494374901619716039791371", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-10-04", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "429296", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1645", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-794467681195929992255435", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8e862982-2150-453e-8229-654d52d3cd65", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-794467681195929992255435", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-04-11", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "144745", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "7152", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-034590603053687442399458", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4283681d-1881-4219-ba87-e2bc0caa933b", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-034590603053687442399458", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-03-08", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "876397", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "9888", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-616535750451374596363638", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:dd9de3f8-aa2d-4cf6-b047-fd58b7327057", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-616535750451374596363638", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 47, + "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" : 22, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "childItems" : [ { + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "45913", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "1869", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-757418965725956072308711", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:80223f49-7d96-423f-b359-43ca533684f3", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d0b73988-05f1-4457-98da-cd5afc4bcdaa", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:dfeddda1-3f79-46dc-97d1-165cf02ed355", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7ac77862-aeea-4613-9a60-a44ee96a2de6", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d767f979-c2ff-4609-bc6c-0504129a99cc", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:84c058c5-83fb-4b6d-b971-ae9c9efc9995", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d3f548b3-47cd-42e1-9972-b64deb3f5ae2", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7011d5bc-bbfb-4d22-981a-2f90607db71c", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b4a3840e-e9cf-42f8-8d08-49010ad2e780", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a000e83f-e975-4979-919c-bd75199d653e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c31a4a71-f96a-4e58-9ad6-462dc39a9be0", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-757418965725956072308711", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2022-07-01", + "version" : 1.6, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6343, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 19 + } + }, + "commercial" : { + "placedOnMarket" : "2021-07-24", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-757418965725956072308711", + "key" : "PartInstanceID" + } ], + "gtin" : " 14004109", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "263852104" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-02-04", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 6.181 ] + }, + "id" : "GB2917" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Cobalt" + } ], + "critical" : [ "Graphite" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 109 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B3NX", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + } ], + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "478965", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "9356", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "manufacturerId" : "BPNL00000003AXS3", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "partTypeInformation" : { + "manufacturerPartId" : "LV-64", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "customers" : [ { + "businessPartner" : "BPNL00000003AXS3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:77d765dc-1725-4fa0-850f-14ff4d221640", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-10-10", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "187290", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "5718", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-196750260355920905784672", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6975d17d-ad2e-4f27-a09a-7a8c146b67ef", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-196750260355920905784672", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-06-24", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-05", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "52305", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "7544", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-851192230441246681631253", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:15dbcdd6-dd2d-45ad-aac1-734e616a03bf", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-851192230441246681631253", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-09-11", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "564965", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "3263", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-561731599817906783111770", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:129f667e-3c6f-401c-88cc-2ba08ba8e90f", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-561731599817906783111770", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-04-15", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "429757", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "8870", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-601684402916676295378875", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2b3628a7-4249-484d-bc58-666402b64cbe", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-601684402916676295378875", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-13", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "106891", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "7770", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-220579398527605828592786", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2c866b62-ebb6-441f-abb8-2e5a48f094a2", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-220579398527605828592786", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-08-20", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-01", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "970794", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "3631", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-989896312164316486011352", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:20916d3d-c2e1-472b-83ba-7a22b30ff252", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-989896312164316486011352", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-09-14", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "603324", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "4498", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-668413753586612912737466", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:18550a52-d54c-49e1-b977-2f8a33051998", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-668413753586612912737466", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-06-12", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-25", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "533786", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "7404", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-573889269137330790927065", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b4fd6b8c-9210-49ad-9633-86dea8229898", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-573889269137330790927065", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-03-27", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "288513", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "9298", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-548985088263485891029251", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:88cd2bda-e15b-4b2f-ac30-7d1f734f22fc", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-548985088263485891029251", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-02-23", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-17", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "117589", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "4089", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-905223916160251431905990", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5f1b604b-bfce-4875-9577-5ea764d1e380", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-905223916160251431905990", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 72, + "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" : 24, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "childItems" : [ { + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "948584", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "4179", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-883610489267919397198041", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:964a163a-2bf0-4777-8155-79c675c4c576", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:804f7b43-0ad9-47ec-bab9-4c16a3097999", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:16da91d1-50f8-491f-972b-b678de36973d", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f24fd8bc-8e8c-4ded-af59-71001eda2efd", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a144cf41-dace-416d-a063-312c148fbb00", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:78fac256-ef9b-4c39-9731-1d23972dbf7e", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4b8c898d-96a2-4c77-83f3-15eaa25e9c56", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2f9907f8-8d78-4c98-b627-14d40b90f64a", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:71ca0891-49a6-4095-9eec-1512a1e32a01", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:26705c57-e946-4965-b203-1ca0e893edf5", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:de2242ff-f394-425d-90fb-519986cc0f9e", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-883610489267919397198041", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2022-05-31", + "version" : 2.9, + "status" : "Approved" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.658, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 19 + } + }, + "commercial" : { + "placedOnMarket" : "2020-05-21", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-883610489267919397198041", + "key" : "PartInstanceID" + } ], + "gtin" : " 78139498", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "567980732" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2023-04-24", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 1.2616 ] + }, + "id" : "HP4995" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Aluminium" + } ], + "critical" : [ "Nickel" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 118 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B2OM", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-06-23", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "466131", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "8863", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-864415204672012382995251", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:072bb6c2-1eb4-4e56-abee-b9fb5bc1abb3", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-864415204672012382995251", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-05-05", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "661427", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "8111", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-493676181103178298845139", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5e37e292-0127-4167-9f4f-cb99076b0b4d", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-493676181103178298845139", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-09-22", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "366897", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "1132", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-791018505140292878166021", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:75b068da-aa67-4e6a-b520-481221293bc6", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-791018505140292878166021", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-12-22", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "815598", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "8846", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-136928786987253017532224", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2ddf726b-1c8d-4254-8b95-f2382d10158a", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-136928786987253017532224", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-02", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "267061", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "4880", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-823948286883766869040317", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:296d4b41-5468-48c4-9c08-b016c8ecf54f", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-823948286883766869040317", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-07-10", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "589990", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "7657", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-587471081576721367794244", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5a48df90-7b8a-4b95-9344-52eca9965050", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-587471081576721367794244", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-12-19", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-18", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "523416", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "1489", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-109272763412992271485457", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:295e2d27-7c8c-4e5a-81dd-5c530b21c778", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-109272763412992271485457", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-08-11", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-13", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "604789", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "1043", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-148715251312244684318074", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c576a060-ff25-4a2f-b542-34d06030c193", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-148715251312244684318074", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-10-27", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-05", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "111210", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "1999", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-080480141948547472036219", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:dcf94afa-e965-4435-8341-c5489012be59", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-080480141948547472036219", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "721267", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1845", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-671408531894681437693915", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d0c68643-a52f-41ae-9b3f-387e41741101", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-671408531894681437693915", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 31, + "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" : 48, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "childItems" : [ { + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "575177", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1123", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-421487237719664337926264", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:169730f9-82c2-419e-bec4-679b074587e1", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e924db85-85d0-44a1-85e9-f4ab255622b6", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7c4cffaa-7828-4fab-a805-de5eecec1be6", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:304cfe22-30a3-45ad-8dee-86ec2a1a3951", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:13346a9c-c939-4477-bfde-9b8d1bf3eb46", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1cba473f-5ef8-4ea8-8247-c695813a0507", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:153c7f6f-c3d7-4473-9c0b-0fdd2af161a6", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:632aaffc-66ce-4718-92f6-1176c2e1aca3", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e4486c97-ca35-46a3-ab8c-c3e0931bb0c2", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:56e69495-40bd-4652-be40-0e32b8153e11", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8c2ba5fe-0312-4618-8d66-f0188585c8c5", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-421487237719664337926264", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-12-17", + "version" : 2.5, + "status" : "Expired" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6908, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 15 + } + }, + "commercial" : { + "placedOnMarket" : "2023-10-13", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-421487237719664337926264", + "key" : "PartInstanceID" + } ], + "gtin" : " 58568407", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "284386811" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-01-12", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 9.7722 ] + }, + "id" : "AB2318" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Manganese" + } ], + "critical" : [ "Nickel" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 120 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B2OM", + "manufacturer" : { + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-06-10", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-14", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "641081", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "3197", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-657973422519230479340430", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:54335cc3-c3a9-4c6d-841b-9d6869d7518f", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-657973422519230479340430", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-08-26", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-04", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "551084", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1432", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-732408130437623009753172", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ab04d475-4d30-4039-b0ce-1f565317db77", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-732408130437623009753172", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-02-12", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "912331", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "2489", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-712777341404709239849724", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:801d7df0-96c4-4c05-9b00-244356090ef6", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-712777341404709239849724", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-11-02", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-14", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "258856", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "1575", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-275660379821389876239471", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:135ff411-75d6-4d5e-87f2-8fd3c709bdd5", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-275660379821389876239471", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-09-18", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "956265", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "1435", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-874268115549473309109964", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:13484890-85d1-49cf-8913-163da1ea297f", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-874268115549473309109964", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-07-20", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "476029", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 24 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "8462", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-804755969458043907284335", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b1a988dc-e01d-4dc7-bae8-ed2d0bca93e4", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-804755969458043907284335", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-10-15", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-23", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "484209", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "6055", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-613319179318249998509155", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8cb2eddf-2036-4fb1-bdc1-a4825eb2822e", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-613319179318249998509155", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-01-06", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "494277", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "9889", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-054137834947942447689111", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6a9d095d-a988-440d-acf0-660677522014", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-054137834947942447689111", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-09-27", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "689401", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "3427", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-295359038428033538101406", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:bfda2cef-43dd-458e-832e-813cdf46be9f", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-295359038428033538101406", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-05-21", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "893293", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "8058", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-508562801787981572367093", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:71f692c6-666b-4b55-9bb8-5eca46c7427b", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-508562801787981572367093", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 41, + "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" : 87, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "childItems" : [ { + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "953493", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "6276", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-649025193247744815308547", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:59d5a09f-265a-4255-930a-69499e6099a1", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e835451c-55d1-4583-b120-5b05b4fe4298", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:47a14445-3677-42b5-8f58-4fc036767737", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:42df3cfd-be3a-4a23-8cbb-4886f5f42310", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:891a63c7-b3fb-4165-ba99-9318634c3c3e", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:bad2579c-8d56-4cde-ae3f-106b91207f16", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:af6d4227-3759-4c93-8400-88750f845d42", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:39db236d-265d-4e53-81f1-89c3a42280c2", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d815f036-f26c-4f88-8ce6-573fc3c8e978", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e7cf96b2-2184-4400-b6a7-3191969893e2", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9418e4fc-f1a0-42a1-8bb0-b637d0ea2e8f", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-649025193247744815308547", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2022-08-13", + "version" : 1.1, + "status" : "Approved" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6209, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 17 + } + }, + "commercial" : { + "placedOnMarket" : "2021-01-11", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-649025193247744815308547", + "key" : "PartInstanceID" + } ], + "gtin" : " 58303814", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "172951776" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2022-11-10", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 7.7691 ] + }, + "id" : "EV5532" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Graphite" + } ], + "critical" : [ "Manganese" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 120 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B3NX", + "manufacturer" : { + "facilityId" : "BPNL00000003B3NX", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-12-09", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "839204", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "2411", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-478966071391968090480935", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3240960f-1f84-4e53-bc45-cd326f27b452", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-478966071391968090480935", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-07-09", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-09", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "361335", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "1733", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-335150056102107596933721", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:51b3cf5d-11f4-4db6-a584-02ecc5bdedec", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-335150056102107596933721", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-05-17", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "105259", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "9968", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-809969344592637616415689", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8b1028ea-217a-4876-b747-0410b9b185b7", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-809969344592637616415689", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-10-30", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "307973", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "8934", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-428529070818912818758400", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6fe7d49a-4569-4fc3-841e-3b93a22ca927", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-428529070818912818758400", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-12-03", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "893839", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "9261", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-325143358634226278153686", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:75435db2-3868-4a77-a72f-78f96faad8b7", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-325143358634226278153686", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-06-06", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "909402", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "8746", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-123760690132854833745762", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:55ef973f-260b-452e-bfd6-3e359ec8918c", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-123760690132854833745762", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-05-10", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "549487", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "1699", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-202618736706229575349972", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:82c4d997-9689-4641-8a39-200b0848aede", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-202618736706229575349972", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-05-15", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "989917", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "3060", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-332282418462283630241021", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:bfea1181-1f4c-4571-b52d-91d5a060833e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-332282418462283630241021", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-07-24", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "558744", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "5000", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-661181049931223872649703", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:275da478-579d-4cd2-94fe-9a637090bf99", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-661181049931223872649703", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-06-14", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-17", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "361193", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "5792", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-045025435576056642106570", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0c0ca7b0-9908-4de8-bc68-15f64c1ab8a4", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-045025435576056642106570", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 65, + "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" : 7, + "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" : 4, + "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" : 47, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 382.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 42, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 80, + "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:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "childItems" : [ { + "catenaXId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003CSGV", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003CSGV", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B2OM", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B5MJ", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "XM-20", + "key" : "manufacturerPartId" + }, { + "value" : "OMACDBUHKIXKCMYBT", + "key" : "partInstanceId" + }, { + "value" : "OMACDBUHKIXKCMYBT", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2020-02-01T11:52:28.000Z", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "partTypeInformation" : { + "manufacturerPartId" : "XM-20", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Vehicle Fully Electric" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Coupé", + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "engine" : { + "size" : 2998, + "power" : 143 + }, + "emptyWeight" : 1.73, + "fuel" : "Elektro", + "vehicleModel" : "Vehicle Fully Electric", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "S388C", + "description" : "security plus", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", + "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" : "2018-02-28", + "mileageDistance" : 120000 + } ] + } ] + }, { + "catenaXId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "635211", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "7359", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-300645322195279224647156", + "key" : "partInstanceId" + }, { + "value" : "Company 10", + "key" : "company" + }, { + "value" : "Brand 10", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", + "partTypeInformation" : { + "ownerPartId" : "73849201-61", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Catalysator", + "partClassification" : [ { + "value" : "Catalysator", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Catalysator" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "childItems" : [ { + "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000000BJTL", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "bpnl" : "BPNL00000003CSGV", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "306254", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "1480", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-314061229466361556071536", + "key" : "partInstanceId" + }, { + "value" : "Company 3", + "key" : "company" + }, { + "value" : "Brand 3", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "manufacturerId" : "BPNL00000003CSGV", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:15868485-0fc6-42a1-94c7-7d7d518990d0", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "partTypeInformation" : { + "ownerPartId" : "22782277-50", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Door front-left", + "partClassification" : [ { + "value" : "Door front-left", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "nameAtOwner" : "Door front-left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "customers" : [ { + "businessPartner" : "BPNL00000003CSGV", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { + "localIdentifiers" : [ { + "value" : "72994826PTN", + "key" : "jisNumber" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000000BJTL", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-3434-A", + "customerPartId" : "PRT-12345", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "side element A" + } + } ], + "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "bpnl" : "BPNL00000000BJTL", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "188157", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "2637", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-720426909780861540771729", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "manufacturerId" : "BPNL00000000BJTL", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "partTypeInformation" : { + "ownerPartId" : "95657762-59", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Door Key", + "partClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000000BJTL:PartFamily" + } ], + "nameAtOwner" : "Door Key" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "customers" : [ { + "businessPartner" : "BPNL00000000BJTL", + "parentItems" : [ { + "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "childItems" : [ { + "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000000BJTL", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "bpnl" : "BPNL00000003CSGV", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "932970", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "9670", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-895320576393660790702186", + "key" : "partInstanceId" + }, { + "value" : "Company 4", + "key" : "company" + }, { + "value" : "Brand 4", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "manufacturerId" : "BPNL00000003CSGV", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6e00ae59-8e13-4e95-b2c5-f0d429f9c067", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "partTypeInformation" : { + "ownerPartId" : "33740332-54", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Door front-right", + "partClassification" : [ { + "value" : "Door front-right", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "nameAtOwner" : "Door front-right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "customers" : [ { + "businessPartner" : "BPNL00000003CSGV", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { + "localIdentifiers" : [ { + "value" : "11820948CYH", + "key" : "jisNumber" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000000BJTL", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-3434-A", + "customerPartId" : "PRT-12345", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "side element A" + } + } ], + "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "bpnl" : "BPNL00000000BJTL", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "158524", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "2020", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-165918348059332899986718", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "manufacturerId" : "BPNL00000000BJTL", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "partTypeInformation" : { + "ownerPartId" : "95657762-59", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Door Key", + "partClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000000BJTL:PartFamily" + } ], + "nameAtOwner" : "Door Key" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "customers" : [ { + "businessPartner" : "BPNL00000000BJTL", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "928774", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "8546", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-539699124243847797443656", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", + "partTypeInformation" : { + "ownerPartId" : "15635759-16", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Door rear-left", + "partClassification" : [ { + "value" : "Door rear-left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Door rear-left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "578586", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "6652", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-744737867632442042678606", + "key" : "partInstanceId" + }, { + "value" : "Company 5", + "key" : "company" + }, { + "value" : "Brand 5", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", + "partTypeInformation" : { + "ownerPartId" : "28673126-98", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Door rear-right", + "partClassification" : [ { + "value" : "Door rear-right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Door rear-right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "951165", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "8043", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-590903203146053071493601", + "key" : "partInstanceId" + }, { + "value" : "Company 6", + "key" : "company" + }, { + "value" : "Brand 6", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", + "partTypeInformation" : { + "ownerPartId" : "94421589-82", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Engine hood", + "partClassification" : [ { + "value" : "Engine hood", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Engine hood" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "37350", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "9566", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-242804366786572471820393", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", + "partTypeInformation" : { + "ownerPartId" : "85023955-75", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Tailgate", + "partClassification" : [ { + "value" : "Tailgate", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Tailgate" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "646452", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "5891", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-186655058764365149435120", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", + "partTypeInformation" : { + "ownerPartId" : "13769860-47", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Fender right", + "partClassification" : [ { + "value" : "Fender right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Fender right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "835367", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "6452", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-325730621671852447010652", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", + "partTypeInformation" : { + "ownerPartId" : "36643162-35", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Fender right", + "partClassification" : [ { + "value" : "Fender right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Fender right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "424181", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "7559", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-056039171230050894869071", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", + "partTypeInformation" : { + "ownerPartId" : "54165444-59", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Bumper front", + "partClassification" : [ { + "value" : "Bumper front", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Bumper front" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "374858", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "5133", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-929360720249973155212015", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", + "partTypeInformation" : { + "ownerPartId" : "22768257-25", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Bumper rear", + "partClassification" : [ { + "value" : "Bumper rear", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Bumper rear" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "123490", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "4347", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-024321342753700806308454", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", + "partTypeInformation" : { + "ownerPartId" : "65529521-37", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Exterior mirror left", + "partClassification" : [ { + "value" : "Exterior mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Exterior mirror left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "441430", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "5392", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-662646120446395356026373", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", + "partTypeInformation" : { + "ownerPartId" : "58471477-24", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Exterior mirror right", + "partClassification" : [ { + "value" : "Exterior mirror right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Exterior mirror right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "152188", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "7828", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-819527814255352957903088", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", + "partTypeInformation" : { + "ownerPartId" : "09002013-68", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Tailer coupling", + "partClassification" : [ { + "value" : "Tailer coupling", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Tailer coupling" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "79195", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "2941", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-971046622889574251783182", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", + "partTypeInformation" : { + "ownerPartId" : "43501996-98", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Dashboard", + "partClassification" : [ { + "value" : "Dashboard", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Dashboard" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "271520", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "9795", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-482042071643254440574034", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", + "partTypeInformation" : { + "ownerPartId" : "77795937-13", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Steering wheel", + "partClassification" : [ { + "value" : "Steering wheel", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Steering wheel" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "144638", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "1999", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-777931149768338951967480", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", + "partTypeInformation" : { + "ownerPartId" : "20125432-59", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Indicator left", + "partClassification" : [ { + "value" : "Indicator left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Indicator left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "198744", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "3706", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-878560885728027798550134", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", + "partTypeInformation" : { + "ownerPartId" : "19073706-76", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Indicator right", + "partClassification" : [ { + "value" : "Indicator right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Indicator right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "658003", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "8572", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-805496419550529915215563", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", + "partTypeInformation" : { + "ownerPartId" : "45415162-57", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Led headlight", + "partClassification" : [ { + "value" : "Led headlight", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Led headlight" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "368794", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "8922", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-433766484921905567586722", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", + "partTypeInformation" : { + "ownerPartId" : "78141846-87", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Starter motor", + "partClassification" : [ { + "value" : "Starter motor", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Starter motor" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "234878", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "4094", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-073558896157054603099567", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", + "partTypeInformation" : { + "ownerPartId" : "81324139-23", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Alternator", + "partClassification" : [ { + "value" : "Alternator", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Alternator" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "480191", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "4281", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-816086921018811899598551", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", + "partTypeInformation" : { + "ownerPartId" : "57929013-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Air conditioning compressor", + "partClassification" : [ { + "value" : "Air conditioning compressor", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Air conditioning compressor" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "908858", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 23 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "2172", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-395437355406898483813611", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", + "partTypeInformation" : { + "ownerPartId" : "61184040-23", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Taillight rear", + "partClassification" : [ { + "value" : "Taillight rear", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Taillight rear" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "194779", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "8922", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-614870102083581603073819", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", + "partTypeInformation" : { + "ownerPartId" : "78744126-74", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Taillight front", + "partClassification" : [ { + "value" : "Taillight front", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Taillight front" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "873737", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "9214", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-523227635506203515129330", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", + "partTypeInformation" : { + "ownerPartId" : "12093297-03", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Axle part front", + "partClassification" : [ { + "value" : "Axle part front", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Axle part front" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "480761", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "4751", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-518500285938140196776423", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", + "partTypeInformation" : { + "ownerPartId" : "88111709-49", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Axle part rear", + "partClassification" : [ { + "value" : "Axle part rear", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Axle part rear" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "143358", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "1168", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-130941702964351461890844", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", + "partTypeInformation" : { + "ownerPartId" : "00871379-44", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Chassis", + "partClassification" : [ { + "value" : "Chassis", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Chassis" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "37456", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "3981", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-280503950043440030561882", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", + "partTypeInformation" : { + "ownerPartId" : "08901347-87", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Rims", + "partClassification" : [ { + "value" : "Rims", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Rims" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "333033", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9489", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-658219514540661622362738", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", + "partTypeInformation" : { + "ownerPartId" : "45863316-60", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Tires", + "partClassification" : [ { + "value" : "Tires", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Tires" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 40, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 18, + "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" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "childItems" : [ { + "catenaXId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B3NX", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "bpnl" : "BPNL00000003B2OM", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "46370", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "2419", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "42555H1-52", + "key" : "manufacturerPartId" + }, { + "value" : "NO-851136035392705186021761", + "key" : "partInstanceId" + }, { + "value" : "Company 2", + "key" : "company" + }, { + "value" : "Brand 2", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B2OM", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "partTypeInformation" : { + "manufacturerPartId" : "42555H1-52", + "customerPartId" : "42555H1-52", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "manufacturerId" : "BPNL00000003B2OM", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:de5b5e6a-cf86-48b9-aa15-0f054f002c18", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:774fe44f-2cc3-46fd-b484-1731623d80af", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:eb4873b6-5fff-4dc8-9ea6-99ff6ae31368", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "partTypeInformation" : { + "ownerPartId" : "42555H1-52", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Transmission", + "partClassification" : [ { + "value" : "Transmission", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "nameAtOwner" : "Transmission" + } + } ], + "urn:samm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "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:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-851136035392705186021761", + "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:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "customers" : [ { + "businessPartner" : "BPNL00000003B2OM", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "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" : 46, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ], + "catenaXId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "800329", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "7680", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "partTypeInformation" : { + "manufacturerPartId" : "GP-33", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "childItems" : [ { + "catenaXId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "bpnl" : "BPNL00000003B3NX", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "54014", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "9905", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "10955Z5-05", + "key" : "manufacturerPartId" + }, { + "value" : "NO-314977894611835991781438", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "partTypeInformation" : { + "manufacturerPartId" : "10955Z5-05", + "customerPartId" : "10955Z5-05", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "manufacturerId" : "BPNL00000003B3NX", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d1581541-ec5c-46d3-b00c-e0496313a615", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "partTypeInformation" : { + "ownerPartId" : "10955Z5-05", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Sensor", + "partClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "nameAtOwner" : "Sensor" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "customers" : [ { + "businessPartner" : "BPNL00000003B3NX", + "parentItems" : [ { + "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm: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" : 14, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + } ] + } ], + "catenaXId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "79565", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "5884", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "partTypeInformation" : { + "manufacturerPartId" : "RF-05", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ], + "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "562585", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "3646", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "manufacturerId" : "BPNL00000003AXS3", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "partTypeInformation" : { + "manufacturerPartId" : "VH-77", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "customers" : [ { + "businessPartner" : "BPNL00000003AXS3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 9, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "childItems" : [ { + "catenaXId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B3NX", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "bpnl" : "BPNL00000003B5MJ", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "341632", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 23 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "8806", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "63085P2-81", + "key" : "manufacturerPartId" + }, { + "value" : "NO-751896380643428446985611", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B5MJ", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "partTypeInformation" : { + "manufacturerPartId" : "63085P2-81", + "customerPartId" : "63085P2-81", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "manufacturerId" : "BPNL00000003B5MJ", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3ea90642-dabf-4a50-8b17-550b0e87784e", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:72e52556-29cd-426b-8e67-b7d2bf1ef02f", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:28638f99-1095-4df2-8353-6635c917b50b", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "partTypeInformation" : { + "ownerPartId" : "63085P2-81", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ECU", + "partClassification" : [ { + "value" : "ECU", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "nameAtOwner" : "ECU" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "customers" : [ { + "businessPartner" : "BPNL00000003B5MJ", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 22, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 33, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + } ] + } ], + "catenaXId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "947897", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "3742", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "manufacturerId" : "BPNL00000003AXS3", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "partTypeInformation" : { + "manufacturerPartId" : "SW-62", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "customers" : [ { + "businessPartner" : "BPNL00000003AXS3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "childItems" : [ { + "catenaXId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "bpnl" : "BPNL00000003B3NX", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "561100", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "2063", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "99019M6-53", + "key" : "manufacturerPartId" + }, { + "value" : "NO-751568112188359093289552", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "partTypeInformation" : { + "manufacturerPartId" : "99019M6-53", + "customerPartId" : "99019M6-53", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "manufacturerId" : "BPNL00000003B3NX", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e1428cda-bedb-4e46-9b7d-7fb10f7963ed", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "partTypeInformation" : { + "ownerPartId" : "99019M6-53", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Sensor", + "partClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "nameAtOwner" : "Sensor" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "customers" : [ { + "businessPartner" : "BPNL00000003B3NX", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm: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" : 51, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ], + "catenaXId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "513100", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 6 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "5299", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "partTypeInformation" : { + "manufacturerPartId" : "QP-25", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm: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" : 34, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ], + "catenaXId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "760174", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "6138", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "93605D2-91", + "key" : "manufacturerPartId" + }, { + "value" : "NO-871580055866821435813562", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "partTypeInformation" : { + "manufacturerPartId" : "93605D2-91", + "customerPartId" : "93605D2-91", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "partTypeInformation" : { + "ownerPartId" : "93605D2-91", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Engineering Plastics", + "partClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "Engineering Plastics" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-744309140234558939999675", + "key" : "partInstanceId" + }, { + "value" : "Company 1", + "key" : "company" + }, { + "value" : "Brand 1", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + }, + "itemVersion" : "04" + } ], + "urn:samm: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" : false, + "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" : "38049661-08", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "https://123", + "oeNumber" : "NO-744309140234558939999675", + "category" : { + "subCategory" : [ "Battery" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "Company 1", + "brand" : "Brand 1", + "productDescription" : "Battery" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:acd7e48c-374e-45af-a539-f0bd4d1c03e4", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:25ff450f-5fae-44a0-a8a2-64ad5efc2ad0", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:efad6b8b-9580-4ba2-8222-2722e1875e4a", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1d81e302-6736-4088-af62-1173445061f4", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:decc911a-35dc-40c6-8f49-5be7acee6908", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b4bf2044-4504-4295-8645-3184b366cea4", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "38049661-08", + "manufacturerPartId" : "38049661-08" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a Battery", + "class" : { + "code" : "27-05-02-91", + "definition" : "Traction battery, starter battery (parts)" + }, + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-01-18", + "version" : 2, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 1346.0496, + "width" : 1346, + "length" : 2306, + "weight" : 412, + "height" : 283 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 15 + } + }, + "commercial" : { + "placedOnMarket" : "2022-01-28", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-744309140234558939999675", + "key" : "PartInstanceID" + } ], + "gtin" : " 71842155", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "444770484" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Passport", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-01-16", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 1.8624 ] + }, + "id" : "JW3524" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Aluminium" + } ], + "critical" : [ "Lithium" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 119 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B3NX", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 54, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 20, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 82, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "childItems" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "667967", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 23 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "6313", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "partTypeInformation" : { + "ownerPartId" : "38049661-08", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Battery", + "partClassification" : [ { + "value" : "Battery", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Battery" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-744309140234558939999675", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "pack" + } ], + "productType" : "pack" + } ], + "urn:samm: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:samm: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" : 6, + "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:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "childItems" : [ { + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "880907", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "8683", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-599349389132825299815680", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:25af164a-e6f7-480e-b492-651b7da1d222", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:85df416e-5cbc-4b72-ab98-7b3a0f597525", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:babcff1f-507f-463e-be9e-94e55c0c64e9", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8b3f6d58-bc5a-4e0f-b2ec-3578fe6d38e1", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:73e143b7-5308-4264-b331-120cd9705213", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8ba0f6bd-8659-4a45-8e0b-97479a0509bd", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:dbd8f06d-e686-4986-932a-6a12c955e134", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e6e5ea84-808c-43f6-8c51-b5ae7ce222d7", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a5494186-1b4a-49e5-a4d4-2c85773071e4", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0ec3fa8d-9e39-4d7f-8c51-1a2ae91bf453", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a8073dee-f6d6-44e1-8772-5368a96a1b08", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-599349389132825299815680", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2021-12-29", + "version" : 2.8, + "status" : "Approved" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6884, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 17 + } + }, + "commercial" : { + "placedOnMarket" : "2021-12-20", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-599349389132825299815680", + "key" : "PartInstanceID" + } ], + "gtin" : " 78507355", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "569550313" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2022-04-12", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 4.4507 ] + }, + "id" : "EM9757" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Sealant" + } ], + "critical" : [ "Nickel" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 105 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AXS3", + "manufacturer" : { + "facilityId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-08-14", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "887584", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "3164", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-276052741206550431565449", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ec4ede01-6089-4547-8675-4251e3162d78", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-276052741206550431565449", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-12-26", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-15", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "137895", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "1859", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-613745749330170700793987", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:021be7ca-fa9b-4b99-a7f5-eb9bb87b3faf", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-613745749330170700793987", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-11", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-09", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "33224", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "7536", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-816675614874955054622587", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4d059a49-57f3-4fe4-ab32-ba03cddbf666", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-816675614874955054622587", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-11-30", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "264313", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "1702", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-583571011792716331126348", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a336dc1a-f087-492a-96d2-80e64ec70178", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-583571011792716331126348", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-12-20", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "173754", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "4147", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-701698086749428343178985", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3c5c8509-adeb-4a2a-91ac-7456c953bda7", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-701698086749428343178985", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-09-08", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "859315", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "9360", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-629544766376868286560031", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c14cbd74-248c-4c05-807c-e14766317c7f", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-629544766376868286560031", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-08-31", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-18", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "421680", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "7936", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-574718760399170263078806", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b362a145-eb11-42df-837f-b8450ab6d65a", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-574718760399170263078806", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-07-10", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-02", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "574615", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 23 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "4964", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-585548541298586466303843", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:761e02f3-5258-431e-9a3d-c6e1bf2ed993", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-585548541298586466303843", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-11-08", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "363231", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "7876", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-849571409038311009141692", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:955f4773-e317-4a2c-bfdd-71681c43d167", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-849571409038311009141692", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-10-23", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "542029", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "3531", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-046489068699513613983142", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d17dfa57-615c-4d7a-81f2-0389277e4e3e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-046489068699513613983142", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 61, + "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" : 84, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "childItems" : [ { + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "548787", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "8877", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-343421984914134407537068", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a83e094e-d624-41a1-9d4f-5ce815d36141", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e437151e-57a1-42b5-911c-6a0a4fd1d506", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:288c15d2-830e-4501-93c9-ec2389f6159a", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d657e92b-31ac-4198-b49a-1b5b89ac067a", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5bf9db4b-a700-4937-9cbf-de04ec91289e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7bf2c1ac-ccc5-4b39-845f-8fc15f37e4c9", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:582a4814-1b4f-4ab7-97f8-3583e6428b04", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:69197eeb-b681-400b-a67b-446ff52968e1", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2cdc3633-9278-46f1-a1b4-6db81ddff90c", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1c2d1acb-79c5-450b-b0e7-eb0b51da379e", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4e462559-e767-4cac-aa51-7c3e6dbbcdee", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-343421984914134407537068", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2022-09-29", + "version" : 1.6, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6201, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 16 + } + }, + "commercial" : { + "placedOnMarket" : "2022-05-06", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-343421984914134407537068", + "key" : "PartInstanceID" + } ], + "gtin" : " 23331813", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "931203007" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Compliance", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2023-10-07", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 7.2157 ] + }, + "id" : "PB7707" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Others" + } ], + "critical" : [ "Lithium" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 111 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AYRE", + "manufacturer" : { + "facilityId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-09-26", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "159823", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 9 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "6698", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-266414324653556185736448", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ab50cdb0-c239-4648-b9ed-a7dd42e72220", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-266414324653556185736448", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-08-08", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "262542", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "6942", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-439531001401998592561978", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3ec0a5de-e362-4181-b11c-717f7855192f", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-439531001401998592561978", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-10-21", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-25", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "986688", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "4675", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-021808497008475276207658", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b74504dc-5f15-4cea-ba28-80babdefd216", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-021808497008475276207658", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-07-20", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "761723", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "2393", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-883135781243388996380832", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:155dfe14-4d27-41f2-a181-6a275eefdc8e", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-883135781243388996380832", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-01-01", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "517072", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "3439", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-990836037358215841702922", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:51e5ce2d-51ee-4e46-b4df-f0aad1250711", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-990836037358215841702922", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-07-14", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-18", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "860371", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1793", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-960387226518041014742915", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7ada1973-6ede-41cd-9d7e-ee7210cb57ec", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-960387226518041014742915", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-08-25", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-09", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "402009", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "7973", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-749514118885207807523684", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:33d31c53-a97b-4949-96d6-27abaa572486", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-749514118885207807523684", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-06-18", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-23", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "337414", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "4420", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-291715621913372083066844", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b773e17f-884d-48d5-a2be-32d638aa8e60", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-291715621913372083066844", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-12-07", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-06", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "77438", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "2276", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-443271381888074190712314", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a568cea8-143f-42a7-b9f9-f8f3ec146082", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-443271381888074190712314", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-05-31", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "672157", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "1776", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-603465092925964841944939", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7013115d-d229-4f24-9df3-8a0fc2b4f3b4", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-603465092925964841944939", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 84, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 73, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 31, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "childItems" : [ { + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "154592", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "9294", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-823560382376748897634491", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2614af24-9bde-4eac-919a-7660638c5f53", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7f9d145b-4a6f-4d79-92ba-c12994b6b483", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f9610458-0225-44b5-abb5-fec8cf099797", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:07c96796-3b53-4e56-a4ac-f59fa133800b", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b8456285-e981-4ad9-973f-512f01487ae6", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f2827a52-4654-4db0-a19c-2854b1fb411b", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6d0c58c2-76d9-4bbd-9cfb-26b6720651ad", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4acc9a3d-610a-4273-af81-9cd7aec2afb2", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3b3a70bf-5ec7-46c0-992c-4334d756cb7a", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7af5cee7-61dc-423c-a29c-3bfa738b362d", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a5c78f5c-4008-4014-9c12-f152326ba9a4", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-823560382376748897634491", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2021-12-07", + "version" : 2.3, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.63989999999998, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 17 + } + }, + "commercial" : { + "placedOnMarket" : "2021-06-26", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-823560382376748897634491", + "key" : "PartInstanceID" + } ], + "gtin" : " 38615101", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "341259269" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Compliance", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2023-05-30", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 5.6098 ] + }, + "id" : "LN1496" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Others" + } ], + "critical" : [ "Graphite" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 117 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B3NX", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-03-13", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-05", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "455628", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "6314", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-848885292462912694102251", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:dbe5222e-e498-402f-98f2-4e45c66099a7", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-848885292462912694102251", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-08-15", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-15", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "335379", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "6384", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-689813702415564518493945", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e2b5fe18-114d-4335-8886-1342d152a6bc", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-689813702415564518493945", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2024-01-31", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "199331", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "7004", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-987660837352774924045931", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:42569d31-653c-4edf-bcf0-9377da2501b6", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-987660837352774924045931", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-05-07", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "498568", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "3727", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-654353296014446496284506", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9e3d6e45-10ce-4803-adfa-178aa2f28de5", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-654353296014446496284506", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-09-10", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "326790", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "1442", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-588767590807225389768378", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5c73472b-c9b9-4767-aa9c-3997a1fd74a8", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-588767590807225389768378", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-10-04", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-01", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "515853", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "1725", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-931418197632196969612711", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f77404be-d106-4185-8bf2-5ea493235bdc", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-931418197632196969612711", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-07-22", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "829859", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "4783", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-111951972013972210420848", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c776232e-d7a9-4ddd-a18a-0978ef29b492", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-111951972013972210420848", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-08-26", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-13", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "271591", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "5926", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-932110494217527413805411", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b20d0071-e9f9-4da6-bbf6-e21cf24b62ec", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-932110494217527413805411", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-03-14", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-15", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "927759", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "4113", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-925671333895560015573644", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f89b88d3-8060-417b-9b23-3c98acde0d62", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-925671333895560015573644", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-06-12", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "212566", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 9 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "9522", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-942663371448425761623285", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:bcb55f75-602d-45d9-bac5-5e64e9ab53b9", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-942663371448425761623285", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 7, + "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" : 40, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "childItems" : [ { + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "587599", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "6007", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-862307068158749400741457", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4a76b061-0f80-4993-ab51-25bb01d5977c", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3b9d35a7-c5db-42d9-9011-9e4b982e3256", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:04c4b249-70bc-4735-971b-b5328358945b", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c84f4059-e4e7-4169-8ea8-6761d2a44eca", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a7ac16d1-3042-4a8b-92e9-4ee1b3030bde", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ddfabcb8-3785-428a-a60c-9de984a047a2", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4a2da884-346d-46e4-82ff-a5564f04c565", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7740e6f1-8e26-4c8a-a9c0-54f60a2be416", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5cab1261-57a8-45a0-968d-6d5ce98a92e1", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:af70076a-abbf-4a31-aab4-b2baae0eafc4", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f0a32eee-602e-4209-9c83-adaea312eaae", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-862307068158749400741457", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2022-08-20", + "version" : 1.8, + "status" : "Draft" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.62269999999998, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 15 + } + }, + "commercial" : { + "placedOnMarket" : "2021-04-24", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-862307068158749400741457", + "key" : "PartInstanceID" + } ], + "gtin" : " 88090453", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "687454395" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2023-03-28", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 5.6145 ] + }, + "id" : "XF3944" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Polyamid" + } ], + "critical" : [ "Nickel" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 110 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AYRE", + "manufacturer" : { + "facilityId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-01-18", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "931410", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "6703", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-139880244941669856794800", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a3780205-b64b-4442-9b6f-83a6cccb1e66", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-139880244941669856794800", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-09-30", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-27", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "195467", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "4200", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-050830021987571935432965", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:09bccfbb-c39e-4e36-8c13-a69e73c41c00", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-050830021987571935432965", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-03-04", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "611307", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 25 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "9031", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-857703197842350741949159", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8ee2ae10-e976-4f94-943b-c794f8e4b1e4", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-857703197842350741949159", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-09-17", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "105185", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "3318", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-022011077349717419717141", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e1b0c08e-0fb9-44b0-8bb9-17ecc22d4dba", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-022011077349717419717141", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-01-15", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "485598", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "7376", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-426790987058017367255084", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:04bf1c2f-9a48-44cd-abcd-74543250218a", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-426790987058017367255084", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-08-25", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-06", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "467368", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "8105", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-966360536351633404870551", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6f67d687-35f6-4e64-ac6d-4d51dacf8d6f", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-966360536351633404870551", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-04-19", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-25", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "142539", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "3209", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-586885151204747027102290", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:40ac00e5-8213-46d8-8049-b832ff178200", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-586885151204747027102290", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-02-08", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "398156", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "6328", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-660077714588397744604444", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1bde9b18-9592-4a96-93b3-1d6294658fa4", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-660077714588397744604444", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-04-19", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "536838", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "5148", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-902959824536006525317752", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8eac0c20-d881-47c6-80c5-3dd2ca7f97a3", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-902959824536006525317752", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-07-19", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "683565", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "8402", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-977849350799966985051994", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:cbc584b5-8687-438f-a32c-2d27fc03a213", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-977849350799966985051994", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 26, + "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" : 39, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "childItems" : [ { + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "308977", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "3787", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-418669803382355934007191", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8f9d74f6-42cc-4253-b698-01dcc192d5dc", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:657b2156-d29e-46db-a506-6feff7c37a48", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7168150d-8825-4819-a3ae-c1b5847afcb8", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c25ad346-f75e-492e-9e1c-4b4a6529103c", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:30d0e580-92d9-475b-b95c-4ef39944baf5", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:014a1ac3-9393-431f-b89d-384f6af10260", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b57e3223-9b54-4aed-862e-5e3829a55093", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:da10cc8e-e01c-4495-92fb-ea4334dd1864", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:76cbf0a1-9566-43ea-afde-b12320cbda2c", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:57dc589d-ba38-45aa-923e-861aa4c170ea", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d23e65b6-8a18-4458-9444-86012054c456", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-418669803382355934007191", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2024-01-11", + "version" : 3, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6889, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 17 + } + }, + "commercial" : { + "placedOnMarket" : "2023-10-28", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-418669803382355934007191", + "key" : "PartInstanceID" + } ], + "gtin" : " 61229344", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "168346322" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "SubstanceOfConcern", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-02-28", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 5.7531 ] + }, + "id" : "KQ1035" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Steel" + } ], + "critical" : [ "Lithium" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 117 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AYRE", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-01-26", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "282047", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "2749", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-556829998319273469934509", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fca0bcc8-295b-4f5a-8146-a4130ba512cc", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-556829998319273469934509", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-02-28", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-13", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "561423", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "4012", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-114219272230854934064186", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d9072edf-577e-4fd8-8b22-7a30a29aa02d", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-114219272230854934064186", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-09-18", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "917481", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "4194", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-829824339044400302167457", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ddc48568-0607-49f6-87fe-17745b723e46", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-829824339044400302167457", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-09-03", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-18", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "856374", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "8335", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-224566669636331090545181", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9646bf2c-c3da-4c69-92d2-5b3cb4079e46", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-224566669636331090545181", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-12-24", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "750121", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9030", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-635280441324370168837677", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e412ac7f-f0cc-4365-ad1a-2651b5c2d952", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-635280441324370168837677", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-07-19", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-17", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "902500", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "7217", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-500407972173549682027830", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ad34598e-a3f7-4659-aa55-c62c3e20a87b", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-500407972173549682027830", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-07-05", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-02", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "492086", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7931", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-219146627260821677812233", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:534fcb00-8980-4314-bb70-b1e224016483", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-219146627260821677812233", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-01-18", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "794841", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "5710", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-074461602369719943828031", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7d5782cc-0955-4cb9-aaab-b2735ce1809b", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-074461602369719943828031", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-09-12", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-27", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "684632", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "9713", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-718137720701312328534032", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b1f2683b-f5f2-4d4f-a757-0c4cea3d350b", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-718137720701312328534032", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-05-21", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "31858", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 24 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "5339", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-153173100258750590484715", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7cac3e70-9a92-4138-a50b-e08fa3be2eef", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-153173100258750590484715", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 53, + "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" : 75, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "childItems" : [ { + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "279805", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "4141", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-549149826651196308165721", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:bde78f8e-7bae-44d1-a8ad-e94592f40f13", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:50b49d6b-e2d8-46b3-b8f5-203133b3f5a0", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:aba49add-604c-4354-a12f-64b8e972ce02", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2ab78787-f369-4f4f-839b-70e1a2515627", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ae08a15f-1330-4f4c-8f7e-19256096c4e9", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:149fc796-a851-42aa-b898-c61cf8b58579", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:59ac42a0-6506-441e-88db-e908f1e9270e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5ad3660d-e783-4fc9-ab41-cf61fc66f8db", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4019d567-603a-43b2-8e0a-12a6e635dec6", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1bd6da48-788f-4635-9419-05014eaceb3e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b39500d9-6dcf-4f2f-8f9c-dbeb46f302e2", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-549149826651196308165721", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-11-05", + "version" : 2, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6212, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 18 + } + }, + "commercial" : { + "placedOnMarket" : "2022-11-26", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-549149826651196308165721", + "key" : "PartInstanceID" + } ], + "gtin" : " 18258694", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "575343610" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "SubstanceOfConcern", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-02-13", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 2.9056 ] + }, + "id" : "UF2327" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Lithium" + } ], + "critical" : [ "Nickel" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 117 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AYRE", + "manufacturer" : { + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-06-12", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-17", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "630279", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "7579", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-941922963203176985468580", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1f245450-fa1e-4ef1-9911-390182fae324", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-941922963203176985468580", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-03-24", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "239091", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6123", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-432542315695843094217907", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5b77f3c0-fb29-4de7-90da-060d1e14d497", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-432542315695843094217907", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-05-26", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "309340", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "1163", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-965432778069734733416709", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6f01a0f2-04ce-4fa4-87b9-5c59a462de25", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-965432778069734733416709", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-07-08", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "903326", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "9581", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-239430732070176538458534", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:012cbcd1-af40-4774-b7b1-cb112fc42b68", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-239430732070176538458534", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-05-22", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-27", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "103858", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "7652", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-381277313491898129024746", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f76503c1-2011-4825-b2e2-7beedb111d1d", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-381277313491898129024746", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-09-10", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "931970", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1171", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-150599582357067252883840", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8efbabcd-c53f-41ba-b38c-f80dc93291d0", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-150599582357067252883840", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-12-27", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "247381", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "6840", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-529552938923438940370052", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0163195c-fc9e-4722-b8b0-baac6dd058b4", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-529552938923438940370052", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-11-07", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "765032", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2145", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-810124424804228541312316", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e038a318-af91-4d18-be3b-90b14e82ecaa", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-810124424804228541312316", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-07-09", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-15", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "520147", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "1370", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-573921318124335337929678", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b3135e0c-4622-4a64-a82c-ee3b3b387895", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-573921318124335337929678", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-03-21", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-01", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "52618", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 9 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "7122", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-447262560402359900551000", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9ceff318-73ca-4f37-8189-a8c954e06075", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-447262560402359900551000", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 32, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 60, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 9, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 40.95 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 59, + "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" : 17, + "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" : 42, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 58, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 71, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "childItems" : [ { + "catenaXId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003CSGV", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003CSGV", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B2OM", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B5MJ", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "PC-93", + "key" : "manufacturerPartId" + }, { + "value" : "OMBHDGEVKKOXOFVFX", + "key" : "partInstanceId" + }, { + "value" : "OMBHDGEVKKOXOFVFX", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2014-10-02T00:27:59.000Z", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "partTypeInformation" : { + "manufacturerPartId" : "PC-93", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Vehicle Fully Electric" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Cabrio-Limousine", + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "engine" : { + "size" : 2998, + "power" : 143 + }, + "emptyWeight" : 1.73, + "fuel" : "Elektro", + "vehicleModel" : "Vehicle Fully Electric", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "S388C", + "description" : "security plus", + "group" : "special equipment" + }, { + "code" : "C247R", + "description" : "trailer hitch", + "group" : "special equipment" + }, { + "code" : "A01CR", + "description" : "remote engine start", + "group" : "special equipment" + }, { + "code" : "A458D", + "description" : "parking assistance ", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2021-04-13", + "mileageDistance" : 120000 + } ] + } ] + }, { + "catenaXId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "344681", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "1988", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-264035732197252482880258", + "key" : "partInstanceId" + }, { + "value" : "Company 10", + "key" : "company" + }, { + "value" : "Brand 10", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", + "partTypeInformation" : { + "ownerPartId" : "73849201-61", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Catalysator", + "partClassification" : [ { + "value" : "Catalysator", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Catalysator" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "childItems" : [ { + "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000000BJTL", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "bpnl" : "BPNL00000003CSGV", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "79252", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "5951", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-532542427279625373288172", + "key" : "partInstanceId" + }, { + "value" : "Company 3", + "key" : "company" + }, { + "value" : "Brand 3", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "manufacturerId" : "BPNL00000003CSGV", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:db164948-a214-4fe4-ae5e-ad5ee68056ca", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "partTypeInformation" : { + "ownerPartId" : "22782277-50", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Door front-left", + "partClassification" : [ { + "value" : "Door front-left", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "nameAtOwner" : "Door front-left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "customers" : [ { + "businessPartner" : "BPNL00000003CSGV", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { + "localIdentifiers" : [ { + "value" : "91462591PXI", + "key" : "jisNumber" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000000BJTL", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-3434-A", + "customerPartId" : "PRT-12345", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "side element A" + } + } ], + "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "bpnl" : "BPNL00000000BJTL", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "802618", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "4789", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-772983460135049623346095", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "manufacturerId" : "BPNL00000000BJTL", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "partTypeInformation" : { + "ownerPartId" : "95657762-59", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Door Key", + "partClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000000BJTL:PartFamily" + } ], + "nameAtOwner" : "Door Key" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "customers" : [ { + "businessPartner" : "BPNL00000000BJTL", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "childItems" : [ { + "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000000BJTL", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "bpnl" : "BPNL00000003CSGV", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "758669", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "5730", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-941648218258646714580566", + "key" : "partInstanceId" + }, { + "value" : "Company 4", + "key" : "company" + }, { + "value" : "Brand 4", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "manufacturerId" : "BPNL00000003CSGV", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:556e3251-11bb-443b-8e5e-96ba0138aa01", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "partTypeInformation" : { + "ownerPartId" : "33740332-54", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Door front-right", + "partClassification" : [ { + "value" : "Door front-right", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "nameAtOwner" : "Door front-right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "customers" : [ { + "businessPartner" : "BPNL00000003CSGV", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { + "localIdentifiers" : [ { + "value" : "11345547UVN", + "key" : "jisNumber" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000000BJTL", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-3434-A", + "customerPartId" : "PRT-12345", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "side element A" + } + } ], + "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "bpnl" : "BPNL00000000BJTL", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "363689", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "6385", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-890180938494699631851225", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "manufacturerId" : "BPNL00000000BJTL", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "partTypeInformation" : { + "ownerPartId" : "95657762-59", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Door Key", + "partClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000000BJTL:PartFamily" + } ], + "nameAtOwner" : "Door Key" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "customers" : [ { + "businessPartner" : "BPNL00000000BJTL", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "613938", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "5578", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-425402122056753521010122", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", + "partTypeInformation" : { + "ownerPartId" : "15635759-16", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Door rear-left", + "partClassification" : [ { + "value" : "Door rear-left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Door rear-left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "121122", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "3855", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-188548980582138038135464", + "key" : "partInstanceId" + }, { + "value" : "Company 5", + "key" : "company" + }, { + "value" : "Brand 5", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", + "partTypeInformation" : { + "ownerPartId" : "28673126-98", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Door rear-right", + "partClassification" : [ { + "value" : "Door rear-right", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Door rear-right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "772378", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "5832", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-219651831423071932337739", + "key" : "partInstanceId" + }, { + "value" : "Company 6", + "key" : "company" + }, { + "value" : "Brand 6", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", + "partTypeInformation" : { + "ownerPartId" : "94421589-82", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Engine hood", + "partClassification" : [ { + "value" : "Engine hood", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Engine hood" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "713183", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "3403", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-229499865779802771168337", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", + "partTypeInformation" : { + "ownerPartId" : "85023955-75", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Tailgate", + "partClassification" : [ { + "value" : "Tailgate", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Tailgate" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "946351", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "7284", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-970517596585278331348560", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", + "partTypeInformation" : { + "ownerPartId" : "13769860-47", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Fender right", + "partClassification" : [ { + "value" : "Fender right", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Fender right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "432537", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "1405", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-045227129302826121356634", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", + "partTypeInformation" : { + "ownerPartId" : "36643162-35", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Fender right", + "partClassification" : [ { + "value" : "Fender right", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Fender right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "528720", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 24 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "3354", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-100036177199295659893765", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", + "partTypeInformation" : { + "ownerPartId" : "54165444-59", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Bumper front", + "partClassification" : [ { + "value" : "Bumper front", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Bumper front" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "377714", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "3324", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-551163600198049838485842", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", + "partTypeInformation" : { + "ownerPartId" : "22768257-25", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Bumper rear", + "partClassification" : [ { + "value" : "Bumper rear", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Bumper rear" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "393939", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "7998", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-335731119820995518008771", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", + "partTypeInformation" : { + "ownerPartId" : "65529521-37", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Exterior mirror left", + "partClassification" : [ { + "value" : "Exterior mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Exterior mirror left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "230290", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "5285", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-079239086229295448541139", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", + "partTypeInformation" : { + "ownerPartId" : "58471477-24", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Exterior mirror right", + "partClassification" : [ { + "value" : "Exterior mirror right", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Exterior mirror right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "892455", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "8069", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-662892968393446403852433", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", + "partTypeInformation" : { + "ownerPartId" : "09002013-68", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Tailer coupling", + "partClassification" : [ { + "value" : "Tailer coupling", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Tailer coupling" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "379760", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2969", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-889772651801296554294291", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", + "partTypeInformation" : { + "ownerPartId" : "43501996-98", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Dashboard", + "partClassification" : [ { + "value" : "Dashboard", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Dashboard" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "895753", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "7750", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-540565783816081906926354", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", + "partTypeInformation" : { + "ownerPartId" : "77795937-13", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Steering wheel", + "partClassification" : [ { + "value" : "Steering wheel", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Steering wheel" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "327153", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2779", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-279563108780111500871292", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", + "partTypeInformation" : { + "ownerPartId" : "20125432-59", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Indicator left", + "partClassification" : [ { + "value" : "Indicator left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Indicator left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "164206", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "1736", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-208125027138910912230197", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", + "partTypeInformation" : { + "ownerPartId" : "19073706-76", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Indicator right", + "partClassification" : [ { + "value" : "Indicator right", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Indicator right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "507946", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "1797", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-990942273895285348726954", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", + "partTypeInformation" : { + "ownerPartId" : "45415162-57", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Led headlight", + "partClassification" : [ { + "value" : "Led headlight", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Led headlight" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "774660", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "8288", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-492027182143893536578211", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", + "partTypeInformation" : { + "ownerPartId" : "78141846-87", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Starter motor", + "partClassification" : [ { + "value" : "Starter motor", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Starter motor" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "995890", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "7174", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-082450001638146989330611", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", + "partTypeInformation" : { + "ownerPartId" : "81324139-23", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Alternator", + "partClassification" : [ { + "value" : "Alternator", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Alternator" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "942988", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "4702", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-143989149387311917330886", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", + "partTypeInformation" : { + "ownerPartId" : "57929013-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Air conditioning compressor", + "partClassification" : [ { + "value" : "Air conditioning compressor", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Air conditioning compressor" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "65111", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "8682", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-316284489461785110855343", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", + "partTypeInformation" : { + "ownerPartId" : "61184040-23", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Taillight rear", + "partClassification" : [ { + "value" : "Taillight rear", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Taillight rear" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "217551", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "7891", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-265182792920770739941687", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", + "partTypeInformation" : { + "ownerPartId" : "78744126-74", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Taillight front", + "partClassification" : [ { + "value" : "Taillight front", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Taillight front" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "36728", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "5908", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-321655538588745557898831", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", + "partTypeInformation" : { + "ownerPartId" : "12093297-03", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Axle part front", + "partClassification" : [ { + "value" : "Axle part front", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Axle part front" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "318095", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1883", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-628587963061640627744540", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", + "partTypeInformation" : { + "ownerPartId" : "88111709-49", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Axle part rear", + "partClassification" : [ { + "value" : "Axle part rear", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Axle part rear" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "121748", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "1250", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-650434778386338517411768", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", + "partTypeInformation" : { + "ownerPartId" : "00871379-44", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Chassis", + "partClassification" : [ { + "value" : "Chassis", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Chassis" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "580190", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "7234", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-231583231538167331069744", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", + "partTypeInformation" : { + "ownerPartId" : "08901347-87", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Rims", + "partClassification" : [ { + "value" : "Rims", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Rims" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "277682", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 9 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "2775", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-291029776531969586623216", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", + "partTypeInformation" : { + "ownerPartId" : "45863316-60", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Tires", + "partClassification" : [ { + "value" : "Tires", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Tires" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 74, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 12, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 86, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "childItems" : [ { + "catenaXId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B3NX", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "bpnl" : "BPNL00000003B2OM", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "740341", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "5354", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "42555H1-52", + "key" : "manufacturerPartId" + }, { + "value" : "NO-035290552043863858362908", + "key" : "partInstanceId" + }, { + "value" : "Company 2", + "key" : "company" + }, { + "value" : "Brand 2", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B2OM", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "partTypeInformation" : { + "manufacturerPartId" : "42555H1-52", + "customerPartId" : "42555H1-52", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "manufacturerId" : "BPNL00000003B2OM", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:733f72ea-c327-4de4-bf29-c6f597595a85", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c1d012f2-2f4c-4cc5-85a9-78ab809fff87", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9068fa71-141e-43ac-94db-3d7d51550a16", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "partTypeInformation" : { + "ownerPartId" : "42555H1-52", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Transmission", + "partClassification" : [ { + "value" : "Transmission", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "nameAtOwner" : "Transmission" + } + } ], + "urn:samm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "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:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-035290552043863858362908", + "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:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "customers" : [ { + "businessPartner" : "BPNL00000003B2OM", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "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" : 82, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ], + "catenaXId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "171714", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "3822", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "partTypeInformation" : { + "manufacturerPartId" : "FW-24", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "childItems" : [ { + "catenaXId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "bpnl" : "BPNL00000003B3NX", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "353267", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "5162", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "06302Y8-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-567469628275481484503905", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "partTypeInformation" : { + "manufacturerPartId" : "06302Y8-24", + "customerPartId" : "06302Y8-24", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "manufacturerId" : "BPNL00000003B3NX", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:27e1e609-2c18-46c7-9dac-791ce42fa3b8", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "partTypeInformation" : { + "ownerPartId" : "06302Y8-24", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Sensor", + "partClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "nameAtOwner" : "Sensor" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "customers" : [ { + "businessPartner" : "BPNL00000003B3NX", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 83, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 11, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + } ] + } ], + "catenaXId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "477848", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "1650", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "partTypeInformation" : { + "manufacturerPartId" : "CK-14", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ], + "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "680147", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "8455", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "manufacturerId" : "BPNL00000003AXS3", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "partTypeInformation" : { + "manufacturerPartId" : "WI-49", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "customers" : [ { + "businessPartner" : "BPNL00000003AXS3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 15, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "childItems" : [ { + "catenaXId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B3NX", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "bpnl" : "BPNL00000003B5MJ", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "488720", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "8711", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "46614X1-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-259210182774842440463682", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B5MJ", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "partTypeInformation" : { + "manufacturerPartId" : "46614X1-98", + "customerPartId" : "46614X1-98", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "manufacturerId" : "BPNL00000003B5MJ", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4b437202-c07c-4a4e-921a-03c01c724184", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1e8dddda-b3f2-4719-b9b8-d3eedf7f1d92", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2736ba00-f1c7-4a3b-8978-ca9f9f58674f", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "partTypeInformation" : { + "ownerPartId" : "46614X1-98", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ECU", + "partClassification" : [ { + "value" : "ECU", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "nameAtOwner" : "ECU" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "customers" : [ { + "businessPartner" : "BPNL00000003B5MJ", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 88, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 14, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + } ] + } ], + "catenaXId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "141371", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "6371", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "manufacturerId" : "BPNL00000003AXS3", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "partTypeInformation" : { + "manufacturerPartId" : "GR-15", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "customers" : [ { + "businessPartner" : "BPNL00000003AXS3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "childItems" : [ { + "catenaXId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "bpnl" : "BPNL00000003B3NX", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "348770", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "9834", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "56212J7-52", + "key" : "manufacturerPartId" + }, { + "value" : "NO-727634309611409688637610", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "partTypeInformation" : { + "manufacturerPartId" : "56212J7-52", + "customerPartId" : "56212J7-52", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "manufacturerId" : "BPNL00000003B3NX", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9941c55f-8624-4702-8de9-a9823424f7a5", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "partTypeInformation" : { + "ownerPartId" : "56212J7-52", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Sensor", + "partClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "nameAtOwner" : "Sensor" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "customers" : [ { + "businessPartner" : "BPNL00000003B3NX", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm: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" : 52, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ], + "catenaXId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "897849", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "4800", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "partTypeInformation" : { + "manufacturerPartId" : "JK-61", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm: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" : 27, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ], + "catenaXId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "930368", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "7013", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "67982V2-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-737073696787221982590376", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "partTypeInformation" : { + "manufacturerPartId" : "67982V2-87", + "customerPartId" : "67982V2-87", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "partTypeInformation" : { + "ownerPartId" : "67982V2-87", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Engineering Plastics", + "partClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "Engineering Plastics" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-895713475469629339512267", + "key" : "partInstanceId" + }, { + "value" : "Company 1", + "key" : "company" + }, { + "value" : "Brand 1", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + }, + "itemVersion" : "05" + } ], + "urn:samm: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" : false, + "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" : "38049661-08", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "https://123", + "oeNumber" : "NO-895713475469629339512267", + "category" : { + "subCategory" : [ "Battery" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "Company 1", + "brand" : "Brand 1", + "productDescription" : "Battery" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ff168200-fba9-4d50-8074-116121dd9c48", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5e73f952-0541-4d3c-b1b3-11e7bb8ef690", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:dd8779e0-f4e3-429c-8e6d-f5e64984645c", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:55e3b256-5df2-4b27-b0bf-24ef35aff527", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ba7f0989-cb80-4f21-825b-f557e529664d", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2f6855f9-fdcc-4dd1-9606-1661b39876d7", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "38049661-08", + "manufacturerPartId" : "38049661-08" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a Battery", + "class" : { + "code" : "27-05-02-91", + "definition" : "Traction battery, starter battery (parts)" + }, + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2021-09-27", + "version" : 2.2, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 1257.0484, + "width" : 1257, + "length" : 2052, + "weight" : 675, + "height" : 303 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 19 + } + }, + "commercial" : { + "placedOnMarket" : "2020-10-07", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-895713475469629339512267", + "key" : "PartInstanceID" + } ], + "gtin" : " 29402437", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "299862107" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Passport", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2022-12-29", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 0.9695 ] + }, + "id" : "XE1625" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Cobalt" + } ], + "critical" : [ "Graphite" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 113 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B3NX", + "manufacturer" : { + "facilityId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 2, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 8, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 79, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "childItems" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "98791", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "4910", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "partTypeInformation" : { + "ownerPartId" : "38049661-08", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Battery", + "partClassification" : [ { + "value" : "Battery", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "Battery" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-895713475469629339512267", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "pack" + } ], + "productType" : "pack" + } ], + "urn:samm: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:samm: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" : 58, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 64, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "childItems" : [ { + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "276472", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "4561", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-687113612968742222940062", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2a9c3adb-c757-4c14-bcea-07920643bf17", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ad92ac7d-a13d-4338-a6de-8a01e66c3896", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:488e74af-d665-4b41-a6f3-74f2384773f2", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:82621f3a-6943-4b28-a17b-6b7bd600ddb5", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:bd609bc9-b8b6-404e-90a7-32ec9111050f", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3cad2036-f3aa-4117-a32c-efcc07975c0d", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fbfd002a-0f50-4f73-a768-47d64ad9e0b5", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a54fc9c0-d2dd-417d-9d31-4d764e114782", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5868633e-c78c-4411-9bd6-a5bed1069a82", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3e4124e6-3c37-4910-8aaf-c09ffdd6252d", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e3b0f102-98b3-42de-973c-0e34aa51bc22", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-687113612968742222940062", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2022-10-13", + "version" : 1.2, + "status" : "Approved" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6427, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 19 + } + }, + "commercial" : { + "placedOnMarket" : "2022-03-21", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-687113612968742222940062", + "key" : "PartInstanceID" + } ], + "gtin" : " 63000226", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "100159072" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Compliance", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2022-10-22", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 1.2394 ] + }, + "id" : "JG9921" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Graphite" + } ], + "critical" : [ "Manganese" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 116 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B2OM", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-10-11", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "29945", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "8692", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-991767235182356540580326", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0629471c-f896-4217-b79e-0aeb31224d62", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-991767235182356540580326", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-10-09", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-05", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "512105", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "4439", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-545804594773407247538373", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9697415f-e8cb-4f58-9527-ea63f831902a", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-545804594773407247538373", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-11-09", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "550731", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "6134", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-631371404662581637455960", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:cdbd0dc2-9482-45e6-9e2a-bd2bf2bce918", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-631371404662581637455960", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-08-25", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "783564", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "1182", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-045002863370677316790179", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:37b41ccc-e207-418a-814a-70471ab92615", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-045002863370677316790179", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-11-25", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-06", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "166529", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "2290", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-352043035937848602986982", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1a349f23-007b-4065-b06d-37db5a8ff2b9", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-352043035937848602986982", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-04-12", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-25", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "59352", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "7924", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-632396764290897802894727", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f02aa833-37b4-4dc1-b296-1cb081f28863", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-632396764290897802894727", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-10-19", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "250126", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7219", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-609733587434520163359758", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e4efde77-c9a7-4ca6-8dec-e6eb0b47633e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-609733587434520163359758", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-04-26", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "245679", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "8593", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-000743277368034273286877", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:05b8ea1b-a9ad-4747-a573-1ebf1b8d963e", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-000743277368034273286877", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-12-04", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "757463", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "3457", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-081673198748776020784976", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:630521f7-1210-4911-b636-c52af839b667", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-081673198748776020784976", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-01-21", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "345102", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "4091", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-340269000861175179352744", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:dd8e0ecd-3bc9-4d33-82b3-2d22b48b4b24", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-340269000861175179352744", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 0, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 75, + "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:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "childItems" : [ { + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "528112", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "4264", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-930399204706280839185780", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:30726710-6781-4ecf-bc10-32f4603e472e", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1627b916-c61f-45c2-8373-a3cde6dca474", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:68dc0b52-484d-43a4-951a-c9aae0d3f6e0", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:315888a4-412c-4ac6-bf04-e86a413202e9", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c4c3b3b1-90b6-46cb-9b75-8d1db6390061", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:db348591-16d7-4045-828f-cbc2d8dd55d4", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:82e82195-5ea8-4672-b954-fdf6cb3616aa", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1031da68-24f2-429e-a453-acc8c31c0f9c", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8fd8a5ad-fd1f-43f3-8cda-f7d0c50602dd", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b6ff08f4-f895-4730-8f98-e0f7ef1d7158", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7f33b8ad-f7d7-4ee0-9eee-a320b9408782", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-930399204706280839185780", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-12-07", + "version" : 1.5, + "status" : "Expired" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6988, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 19 + } + }, + "commercial" : { + "placedOnMarket" : "2022-03-14", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-930399204706280839185780", + "key" : "PartInstanceID" + } ], + "gtin" : " 50405858", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "217762458" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Compliance", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-03-02", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 8.8673 ] + }, + "id" : "CO2626" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Steel" + } ], + "critical" : [ "Manganese" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 115 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B2OM", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-09-25", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-01", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "849845", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "6614", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-875824163752079594295649", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:45932070-a93c-4c77-81a3-116aec564a05", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-875824163752079594295649", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-03-30", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "94016", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "3455", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-181274919815027048779446", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4c34eac1-9a0b-4675-9821-7217b4d3dc42", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-181274919815027048779446", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-11-28", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "613386", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "5374", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-624099875318346541799114", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:06f38f5c-3879-4e92-a522-686f5443428a", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-624099875318346541799114", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-04-10", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "884019", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "6746", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-605812180459007775211801", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e0cc79df-b1cc-4179-9407-4e0f4fd4f19f", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-605812180459007775211801", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-10-10", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-02", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "935131", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "8100", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-968546653898175607848081", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3bf6c18f-02d0-49d6-bf85-dfefbce4e4b0", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-968546653898175607848081", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-01-27", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "444876", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2660", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-855241899954855664946610", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:85425f36-99aa-459b-918a-82a54553705e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-855241899954855664946610", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-07-16", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "789866", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "3022", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-971962340442720997066820", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0dd31796-d329-4f79-a566-f5188ad9cc55", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-971962340442720997066820", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-07-01", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "663613", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "8743", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-912642282493118256153758", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5644e790-c4b5-4a8d-960d-b6c6aa8d3b07", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-912642282493118256153758", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-06-21", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "879377", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "1411", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-289487941315784350536387", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ff50fc9e-ef9c-4235-bd06-98727d11795e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-289487941315784350536387", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-04-27", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "696702", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "3942", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-218925641782669622254168", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a970c990-c8f9-4636-b5d4-a3b9e3d1e2d4", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-218925641782669622254168", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 88, + "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" : 29, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "childItems" : [ { + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "278337", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "9037", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-266625803499013057727310", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e553e26e-de63-4ce9-ac24-6ef009c72cce", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5f5a1239-6412-40c6-b6bb-ab1c48d605c1", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:81503307-6207-4ac6-952f-ee5ac97d9b37", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:56796667-e8b6-47c8-8473-0f4405280d8c", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2a3d807a-8c0f-4724-8168-dc926a3fa9b8", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:94957af5-c50c-409d-89fb-4bd8cffc8855", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4bd91ba0-653d-43cc-896f-98f1ff031526", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b90f6671-e863-4c61-b478-50a26cf38042", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:66137a0e-4a71-4360-b556-ef8fe211e9ae", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ef675976-6da6-4e89-bc9e-3f18212bbcdf", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c467d5c5-dcb6-49bc-af93-6a3c1318ce79", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-266625803499013057727310", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2021-09-07", + "version" : 2.3, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6781, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 15 + } + }, + "commercial" : { + "placedOnMarket" : "2021-06-07", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-266625803499013057727310", + "key" : "PartInstanceID" + } ], + "gtin" : " 52245597", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "388682915" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Compliance", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2022-03-30", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 7.25 ] + }, + "id" : "VX5322" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Steel" + } ], + "critical" : [ "Cobalt" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 121 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AYRE", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-07-03", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "720827", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "4083", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-813531313449156434340447", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f46e4ec9-3791-4bcc-bda1-1b381c4c0007", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-813531313449156434340447", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-08-20", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "726830", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "6045", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-160502363712170606609249", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e30f53f5-d096-4b8d-b738-16f2a8c86bb7", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-160502363712170606609249", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-03-03", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "125411", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "9687", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-598740850606585963235307", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:161425eb-a656-474a-bc48-cc822e5c431e", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-598740850606585963235307", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-05-29", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "845221", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "1665", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-088559388438816364444095", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a7852bf6-ea94-40e5-895b-bd240eee8469", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-088559388438816364444095", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-04-15", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-14", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "433380", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "3214", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-226975986307778816726774", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e5e314f5-4ab2-4457-84b1-51ca5d68ee87", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-226975986307778816726774", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-10-05", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "899752", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "5551", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-169345443003327596491868", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5bb5ff2c-66ce-408a-85ac-045c03bb3df7", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-169345443003327596491868", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-09-08", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "862255", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "8043", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-928993266068674740609748", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:408cc932-804a-4584-ab9a-1861aa32bc8a", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-928993266068674740609748", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-08-07", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "656036", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "5594", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-522142872283988107476796", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9bb5d74f-5549-427f-b637-0d465dc0a7c6", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-522142872283988107476796", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-02-09", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-05", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "388692", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "5187", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-824705014257620858873450", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1c2db2cd-b93c-4058-8b7a-b96d302f33e0", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-824705014257620858873450", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-09-08", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-25", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "711477", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "2407", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-405159030052090407177399", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:89209001-da0e-46b3-9b2c-65fb28926cc9", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-405159030052090407177399", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 49, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 23, + "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:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "childItems" : [ { + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "750204", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "8597", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-666462495321800521350161", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4637acf8-9fa4-4cb8-93f2-cc4b5e6386f1", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6c31ae6b-6a71-4279-beb7-b8c8093f3767", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:31e21a39-3b30-4b01-ab7c-c97d1a85e0e0", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5f543e94-1085-4252-b326-be28aac57cff", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:075cd693-5bfb-49eb-98ea-8ef0bc986709", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e19b6141-eb8d-4fdb-a678-f5ed47ac25d9", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6352c846-ae60-4aad-95ac-060e611688e7", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:55d77876-0c90-4f80-a890-f9e42df95adb", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0fe5ffab-5d1d-4db2-ab12-7c11858a6169", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4542651d-ec6d-4dc0-9e81-03013a793abd", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:40c9674b-f1fd-4b6a-89d2-ead5403c6883", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-666462495321800521350161", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-12-26", + "version" : 2.6, + "status" : "Expired" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.68019999999999, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 15 + } + }, + "commercial" : { + "placedOnMarket" : "2023-12-12", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-666462495321800521350161", + "key" : "PartInstanceID" + } ], + "gtin" : " 80816507", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "338960894" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Compliance", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-01-28", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 8.8569 ] + }, + "id" : "TV8227" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "UV Varnish" + } ], + "critical" : [ "Nickel" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 120 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B3NX", + "manufacturer" : { + "facilityId" : "BPNL00000003B3NX", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-02-21", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "440587", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "1784", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-243431359981652793976124", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1b6966e0-303a-4f61-9fee-c98a94297ed5", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-243431359981652793976124", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-11-12", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "804866", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "8876", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-023002600992356013537416", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c29ae841-3b6e-47b9-a5fc-65f9f7edd927", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-023002600992356013537416", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-02-24", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "941283", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "9395", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-723900595323676180970239", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7d921a84-ce8b-42ef-b6c6-4e4c8abea760", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-723900595323676180970239", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-07-16", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "201539", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "3201", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-852995337686482639469224", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c69859ac-dbd1-4d65-97c4-8318f78d36a4", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-852995337686482639469224", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-02-24", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-02", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "608424", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "4955", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-864271430120841368141725", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7bd13c22-ca20-4588-8251-28386e9c68a6", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-864271430120841368141725", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-06-25", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "83839", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "2658", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-493965559315963173200149", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ade79d38-7a36-44c7-80a8-fdc08a7cb8fb", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-493965559315963173200149", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-06-05", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-04", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "391038", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "4977", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-631945854224183782802522", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0f5748c3-c0bd-46e4-9832-db3120d291c8", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-631945854224183782802522", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-09-26", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-17", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "64252", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "7550", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-528164755627618925093346", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ab698cc6-6b42-41ba-97ae-50ea78e7078a", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-528164755627618925093346", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-10-31", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "182499", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "4222", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-080946431019630794165586", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ec903206-ddb7-4c2c-8b6c-abd3cd3f419b", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-080946431019630794165586", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-02-15", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-23", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "716893", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "6717", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-562616991863372023913717", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7813e8b3-9f24-4c98-be61-804592f09faf", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-562616991863372023913717", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 80, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 50, + "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:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "childItems" : [ { + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "296324", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "5460", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-867046467379395919343188", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9b3502fb-4137-4569-806f-9c91d4a544da", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:185a4fcf-7340-48d8-b32c-e34a1ac7ff7b", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fab74cea-2b28-448a-82f4-cf8a68018087", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2bd560c5-6f6a-4897-91ef-8e12cbe69f46", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f9420cbc-700e-47b6-86f5-0e09f6e21687", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:29556c31-a6e0-4c19-b11d-bde92fb31779", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fcd11560-75ec-459b-ad76-601049cfacaf", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e09d57d2-0c2e-42a9-b695-e3a5191f082b", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4b5c89ee-5d84-4331-b4ef-15f04a727aca", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8f362f14-95d6-4b17-8f06-99f97549d351", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c5f07ed3-9c8f-4f31-b7c0-58297f97f30f", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-867046467379395919343188", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-12-27", + "version" : 2, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6324, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 15 + } + }, + "commercial" : { + "placedOnMarket" : "2022-11-06", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-867046467379395919343188", + "key" : "PartInstanceID" + } ], + "gtin" : " 78885933", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "394264016" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-02-02", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 0.9146 ] + }, + "id" : "FO5164" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Manganese" + } ], + "critical" : [ "Cobalt" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 111 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AYRE", + "manufacturer" : { + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-06-16", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "486113", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "9750", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-527219620679419431905191", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9f76b956-94c1-40af-bc0b-f775f5768aac", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-527219620679419431905191", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-02-22", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "576741", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "7917", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-617791177853609557272147", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e01f7173-86fb-4daa-b205-a9b56a07da2d", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-617791177853609557272147", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-07-02", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-27", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "250089", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "5129", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-431960051195561035016450", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6a5ac78c-93ff-475d-8d4f-73bdd745dfb7", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-431960051195561035016450", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-03-09", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "57892", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "5839", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-642498843554646731896600", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fde1fc3c-d687-40a6-ab10-5330a445a477", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-642498843554646731896600", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-10-11", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "839129", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "4989", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-475634520880851519671204", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d92d17c4-9867-40c1-aff8-ccf6777effe7", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-475634520880851519671204", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-01-08", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "73823", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "4218", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-964473612808435756536485", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a97420bd-45e7-4cc7-9f60-c990732828b9", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-964473612808435756536485", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-02-03", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "530545", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "1441", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-389701329773588536459130", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:28cdce65-60ca-44f7-9a05-3a292fc1e45a", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-389701329773588536459130", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-03-04", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-04", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "208638", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "7389", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-265855892739828724648190", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:896cf53b-e577-4954-b7e1-06e33124c6dd", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-265855892739828724648190", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-09-13", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-04", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "680948", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "2281", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-175875555612811823933211", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8429cf4e-279a-4d09-97a6-8e28ac4f2ee1", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-175875555612811823933211", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-09-25", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "160595", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 9 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "2208", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-903660072999464921495584", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4832e797-d414-4c54-a3c5-d82dcab59894", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-903660072999464921495584", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 57, + "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" : 83, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "childItems" : [ { + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "38931", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "8142", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AVTH", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-791731492084972438194145", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "manufacturerId" : "BPNL00000003AVTH", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:68bddd21-7586-4158-95c2-9c89a88e558c", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:61022aa8-8094-4f27-9c40-5cdd19dddcac", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4357a21d-09ee-4218-9db8-234ca45a8daf", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ec38531c-4f82-4fb2-a8fa-d3d4912a9f63", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:51530b79-d709-43f7-a481-b30b2d75c6a6", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:708f39f2-a4fd-4c52-957e-136d8fffd699", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6ee407d0-250a-45d6-892e-26068c3a8362", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:47c7d8b7-027a-4164-a997-3dbeba5a50e1", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2b65d05f-3c67-4001-a36e-ff7766fb146a", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1c117fd9-628e-482f-85ee-9fbe4eb43211", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:475bd658-600d-41b1-a20b-4e110cba6118", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-791731492084972438194145", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2024-01-24", + "version" : 2.7, + "status" : "Approved" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6739, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 16 + } + }, + "commercial" : { + "placedOnMarket" : "2023-12-28", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-791731492084972438194145", + "key" : "PartInstanceID" + } ], + "gtin" : " 58660936", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "971564677" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Passport", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-02-26", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 0.2396 ] + }, + "id" : "VD3168" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Cobalt" + } ], + "critical" : [ "Cobalt" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 103 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B2OM", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "customers" : [ { + "businessPartner" : "BPNL00000003AVTH", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-11-01", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "273853", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "4715", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-045528680871181123527870", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3aa2a2cf-30c1-41dd-ab51-4d55b3c37850", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-045528680871181123527870", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-11-06", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "712590", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7917", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-432762596534102360005521", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a38f1235-949a-4422-ad21-606efa26af11", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-432762596534102360005521", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-11-29", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "416054", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "6133", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-773784648231452499786492", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:08eb587a-3b9a-42e1-84d0-feb6fa9f3509", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-773784648231452499786492", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-02-15", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "203822", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "1349", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-931089020852644605885160", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0726b2ee-7b3c-4508-a61f-5f032a3dfc00", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-931089020852644605885160", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-07-09", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "51836", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "2864", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-052559054522519128170672", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c57cc6c4-e720-4aa8-a1e1-fab106760396", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-052559054522519128170672", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-11-01", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "702518", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9016", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-069888996325895048192020", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4fecbf7e-15ce-407e-abb3-ea9279febdb7", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-069888996325895048192020", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-10-11", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "40243", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "7525", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-726411710200643729429321", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:61a2e795-3787-4bd2-82be-f3b2a77bbfeb", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-726411710200643729429321", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-03-25", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-13", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "363896", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "6846", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-778428442049642183418940", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9097c151-5813-4b55-b756-8aabc22824eb", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-778428442049642183418940", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-09-10", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-01", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "926923", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "7022", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-876479343707965086240559", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5cf0de64-f33c-4657-8529-4d161c907012", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-876479343707965086240559", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-11-16", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-14", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "623430", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "4536", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-724113540825337678971966", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:90b56fcc-07bc-4939-b0cc-c4a021760305", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-724113540825337678971966", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 85, + "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" : 24, + "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" : 23, + "materialClass" : "0.7", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 109.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 29, + "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" : 9, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 250.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 65, + "materialClass" : "5.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 7.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 22, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.12 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "childItems" : [ { + "catenaXId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003CSGV", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003CSGV", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B2OM", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B5MJ", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "XH-93", + "key" : "manufacturerPartId" + }, { + "value" : "OMALJMMEXIGNTJZQM", + "key" : "partInstanceId" + }, { + "value" : "OMALJMMEXIGNTJZQM", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2016-03-06T12:29:16.000Z", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "partTypeInformation" : { + "manufacturerPartId" : "XH-93", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Vehicle Fully Electric" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Mehrzweckfahrzeug", + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "engine" : { + "size" : 2998, + "power" : 143 + }, + "emptyWeight" : 1.73, + "fuel" : "Elektro", + "vehicleModel" : "Vehicle Fully Electric", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "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" + }, { + "code" : "C247R", + "description" : "trailer hitch", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2023-10-09", + "mileageDistance" : 120000 + } ] + } ] + }, { + "catenaXId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "885363", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "3294", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-131732937300126776815176", + "key" : "partInstanceId" + }, { + "value" : "Company 10", + "key" : "company" + }, { + "value" : "Brand 10", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", + "partTypeInformation" : { + "ownerPartId" : "73849201-61", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Catalysator", + "partClassification" : [ { + "value" : "Catalysator", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Catalysator" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "childItems" : [ { + "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000000BJTL", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "bpnl" : "BPNL00000003CSGV", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "669818", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "3527", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-797084545053066023664316", + "key" : "partInstanceId" + }, { + "value" : "Company 3", + "key" : "company" + }, { + "value" : "Brand 3", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "manufacturerId" : "BPNL00000003CSGV", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:64b5d052-0bbf-42d3-81a9-bf7e0e8d76b7", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "partTypeInformation" : { + "ownerPartId" : "22782277-50", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Door front-left", + "partClassification" : [ { + "value" : "Door front-left", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "nameAtOwner" : "Door front-left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "customers" : [ { + "businessPartner" : "BPNL00000003CSGV", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { + "localIdentifiers" : [ { + "value" : "76426224RGI", + "key" : "jisNumber" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000000BJTL", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-3434-A", + "customerPartId" : "PRT-12345", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "side element A" + } + } ], + "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "bpnl" : "BPNL00000000BJTL", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "171827", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "1908", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-529712629956906801236711", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "manufacturerId" : "BPNL00000000BJTL", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "partTypeInformation" : { + "ownerPartId" : "95657762-59", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Door Key", + "partClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000000BJTL:PartFamily" + } ], + "nameAtOwner" : "Door Key" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "customers" : [ { + "businessPartner" : "BPNL00000000BJTL", + "parentItems" : [ { + "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "childItems" : [ { + "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000000BJTL", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "bpnl" : "BPNL00000003CSGV", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "746375", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "3597", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-864754207488573774479092", + "key" : "partInstanceId" + }, { + "value" : "Company 4", + "key" : "company" + }, { + "value" : "Brand 4", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "manufacturerId" : "BPNL00000003CSGV", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:17a27633-730c-4aba-a8f9-ebfaaa3ca92a", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "partTypeInformation" : { + "ownerPartId" : "33740332-54", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Door front-right", + "partClassification" : [ { + "value" : "Door front-right", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "nameAtOwner" : "Door front-right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "customers" : [ { + "businessPartner" : "BPNL00000003CSGV", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { + "localIdentifiers" : [ { + "value" : "26807698BLW", + "key" : "jisNumber" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000000BJTL", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-3434-A", + "customerPartId" : "PRT-12345", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "side element A" + } + } ], + "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "bpnl" : "BPNL00000000BJTL", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "928025", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "8284", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-827581289882481230478999", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "manufacturerId" : "BPNL00000000BJTL", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "partTypeInformation" : { + "ownerPartId" : "95657762-59", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Door Key", + "partClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000000BJTL:PartFamily" + } ], + "nameAtOwner" : "Door Key" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "customers" : [ { + "businessPartner" : "BPNL00000000BJTL", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "519156", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "4527", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-406065790934879225608594", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", + "partTypeInformation" : { + "ownerPartId" : "15635759-16", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Door rear-left", + "partClassification" : [ { + "value" : "Door rear-left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Door rear-left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "39570", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 9 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9104", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-796167989573498912686635", + "key" : "partInstanceId" + }, { + "value" : "Company 5", + "key" : "company" + }, { + "value" : "Brand 5", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", + "partTypeInformation" : { + "ownerPartId" : "28673126-98", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Door rear-right", + "partClassification" : [ { + "value" : "Door rear-right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Door rear-right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "273750", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "5752", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-388537891916977013611943", + "key" : "partInstanceId" + }, { + "value" : "Company 6", + "key" : "company" + }, { + "value" : "Brand 6", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", + "partTypeInformation" : { + "ownerPartId" : "94421589-82", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Engine hood", + "partClassification" : [ { + "value" : "Engine hood", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Engine hood" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "42825", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "1379", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-857004458075736523524597", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", + "partTypeInformation" : { + "ownerPartId" : "85023955-75", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Tailgate", + "partClassification" : [ { + "value" : "Tailgate", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Tailgate" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "657696", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "6767", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-957399938211976692050930", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", + "partTypeInformation" : { + "ownerPartId" : "13769860-47", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Fender right", + "partClassification" : [ { + "value" : "Fender right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Fender right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "434372", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "9366", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-827857791188817306605242", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", + "partTypeInformation" : { + "ownerPartId" : "36643162-35", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Fender right", + "partClassification" : [ { + "value" : "Fender right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Fender right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "973698", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "7475", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-183355004442600440398895", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", + "partTypeInformation" : { + "ownerPartId" : "54165444-59", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Bumper front", + "partClassification" : [ { + "value" : "Bumper front", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Bumper front" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "736137", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "1274", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-139283692052251878287186", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", + "partTypeInformation" : { + "ownerPartId" : "22768257-25", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Bumper rear", + "partClassification" : [ { + "value" : "Bumper rear", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Bumper rear" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "527263", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "3530", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-953346655646650556865701", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", + "partTypeInformation" : { + "ownerPartId" : "65529521-37", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Exterior mirror left", + "partClassification" : [ { + "value" : "Exterior mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Exterior mirror left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "343957", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "6339", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-844308332835266576477207", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", + "partTypeInformation" : { + "ownerPartId" : "58471477-24", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Exterior mirror right", + "partClassification" : [ { + "value" : "Exterior mirror right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Exterior mirror right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "574423", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "2476", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-255262622365556582484075", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", + "partTypeInformation" : { + "ownerPartId" : "09002013-68", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Tailer coupling", + "partClassification" : [ { + "value" : "Tailer coupling", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Tailer coupling" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "690660", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "3813", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-214622233852735436570638", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", + "partTypeInformation" : { + "ownerPartId" : "43501996-98", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Dashboard", + "partClassification" : [ { + "value" : "Dashboard", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Dashboard" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "349639", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "4929", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-842938359590063280117347", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", + "partTypeInformation" : { + "ownerPartId" : "77795937-13", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Steering wheel", + "partClassification" : [ { + "value" : "Steering wheel", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Steering wheel" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "473361", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "9106", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-644622011883694931091746", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", + "partTypeInformation" : { + "ownerPartId" : "20125432-59", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Indicator left", + "partClassification" : [ { + "value" : "Indicator left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Indicator left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "947011", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 24 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "4435", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-039873956461761228319899", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", + "partTypeInformation" : { + "ownerPartId" : "19073706-76", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Indicator right", + "partClassification" : [ { + "value" : "Indicator right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Indicator right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "884392", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "8046", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-465941145566936814653478", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", + "partTypeInformation" : { + "ownerPartId" : "45415162-57", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Led headlight", + "partClassification" : [ { + "value" : "Led headlight", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Led headlight" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "998607", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 23 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "8657", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-839773269783048448130319", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", + "partTypeInformation" : { + "ownerPartId" : "78141846-87", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Starter motor", + "partClassification" : [ { + "value" : "Starter motor", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Starter motor" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "893422", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "3955", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-420904072316887872619111", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", + "partTypeInformation" : { + "ownerPartId" : "81324139-23", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Alternator", + "partClassification" : [ { + "value" : "Alternator", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Alternator" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "675466", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "8025", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-424790817498696449441638", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", + "partTypeInformation" : { + "ownerPartId" : "57929013-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Air conditioning compressor", + "partClassification" : [ { + "value" : "Air conditioning compressor", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Air conditioning compressor" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "286636", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "7871", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-875900226307888871498847", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", + "partTypeInformation" : { + "ownerPartId" : "61184040-23", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Taillight rear", + "partClassification" : [ { + "value" : "Taillight rear", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Taillight rear" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "424622", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "1932", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-322885601135436788460719", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", + "partTypeInformation" : { + "ownerPartId" : "78744126-74", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Taillight front", + "partClassification" : [ { + "value" : "Taillight front", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Taillight front" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "980587", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "1137", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-095583662686007569223747", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", + "partTypeInformation" : { + "ownerPartId" : "12093297-03", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Axle part front", + "partClassification" : [ { + "value" : "Axle part front", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Axle part front" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "396639", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "5176", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-360068828389685342134227", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", + "partTypeInformation" : { + "ownerPartId" : "88111709-49", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Axle part rear", + "partClassification" : [ { + "value" : "Axle part rear", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Axle part rear" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "723657", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "1030", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-635693250173819121828510", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", + "partTypeInformation" : { + "ownerPartId" : "00871379-44", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Chassis", + "partClassification" : [ { + "value" : "Chassis", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Chassis" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "375771", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "6470", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-083480373139670709044407", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", + "partTypeInformation" : { + "ownerPartId" : "08901347-87", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Rims", + "partClassification" : [ { + "value" : "Rims", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Rims" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "753648", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 27 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2434", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-665173854732642413380781", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", + "partTypeInformation" : { + "ownerPartId" : "45863316-60", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Tires", + "partClassification" : [ { + "value" : "Tires", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Tires" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 32, + "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" : 40, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "childItems" : [ { + "catenaXId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B3NX", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "bpnl" : "BPNL00000003B2OM", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "785054", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "4763", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "42555H1-52", + "key" : "manufacturerPartId" + }, { + "value" : "NO-297862023737110452281832", + "key" : "partInstanceId" + }, { + "value" : "Company 2", + "key" : "company" + }, { + "value" : "Brand 2", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B2OM", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "partTypeInformation" : { + "manufacturerPartId" : "42555H1-52", + "customerPartId" : "42555H1-52", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "manufacturerId" : "BPNL00000003B2OM", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4704d750-a40f-4331-a8c5-174d71599841", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8f716038-19c3-4db9-9cea-040c6ba48f0f", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1d4ee559-402d-4274-99d5-4ad3c13b72d2", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "partTypeInformation" : { + "ownerPartId" : "42555H1-52", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Transmission", + "partClassification" : [ { + "value" : "Transmission", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "nameAtOwner" : "Transmission" + } + } ], + "urn:samm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "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:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-297862023737110452281832", + "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:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "customers" : [ { + "businessPartner" : "BPNL00000003B2OM", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "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" : 44, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ], + "catenaXId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "909034", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1177", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "partTypeInformation" : { + "manufacturerPartId" : "WZ-57", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "childItems" : [ { + "catenaXId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "bpnl" : "BPNL00000003B3NX", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "675120", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "4961", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "20713L6-02", + "key" : "manufacturerPartId" + }, { + "value" : "NO-599077453926031454448409", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "partTypeInformation" : { + "manufacturerPartId" : "20713L6-02", + "customerPartId" : "20713L6-02", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "manufacturerId" : "BPNL00000003B3NX", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d85fce44-58aa-4a49-967b-534ffa3e0ab8", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "partTypeInformation" : { + "ownerPartId" : "20713L6-02", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Sensor", + "partClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "nameAtOwner" : "Sensor" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "customers" : [ { + "businessPartner" : "BPNL00000003B3NX", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 32, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 66, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + } ] + } ], + "catenaXId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "576400", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "4682", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "partTypeInformation" : { + "manufacturerPartId" : "WN-36", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ], + "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "330135", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "4981", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "manufacturerId" : "BPNL00000003AXS3", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "partTypeInformation" : { + "manufacturerPartId" : "IH-58", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "customers" : [ { + "businessPartner" : "BPNL00000003AXS3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 4, + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "childItems" : [ { + "catenaXId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B3NX", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "bpnl" : "BPNL00000003B5MJ", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "614008", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "7710", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "93096K5-94", + "key" : "manufacturerPartId" + }, { + "value" : "NO-059518126168909770052269", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B5MJ", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "partTypeInformation" : { + "manufacturerPartId" : "93096K5-94", + "customerPartId" : "93096K5-94", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "manufacturerId" : "BPNL00000003B5MJ", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:aa89581e-15e5-4672-ba57-ce2902df6b4c", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2133329a-1931-4197-927a-07d2672252e5", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:83990e87-ed0d-4ebe-9bf8-33523d57bad6", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "partTypeInformation" : { + "ownerPartId" : "93096K5-94", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ECU", + "partClassification" : [ { + "value" : "ECU", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "nameAtOwner" : "ECU" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "customers" : [ { + "businessPartner" : "BPNL00000003B5MJ", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 48, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 68, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + } ] + } ], + "catenaXId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "767035", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "9969", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "manufacturerId" : "BPNL00000003AXS3", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "partTypeInformation" : { + "manufacturerPartId" : "IJ-97", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "customers" : [ { + "businessPartner" : "BPNL00000003AXS3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "childItems" : [ { + "catenaXId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "bpnl" : "BPNL00000003B3NX", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "36903", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "5182", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "21461W2-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-639962420336668821218916", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "partTypeInformation" : { + "manufacturerPartId" : "21461W2-49", + "customerPartId" : "21461W2-49", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "manufacturerId" : "BPNL00000003B3NX", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:cae41ef3-ec33-4ae6-bbf9-a8a7d81dc504", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "partTypeInformation" : { + "ownerPartId" : "21461W2-49", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Sensor", + "partClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "nameAtOwner" : "Sensor" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "customers" : [ { + "businessPartner" : "BPNL00000003B3NX", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm: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" : 87, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ], + "catenaXId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "484665", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "6810", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "partTypeInformation" : { + "manufacturerPartId" : "PR-60", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm: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" : 61, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ], + "catenaXId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "156108", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7857", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "56931M6-58", + "key" : "manufacturerPartId" + }, { + "value" : "NO-184597319146186417552311", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "partTypeInformation" : { + "manufacturerPartId" : "56931M6-58", + "customerPartId" : "56931M6-58", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "partTypeInformation" : { + "ownerPartId" : "56931M6-58", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Engineering Plastics", + "partClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "Engineering Plastics" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-524017634554899551071911", + "key" : "partInstanceId" + }, { + "value" : "Company 1", + "key" : "company" + }, { + "value" : "Brand 1", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + }, + "itemVersion" : "03" + } ], + "urn:samm: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" : false, + "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" : "38049661-08", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "https://123", + "oeNumber" : "NO-524017634554899551071911", + "category" : { + "subCategory" : [ "Battery" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "Company 1", + "brand" : "Brand 1", + "productDescription" : "Battery" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5bbdd5c0-382a-4124-9bbc-a5cd70d09215", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:555ec19c-b017-4061-b2eb-5f5f92d9ca5a", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:11be7ff3-50a2-4695-8e21-27185b6ad879", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:bdd3a663-f213-4ae8-b627-dc9bbb5d970a", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f5708bd6-b73b-490d-ad27-cc5bd7e90a59", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5dae8822-faed-4f36-8ebf-82eff0d50d36", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "38049661-08", + "manufacturerPartId" : "38049661-08" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a Battery", + "class" : { + "code" : "27-05-02-91", + "definition" : "Traction battery, starter battery (parts)" + }, + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-08-05", + "version" : 2.5, + "status" : "Approved" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 1074.0808, + "width" : 1074, + "length" : 2410, + "weight" : 511, + "height" : 275 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 19 + } + }, + "commercial" : { + "placedOnMarket" : "2020-08-27", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-524017634554899551071911", + "key" : "PartInstanceID" + } ], + "gtin" : " 16830141", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "714927210" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Passport", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-02-12", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 0.8403 ] + }, + "id" : "FD7625" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Manganese" + } ], + "critical" : [ "Nickel" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 117 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AYRE", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 33, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 73, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 87, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "childItems" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "654735", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "8671", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "partTypeInformation" : { + "ownerPartId" : "38049661-08", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Battery", + "partClassification" : [ { + "value" : "Battery", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Battery" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-524017634554899551071911", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "pack" + } ], + "productType" : "pack" + } ], + "urn:samm: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:samm: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" : 50, + "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:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "childItems" : [ { + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "273206", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "1736", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-437222166318482402504580", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3999547f-2b94-4ab5-b447-cdec7625c2ca", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:37f760aa-779e-40fe-b240-91ae810af92f", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b42557ad-3bb3-44db-b36d-e1f63798edfc", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c2710673-d671-42d6-8d0e-c935c011fb64", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e3db81f2-6ba7-4363-a4b9-872ba74e29e8", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:206d3b69-3eb2-4659-830b-05379b8a124a", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:cde33f9a-77b0-4ed7-b8ec-4fe8206eaf5c", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3cb725ba-086b-4c7e-a9fb-2fa3aabd6a93", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a07e4be6-1cf7-4d67-b944-49b6657053f9", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fd8e93c6-6843-4bee-8336-31a1058f7113", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1f027e83-d4df-4b07-b886-d21cbf8efa89", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-437222166318482402504580", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2024-02-29", + "version" : 1, + "status" : "Draft" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.642, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 19 + } + }, + "commercial" : { + "placedOnMarket" : "2023-09-13", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-437222166318482402504580", + "key" : "PartInstanceID" + } ], + "gtin" : " 66301870", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "829467178" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Passport", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-03-05", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 1.0243 ] + }, + "id" : "WD4510" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Insulator" + } ], + "critical" : [ "Manganese" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 118 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B3NX", + "manufacturer" : { + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-09-06", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "161005", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "5583", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-695649331867836258032978", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e548a9c0-ee1c-4c82-917a-2ea906651ea8", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-695649331867836258032978", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-05-01", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "564849", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "7058", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-888132613663078235630423", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f5c10410-07d6-48de-8bc1-1cf602e5b355", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-888132613663078235630423", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-01-14", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-05", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "656638", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "7771", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-969570155601910380830420", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8bfd8b50-f2eb-4a44-b714-dc5428d27848", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-969570155601910380830420", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-04-17", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "285930", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "6866", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-565760403114294608440766", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c6397c41-3dc2-4daf-b3e4-58a709b0d2c4", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-565760403114294608440766", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-09-18", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "339013", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "8019", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-549662913585943094603411", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:595e3365-624b-4ea1-9fca-7503bc7022d3", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-549662913585943094603411", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-10-05", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "809420", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "1978", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-221883872424118254324385", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c680e92a-0fb5-49ca-9f84-3917493662e6", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-221883872424118254324385", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-09-07", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-09", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "586045", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "2179", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-361394052163820362674142", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f28b5152-b3d9-4510-90fe-080a4ce5ceb7", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-361394052163820362674142", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-08-29", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "45934", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "3486", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-405115524948461037888275", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9ec2fa8e-68ab-4d8a-9861-d6ae75494c06", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-405115524948461037888275", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-08-27", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "690236", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9327", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-687245070682008690060213", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f36d1321-7174-413b-a8b4-e7d77755c39e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-687245070682008690060213", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-02-20", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "281167", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "6658", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-153305463722086790275389", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:af2d2529-42b6-41d5-acaa-84b57eb40235", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-153305463722086790275389", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 67, + "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" : 52, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "childItems" : [ { + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "50016", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2244", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-973954279957624820638186", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1678866b-7393-4244-8b51-de9a08dc2f80", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9d75d3ce-c3ec-4244-87f0-019b0c06a5ce", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8103a66c-3e8e-4df3-b7e9-fd1ee82f538b", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:38967ae6-bdaa-4e04-ade3-a6cd43cc650f", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:69d13cd3-847b-4c1b-be63-6c58e96f201c", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0b2aeb67-2cf1-4420-9274-79c04c22fdf0", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7611fea4-7121-4d4c-a6df-ea1a42551d72", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:cb034949-ec53-47ea-ad08-52150fedbdf0", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:02f01928-7865-4497-9c0e-0dda7c851f2d", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ce248ff3-dd7c-49ee-ae10-a20474aa3758", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:08db6c8d-c7c7-435a-8bac-229ad5ace3a3", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-973954279957624820638186", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2021-04-25", + "version" : 1.5, + "status" : "Expired" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6918, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 16 + } + }, + "commercial" : { + "placedOnMarket" : "2021-03-29", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-973954279957624820638186", + "key" : "PartInstanceID" + } ], + "gtin" : " 24293609", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "532048433" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2022-10-06", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 7.1058 ] + }, + "id" : "WX3550" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Copper" + } ], + "critical" : [ "Nickel" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 118 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AYRE", + "manufacturer" : { + "facilityId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-02-22", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "951213", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "9847", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-992195203154788914340114", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ee06ec61-d892-4f5e-9dbe-5c420fc45df5", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-992195203154788914340114", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-07-24", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "310623", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "5436", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-347677125419085124787924", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ab0b6060-309c-47a6-9fa1-d012c1a1aace", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-347677125419085124787924", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-06-12", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "890064", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "1846", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-758372629663542271212580", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:41d8fcb1-775d-4d41-b181-2bb7070835d2", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-758372629663542271212580", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-07-18", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "616887", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "6569", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-235749068781688754853632", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:66cb1026-6c8a-42fa-998c-b5d777f2dd98", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-235749068781688754853632", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-08-12", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-04", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "880788", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "8878", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-637522255197238915757394", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:47f03566-7c54-4ace-968d-8b3580ed8a41", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-637522255197238915757394", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-02-24", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-15", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "459310", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "9876", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-013538992992080944605829", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:26d4a0c1-dfb8-4c72-a987-f1f189af44bd", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-013538992992080944605829", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-06-10", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-25", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "800341", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "6894", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-642680594659421069431919", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a9d5cb5b-3789-4848-a789-4c2867767a16", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-642680594659421069431919", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-08-18", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "550091", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "6258", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-827788544499292219780017", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:53d01b82-7d7d-40db-b4fb-787bd6d7696a", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-827788544499292219780017", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-02-01", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "360508", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "1156", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-051211648132031036055007", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9f463c75-5ea6-4f5b-89c8-1d3783be1a54", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-051211648132031036055007", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-11-19", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "501372", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "8190", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-274639447767522987739067", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:429ccd5f-2019-41d4-ae7b-20aacb54238a", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-274639447767522987739067", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 53, + "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" : 59, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "childItems" : [ { + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "446905", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "1337", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-866219940925227686334114", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3a22d8ba-a7be-4a60-bb38-f04cb3ab487e", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:bc792b88-9b63-4a83-b291-e3753ce78079", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:766ac4da-face-4c72-ad81-0ff2d8454d60", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8b5c1cc1-8da2-4043-8454-a4fd263639a7", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:17e49d1a-b12d-465f-988f-f60722b5de24", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:38bf8a9a-c7a0-474b-a7de-5e9e6217997d", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:80dacd9f-01ae-45e2-8fff-faf462043825", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:487fd997-6f52-4de3-8256-56a5e3e8d572", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d688d80f-388f-430a-b99a-afb8e785c2d9", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7d159ee5-594a-4922-a4c6-16e178bfaeaa", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:35adc373-22a3-4322-af7f-88f98d763e20", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-866219940925227686334114", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-07-27", + "version" : 2.4, + "status" : "Expired" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6521, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 19 + } + }, + "commercial" : { + "placedOnMarket" : "2023-03-28", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-866219940925227686334114", + "key" : "PartInstanceID" + } ], + "gtin" : " 19599333", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "857042567" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-01-03", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 1.8125 ] + }, + "id" : "WS5730" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Insulator" + } ], + "critical" : [ "Manganese" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 106 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B2OM", + "manufacturer" : { + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-11-17", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "593779", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "6516", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-372384834342259220312175", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e90a86a6-b620-446e-8d31-3ba294e2e6a2", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-372384834342259220312175", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-11-15", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "810678", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "1229", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-088469934382593208474125", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4197d8ec-b394-47b6-a0f5-cc6cf0f42944", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-088469934382593208474125", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-10-25", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-23", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "670796", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "2316", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-767840854500043743649525", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:00005e49-d0e9-44bc-9cf5-e8da99fba448", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-767840854500043743649525", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-09-14", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "945397", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "8121", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-079329468576037813719169", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f90e61b6-edf5-4385-b9d0-e6713103ccc9", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-079329468576037813719169", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-28", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-01", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "814586", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "4609", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-860984087418700593268333", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0b9d3361-1e9f-47ec-be20-1713fa59ec31", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-860984087418700593268333", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-07-20", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "47731", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 25 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "9755", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-588045754284188865698792", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f09ff04f-923e-446a-bee2-43d9e1e17e4a", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-588045754284188865698792", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-08-21", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "459658", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 6 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "2536", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-473896456356548303789394", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:800e224f-deb1-49ab-9b96-b839f98dcfc6", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-473896456356548303789394", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-05-04", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-14", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "524027", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "3450", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-352472143033398477945379", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3f12b395-5e31-415e-a84f-2f0a9af0d78c", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-352472143033398477945379", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-05-08", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-15", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "320239", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "4640", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-536814342114624374891194", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:aef1b00c-7fa1-415d-b7bc-553eedd82fb6", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-536814342114624374891194", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-02-12", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "992855", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "4053", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-535040345656499211042489", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7f8ce7da-bd67-4909-862c-17f574d7f2fc", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-535040345656499211042489", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 6, + "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" : 17, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "childItems" : [ { + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "461716", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2220", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-770181704086780547564889", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0f205c69-39ca-43af-b148-d51cd1e45ed6", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a6f9d394-aee1-4d52-9fee-de07a68edd6f", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e57b2b4c-0859-4bb1-a1e1-69565716e8f4", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:311b83f6-d424-4de7-ae16-8bb8d307e71b", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1d868cd3-c65f-403c-af92-e95e90a61b4b", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a61387e4-1f80-4757-b73a-66e5a8186725", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4b8b2fcb-52f1-4639-98e0-16e8169e38f0", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b5fd97e1-0d5c-4b56-adea-2145c7ffd167", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ad2d63d7-6a30-461b-8bbe-a2cd06448f81", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b99634df-2aa0-4fce-866e-e7222add942d", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a7ef4402-9df8-4c4d-b9cd-790bcdb482b9", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-770181704086780547564889", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-06-19", + "version" : 2, + "status" : "Approved" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6676, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 16 + } + }, + "commercial" : { + "placedOnMarket" : "2023-02-05", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-770181704086780547564889", + "key" : "PartInstanceID" + } ], + "gtin" : " 86400073", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "421133551" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Passport", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2023-08-30", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 6.1438 ] + }, + "id" : "GR3626" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Sealant" + } ], + "critical" : [ "Manganese" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 116 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AXS3", + "manufacturer" : { + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-02-26", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "46035", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 24 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "5621", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-576353883553719482494985", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:20fb0219-2f09-4ace-8ac8-6190b4eaf8e8", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-576353883553719482494985", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-06-22", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-14", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "939508", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1305", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-314815112889745255848637", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:418dae1c-9e55-4334-92e4-37696a809049", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-314815112889745255848637", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-25", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "503315", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "3063", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-053115580491418530649598", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:72bf08bc-b2d5-4bc5-9288-78c02792b85e", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-053115580491418530649598", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-01-29", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-27", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "91565", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "1441", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-254757851873936956103930", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0eaef2be-8da2-45b9-8760-803608eaf870", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-254757851873936956103930", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-01-20", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-01", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "850720", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2230", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-316542918139942968601736", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:287ee7a7-9af3-4416-afbd-27b90f68d150", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-316542918139942968601736", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2024-01-22", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "180324", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "4767", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-145334258560133215613931", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6b356ed3-6029-4a66-9cc3-020505e70d73", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-145334258560133215613931", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-11", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-14", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "199207", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "3283", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-190658911471063410526864", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9e79a5b3-9dca-4d40-a1b3-5843bbb318b2", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-190658911471063410526864", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-07-30", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "523247", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "4993", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-063455783697007035630988", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b4d1e3bf-9c07-47b3-9393-544c11c653df", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-063455783697007035630988", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-05-14", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-02", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "530781", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2939", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-359826011078845138239347", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:831f684d-6617-4538-b73a-1db77bc3c92e", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-359826011078845138239347", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-04-07", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "761973", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "7989", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-242290872237139567707577", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:eaedbf9a-fed7-4a2f-bd24-d4dd0d5641a5", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-242290872237139567707577", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 6, + "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" : 61, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "childItems" : [ { + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "926754", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1822", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-961586982769257604561524", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:674b71f2-c1e4-40dc-8e8f-24a851e456fd", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4728cc86-deb0-4f50-aab8-a28b7dbd87e2", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6960ba04-3f36-46dc-9692-9f2735d14536", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:18778815-6f53-4901-ae8b-058b3814701e", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:48a99965-934b-4b52-a8a3-56880b18a006", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:83f815b7-a78b-40c8-adcc-c3ff6f2341e2", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:64aa51bc-f88b-403a-98a7-1a6a3540d6ec", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2feec351-a5ba-40ce-83fe-ff8fdad9fad1", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5b32e660-90aa-4d32-91de-141c3e532e96", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a71aea01-86f3-4cc3-a269-9d2d66416c7b", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:10d2d3d4-fdc4-4b9e-b76a-fd5a13e1ea00", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-961586982769257604561524", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2021-09-25", + "version" : 2.1, + "status" : "Approved" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6393, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 17 + } + }, + "commercial" : { + "placedOnMarket" : "2020-07-08", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-961586982769257604561524", + "key" : "PartInstanceID" + } ], + "gtin" : " 60297435", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "383428586" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-02-10", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 8.556 ] + }, + "id" : "UZ5630" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Manganese" + } ], + "critical" : [ "Nickel" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 101 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AXS3", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-07-25", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "985570", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "7618", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-888312493038162373043992", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:cbc13776-f61f-4fd1-91bb-1efb638dcdc9", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-888312493038162373043992", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-01-01", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "541645", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "1540", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-114670847427380311843029", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ea5c00d9-d225-4ef6-8f04-894dd714f606", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-114670847427380311843029", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-11-01", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "105441", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "8071", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-042328502545500094738731", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c75a3e14-3de1-4175-aa60-36ad003ae549", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-042328502545500094738731", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-10-19", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "43845", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "1294", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-077606097660377021193127", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:5ae146b2-2596-4f20-b4c4-95179b7fef8c", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-077606097660377021193127", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-28", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "412406", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "5611", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-808477872124908084381017", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b3f85dd0-6289-4a0f-b412-e2df2bb4c1d2", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-808477872124908084381017", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-12-17", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-23", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "906104", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "5705", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-656125482639453250677361", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b7139c96-2bbd-4793-a8ee-968e35ea078f", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-656125482639453250677361", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-08-01", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-02", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "992623", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "9700", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-153177385520734383337939", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:89592ff2-5288-4106-85bc-eab16481d484", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-153177385520734383337939", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-11-15", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "824750", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "5909", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-804050053485016238437303", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:67db5dbe-af19-427e-9147-5b4fab771b17", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-804050053485016238437303", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-01-24", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "605859", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "6122", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-960618439422934171911338", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2da60b18-4bdd-4734-ba77-07ae5ca4c45f", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-960618439422934171911338", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-07-02", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-14", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "907412", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "3571", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-525934761064530276316729", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7f3e32b8-985b-4e87-97b5-e531485457f4", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-525934761064530276316729", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 33, + "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" : 62, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "childItems" : [ { + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "110423", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7708", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-793352892420425441608700", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:914b8c53-dabe-4312-9a36-a07e0581ad2a", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:86b55ae5-8561-42bb-8977-6c3a1028901f", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:458c4d07-09fc-4af7-b6b0-b862bfedb6eb", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:55ba3ac6-fde0-439a-be81-0e2cdad631cc", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8e106643-a959-4467-86df-56908888f54d", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8fee7515-113d-49c8-909c-092acb903933", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a1801c9e-4163-478c-9559-41cfec7061a6", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9250e1a9-3c30-4ee7-916b-0c92bc466de4", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9ad8a564-90e4-4f66-b0d7-8bab3c9790ca", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b4d58852-494e-4011-ab36-be8d1e428636", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7525d075-2592-4446-8f2c-fcd88c4cec10", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-793352892420425441608700", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2024-02-26", + "version" : 1.5, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6291, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 16 + } + }, + "commercial" : { + "placedOnMarket" : "2024-02-22", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-793352892420425441608700", + "key" : "PartInstanceID" + } ], + "gtin" : " 55998351", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "186201518" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-03-11", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 7.4429 ] + }, + "id" : "KH1887" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Steel" + } ], + "critical" : [ "Nickel" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 115 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B3NX", + "manufacturer" : { + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-08-30", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "528527", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "5292", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-216391419426668087358748", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:04ef9794-5054-4671-adef-340ce03f7a7d", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-216391419426668087358748", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-09-11", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-13", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "533136", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "1275", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-070573056146020140114258", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a29b9359-bf3f-4ee6-82a9-7fda6c96043f", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-070573056146020140114258", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-09-25", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "480742", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "4908", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-998470145454027100913530", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:3aa721af-7321-4c44-b9fe-02b29bdaed36", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-998470145454027100913530", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-09-05", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "729044", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "2690", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-553870064722951756380389", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:276f5550-a09f-41e2-bf05-3c69bc1175be", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-553870064722951756380389", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-10-01", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-23", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "462035", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "8159", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-770755434441842670470708", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:32356d8d-4ce9-4b15-af23-c816b7066f76", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-770755434441842670470708", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-04-03", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "708923", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "8210", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-795780647921641316860975", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0267052f-b1a9-4ca4-90d2-40360bf31a49", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-795780647921641316860975", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-06-13", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "706727", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "5671", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-651190678479839520199228", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:419941ea-191a-4b77-901e-f438a859ecd6", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-651190678479839520199228", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-12-27", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-14", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "349925", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7656", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-428045788323091672467060", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4eff8d49-ad1b-420c-8162-9eb9fc370238", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-428045788323091672467060", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-07-14", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-05", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "47812", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7304", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-759557059617093989385682", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:85ac2def-32fc-4d72-9a32-ca53570392aa", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-759557059617093989385682", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-09-17", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-09", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "396934", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "1290", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-066639614700637985131228", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:676db28d-c7e3-4ad1-8ebb-d94c8fd8b770", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-066639614700637985131228", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 40, + "materialClass" : "1.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 327.6 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 87, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 163.8 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 32, + "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" : 81, + "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" : 74, + "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" : 79, + "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" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "childItems" : [ { + "catenaXId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003CSGV", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003CSGV", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B2OM", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B5MJ", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "GG-88", + "key" : "manufacturerPartId" + }, { + "value" : "OMAUTSWWLUZIALLQA", + "key" : "partInstanceId" + }, { + "value" : "OMAUTSWWLUZIALLQA", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2013-05-30T05:25:44.000Z", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "partTypeInformation" : { + "manufacturerPartId" : "GG-88", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Vehicle Fully Electric" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { + "bodyVariant" : "Van", + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "engine" : { + "size" : 2998, + "power" : 143 + }, + "emptyWeight" : 1.73, + "fuel" : "Elektro", + "vehicleModel" : "Vehicle Fully Electric", + "productionDateGMT" : "2010-01-01", + "equipmentVariants" : [ { + "code" : "S2AVB", + "description" : "adaptive drive", + "group" : "special equipment" + }, { + "code" : "S218A", + "description" : "sport automatic transmission", + "group" : "special equipment" + }, { + "code" : "S378B", + "description" : "integrated child seats", + "group" : "special equipment" + }, { + "code" : "B298B", + "description" : "keyless entry", + "group" : "special equipment" + } ], + "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", + "mileage" : [ { + "mileagePhase" : "as maintained by workshop", + "mileageTimestamp" : "2014-03-24", + "mileageDistance" : 120000 + } ] + } ] + }, { + "catenaXId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "142050", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "7983", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-897103492718576075219698", + "key" : "partInstanceId" + }, { + "value" : "Company 10", + "key" : "company" + }, { + "value" : "Brand 10", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", + "partTypeInformation" : { + "ownerPartId" : "73849201-61", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Catalysator", + "partClassification" : [ { + "value" : "Catalysator", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Catalysator" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "childItems" : [ { + "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000000BJTL", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "bpnl" : "BPNL00000003CSGV", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "335362", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "2823", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-211534666015366566012745", + "key" : "partInstanceId" + }, { + "value" : "Company 3", + "key" : "company" + }, { + "value" : "Brand 3", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "manufacturerId" : "BPNL00000003CSGV", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:26e85232-2b60-47b6-985e-d83772378e0b", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "partTypeInformation" : { + "ownerPartId" : "22782277-50", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Door front-left", + "partClassification" : [ { + "value" : "Door front-left", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "nameAtOwner" : "Door front-left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "customers" : [ { + "businessPartner" : "BPNL00000003CSGV", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { + "localIdentifiers" : [ { + "value" : "14388717EVX", + "key" : "jisNumber" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000000BJTL", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-3434-A", + "customerPartId" : "PRT-12345", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "side element A" + } + } ], + "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "bpnl" : "BPNL00000000BJTL", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "522039", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "8589", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-810295075415539190881160", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "manufacturerId" : "BPNL00000000BJTL", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "partTypeInformation" : { + "ownerPartId" : "95657762-59", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Door Key", + "partClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000000BJTL:PartFamily" + } ], + "nameAtOwner" : "Door Key" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "customers" : [ { + "businessPartner" : "BPNL00000000BJTL", + "parentItems" : [ { + "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "childItems" : [ { + "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000000BJTL", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "bpnl" : "BPNL00000003CSGV", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "252563", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "8858", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-522606169119282135007012", + "key" : "partInstanceId" + }, { + "value" : "Company 4", + "key" : "company" + }, { + "value" : "Brand 4", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "manufacturerId" : "BPNL00000003CSGV", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c8bb38b4-1ad6-4176-9766-24222d715c9f", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "partTypeInformation" : { + "ownerPartId" : "33740332-54", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Door front-right", + "partClassification" : [ { + "value" : "Door front-right", + "key" : "BPNL00000003CSGV:PartFamily" + } ], + "nameAtOwner" : "Door front-right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "customers" : [ { + "businessPartner" : "BPNL00000003CSGV", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { + "localIdentifiers" : [ { + "value" : "73869864QSZ", + "key" : "jisNumber" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000000BJTL", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-3434-A", + "customerPartId" : "PRT-12345", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "side element A" + } + } ], + "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "bpnl" : "BPNL00000000BJTL", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "929989", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 8 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "2393", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-526060008250250591571360", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "manufacturerId" : "BPNL00000000BJTL", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "partTypeInformation" : { + "ownerPartId" : "95657762-59", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Door Key", + "partClassification" : [ { + "value" : "Door Key", + "key" : "BPNL00000000BJTL:PartFamily" + } ], + "nameAtOwner" : "Door Key" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "customers" : [ { + "businessPartner" : "BPNL00000000BJTL", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "169179", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "1040", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-112437134579525713767718", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", + "partTypeInformation" : { + "ownerPartId" : "15635759-16", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Door rear-left", + "partClassification" : [ { + "value" : "Door rear-left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Door rear-left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "158072", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "6647", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-353669866416007480479809", + "key" : "partInstanceId" + }, { + "value" : "Company 5", + "key" : "company" + }, { + "value" : "Brand 5", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", + "partTypeInformation" : { + "ownerPartId" : "28673126-98", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Door rear-right", + "partClassification" : [ { + "value" : "Door rear-right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Door rear-right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "295231", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "3221", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-745506815228397423604793", + "key" : "partInstanceId" + }, { + "value" : "Company 6", + "key" : "company" + }, { + "value" : "Brand 6", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", + "partTypeInformation" : { + "ownerPartId" : "94421589-82", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Engine hood", + "partClassification" : [ { + "value" : "Engine hood", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Engine hood" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "780572", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 9 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "4945", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-111494423758526603085139", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", + "partTypeInformation" : { + "ownerPartId" : "85023955-75", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Tailgate", + "partClassification" : [ { + "value" : "Tailgate", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Tailgate" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "283160", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "5283", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-445614779824118555770555", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", + "partTypeInformation" : { + "ownerPartId" : "13769860-47", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Fender right", + "partClassification" : [ { + "value" : "Fender right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Fender right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "73515", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6978", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-379402067665339366723185", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", + "partTypeInformation" : { + "ownerPartId" : "36643162-35", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Fender right", + "partClassification" : [ { + "value" : "Fender right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Fender right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "880115", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "5404", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-881090076445243310184722", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", + "partTypeInformation" : { + "ownerPartId" : "54165444-59", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Bumper front", + "partClassification" : [ { + "value" : "Bumper front", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Bumper front" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "706395", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "3766", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-523618767337566841620574", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", + "partTypeInformation" : { + "ownerPartId" : "22768257-25", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Bumper rear", + "partClassification" : [ { + "value" : "Bumper rear", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Bumper rear" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "136173", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "4297", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-134972035386407420689973", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", + "partTypeInformation" : { + "ownerPartId" : "65529521-37", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Exterior mirror left", + "partClassification" : [ { + "value" : "Exterior mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Exterior mirror left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "964210", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "4812", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-267889602260734086865808", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", + "partTypeInformation" : { + "ownerPartId" : "58471477-24", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Exterior mirror right", + "partClassification" : [ { + "value" : "Exterior mirror right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Exterior mirror right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "326337", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "7271", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-202606871824681721163696", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", + "partTypeInformation" : { + "ownerPartId" : "09002013-68", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Tailer coupling", + "partClassification" : [ { + "value" : "Tailer coupling", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Tailer coupling" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "408093", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "1001", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-131978078535616439777638", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", + "partTypeInformation" : { + "ownerPartId" : "43501996-98", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Dashboard", + "partClassification" : [ { + "value" : "Dashboard", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Dashboard" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "223934", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "1268", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-669032114632615288919023", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", + "partTypeInformation" : { + "ownerPartId" : "77795937-13", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Steering wheel", + "partClassification" : [ { + "value" : "Steering wheel", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Steering wheel" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "838606", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "1139", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-285471949284935640933709", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", + "partTypeInformation" : { + "ownerPartId" : "20125432-59", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Indicator left", + "partClassification" : [ { + "value" : "Indicator left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Indicator left" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "699453", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "4108", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-330957184442058171647578", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", + "partTypeInformation" : { + "ownerPartId" : "19073706-76", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Indicator right", + "partClassification" : [ { + "value" : "Indicator right", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Indicator right" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "236482", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "5981", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-822796740548188148943670", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", + "partTypeInformation" : { + "ownerPartId" : "45415162-57", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Led headlight", + "partClassification" : [ { + "value" : "Led headlight", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Led headlight" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "131404", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "3300", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-771564318302097683905104", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", + "partTypeInformation" : { + "ownerPartId" : "78141846-87", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Starter motor", + "partClassification" : [ { + "value" : "Starter motor", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Starter motor" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "460640", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2681", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-239260272543321279088898", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", + "partTypeInformation" : { + "ownerPartId" : "81324139-23", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Alternator", + "partClassification" : [ { + "value" : "Alternator", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Alternator" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "125824", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "2923", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-306396512245970743345151", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", + "partTypeInformation" : { + "ownerPartId" : "57929013-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Air conditioning compressor", + "partClassification" : [ { + "value" : "Air conditioning compressor", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Air conditioning compressor" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "969328", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "4926", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-895054980590632690004187", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", + "partTypeInformation" : { + "ownerPartId" : "61184040-23", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Taillight rear", + "partClassification" : [ { + "value" : "Taillight rear", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Taillight rear" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "213237", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "8871", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-620547476734310789610821", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", + "partTypeInformation" : { + "ownerPartId" : "78744126-74", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Taillight front", + "partClassification" : [ { + "value" : "Taillight front", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Taillight front" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "348657", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "7617", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-600852313453046969357341", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", + "partTypeInformation" : { + "ownerPartId" : "12093297-03", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Axle part front", + "partClassification" : [ { + "value" : "Axle part front", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Axle part front" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "584409", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "3210", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-552693740323920547409688", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", + "partTypeInformation" : { + "ownerPartId" : "88111709-49", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Axle part rear", + "partClassification" : [ { + "value" : "Axle part rear", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Axle part rear" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "676051", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "5707", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-647814508944148501691202", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", + "partTypeInformation" : { + "ownerPartId" : "00871379-44", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Chassis", + "partClassification" : [ { + "value" : "Chassis", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Chassis" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "26618", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "8901", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-248823758665297496645777", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", + "partTypeInformation" : { + "ownerPartId" : "08901347-87", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Rims", + "partClassification" : [ { + "value" : "Rims", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Rims" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "911188", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "3536", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-648856597195950857904627", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", + "partTypeInformation" : { + "ownerPartId" : "45863316-60", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Tires", + "partClassification" : [ { + "value" : "Tires", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Tires" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 57, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 72.843 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 1, + "materialClass" : "9.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 6.9 + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 43, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "childItems" : [ { + "catenaXId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B3NX", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "bpnl" : "BPNL00000003B2OM", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "836732", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "8877", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "42555H1-52", + "key" : "manufacturerPartId" + }, { + "value" : "NO-969650964344996854382343", + "key" : "partInstanceId" + }, { + "value" : "Company 2", + "key" : "company" + }, { + "value" : "Brand 2", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B2OM", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "partTypeInformation" : { + "manufacturerPartId" : "42555H1-52", + "customerPartId" : "42555H1-52", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "manufacturerId" : "BPNL00000003B2OM", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9b4e5ec3-51bb-4ced-b0ab-b26c13b4bbf2", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:229a00f0-5b01-4e8b-9d7a-95ae3e94aace", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a9148af8-298a-40cf-8fb9-72e7f9d88edd", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "partTypeInformation" : { + "ownerPartId" : "42555H1-52", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Transmission", + "partClassification" : [ { + "value" : "Transmission", + "key" : "BPNL00000003B2OM:PartFamily" + } ], + "nameAtOwner" : "Transmission" + } + } ], + "urn:samm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { + "productSpecificParameters" : { + "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], + "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:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-969650964344996854382343", + "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:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "customers" : [ { + "businessPartner" : "BPNL00000003B2OM", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "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" : 69, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ], + "catenaXId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "417316", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "7728", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "partTypeInformation" : { + "manufacturerPartId" : "NY-00", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "childItems" : [ { + "catenaXId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "bpnl" : "BPNL00000003B3NX", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "918525", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "4830", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "28560P2-12", + "key" : "manufacturerPartId" + }, { + "value" : "NO-067369307894106711566433", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "partTypeInformation" : { + "manufacturerPartId" : "28560P2-12", + "customerPartId" : "28560P2-12", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "manufacturerId" : "BPNL00000003B3NX", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f409347a-97a4-41b8-a0c5-e461fce6ab20", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "partTypeInformation" : { + "ownerPartId" : "28560P2-12", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Sensor", + "partClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "nameAtOwner" : "Sensor" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "customers" : [ { + "businessPartner" : "BPNL00000003B3NX", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 55, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 2, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 40 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + } ] + } ], + "catenaXId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "457148", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "2088", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "partTypeInformation" : { + "manufacturerPartId" : "IB-48", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } ], + "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "179318", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "5658", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "manufacturerId" : "BPNL00000003AXS3", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "partTypeInformation" : { + "manufacturerPartId" : "BJ-61", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "customers" : [ { + "businessPartner" : "BPNL00000003AXS3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm: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" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "childItems" : [ { + "catenaXId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B3NX", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "bpnl" : "BPNL00000003B5MJ", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "549588", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "5925", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "64019Q7-00", + "key" : "manufacturerPartId" + }, { + "value" : "NO-826773693399477683890623", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B5MJ", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "partTypeInformation" : { + "manufacturerPartId" : "64019Q7-00", + "customerPartId" : "64019Q7-00", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "manufacturerId" : "BPNL00000003B5MJ", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:be280555-de15-4b87-9b91-94684e83e0c9", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f78b0e12-91d7-43c1-ac31-fc5fa8057e24", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:99552ffe-2354-4627-9275-fab0debcd9da", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "partTypeInformation" : { + "ownerPartId" : "64019Q7-00", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ECU", + "partClassification" : [ { + "value" : "ECU", + "key" : "BPNL00000003B5MJ:PartFamily" + } ], + "nameAtOwner" : "ECU" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "customers" : [ { + "businessPartner" : "BPNL00000003B5MJ", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm: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" : 77, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : "unit:percent", + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + } ] + } ], + "catenaXId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "798954", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "9906", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "manufacturerId" : "BPNL00000003AXS3", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "partTypeInformation" : { + "manufacturerPartId" : "TQ-65", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "customers" : [ { + "businessPartner" : "BPNL00000003AXS3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "childItems" : [ { + "catenaXId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : "unit:kilogram" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "bpnl" : "BPNL00000003B3NX", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "324779", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "8959", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "81438W4-69", + "key" : "manufacturerPartId" + }, { + "value" : "NO-995949081304639517654037", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "partTypeInformation" : { + "manufacturerPartId" : "81438W4-69", + "customerPartId" : "81438W4-69", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "manufacturerId" : "BPNL00000003B3NX", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fe8e1f2b-6448-41ac-9ade-d6586fc28853", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "partTypeInformation" : { + "ownerPartId" : "81438W4-69", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Sensor", + "partClassification" : [ { + "value" : "Sensor", + "key" : "BPNL00000003B3NX:PartFamily" + } ], + "nameAtOwner" : "Sensor" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "customers" : [ { + "businessPartner" : "BPNL00000003B3NX", + "parentItems" : [ { + "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm: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" : 35, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ], + "catenaXId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "368264", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "3966", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "partTypeInformation" : { + "manufacturerPartId" : "CW-13", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm: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" : 53, + "materialClass" : "5.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ] + } ], + "catenaXId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "627552", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "2856", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "46106B9-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-016852990645172955032259", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "partTypeInformation" : { + "manufacturerPartId" : "46106B9-16", + "customerPartId" : "46106B9-16", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "partTypeInformation" : { + "ownerPartId" : "46106B9-16", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Engineering Plastics", + "partClassification" : [ { + "value" : "Engineering Plastics", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "Engineering Plastics" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "customers" : [ { + "businessPartner" : "BPNL00000003B0Q0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-191917430528725375106893", + "key" : "partInstanceId" + }, { + "value" : "Company 1", + "key" : "company" + }, { + "value" : "Brand 1", + "key" : "brand" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + }, + "itemVersion" : "05" + } ], + "urn:samm: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" : false, + "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" : "38049661-08", + "technicalSpecification" : [ { + "technicalValue" : "RYtGKbgicZaHCBRQDSx", + "key" : "JxkyvRnL" + } ], + "productLink" : "https://123", + "oeNumber" : "NO-191917430528725375106893", + "category" : { + "subCategory" : [ "Battery" ], + "mainCategory" : [ "Audio, video, navigation" ] + }, + "originalManufacturer" : "Company 1", + "brand" : "Brand 1", + "productDescription" : "Battery" + }, + "sku" : "1002090, xYz.09, ABcXYZ", + "mileage" : 120000.06 + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a272da79-26d7-4fbc-95d6-d45867b72487", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2c70eb5d-d1db-46d7-a5a4-968e4632e40c", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:926f4443-f04a-4ba2-93dd-a5f7db4b9ec1", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ae74877d-3423-484c-b431-71cc85145850", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d2dbda1c-1a8e-4a44-9cf3-b9ddde82d89e", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c7412f24-fd1f-49d5-8492-376df636a0b3", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:befab831-7855-4c24-a69d-82db4902c5ac", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:27ca6efa-3f00-41f9-9f47-51c8f244c473", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:cc88364a-4358-4b85-a61d-2b45391348ae", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "38049661-08", + "manufacturerPartId" : "38049661-08" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a Battery", + "class" : { + "code" : "27-05-02-91", + "definition" : "Traction battery, starter battery (parts)" + }, + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-10-09", + "version" : 1.7, + "status" : "Expired" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 1086.0725, + "width" : 1086, + "length" : 2005, + "weight" : 661, + "height" : 318 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 19 + } + }, + "commercial" : { + "placedOnMarket" : "2022-12-19", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-191917430528725375106893", + "key" : "PartInstanceID" + } ], + "gtin" : " 27217354", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "464053879" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-01-13", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 6.3151 ] + }, + "id" : "YM2584" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Aluminium" + } ], + "critical" : [ "Cobalt" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 112 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B2OM", + "manufacturer" : { + "facilityId" : "BPNL00000003B3NX", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 69, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 5.4 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 42, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 11.75 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 2, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", + "childItems" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d2dbda1c-1a8e-4a44-9cf3-b9ddde82d89e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:befab831-7855-4c24-a69d-82db4902c5ac", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cc88364a-4358-4b85-a61d-2b45391348ae", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "887964", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "1783", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", + "partTypeInformation" : { + "ownerPartId" : "38049661-08", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Battery", + "partClassification" : [ { + "value" : "Battery", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "Battery" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-191917430528725375106893", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "pack" + } ], + "productType" : "pack" + } ], + "urn:samm: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:samm: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" : 89, + "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:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "childItems" : [ { + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "298796", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "5373", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-225047452744455302636553", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4abdf863-5c92-4597-acc4-df683a905d42", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:c931e6e6-f903-4bd9-9fb1-198c62b74bd8", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fa3e56c6-550c-4f2a-970d-2c7cad4b962d", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:52b808cd-bd9b-451a-baba-99be73c3c7dd", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:70c2a674-8246-4922-ac74-5cf37d0f3df4", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:bae04eaa-ae94-4153-8708-a69bb7cf1da6", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:676d16ce-6204-4fb7-b2bb-9ba0dd87666d", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d47d5975-669c-4c11-8b27-2aadfd3ebe71", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:458090b2-a5d3-44cf-843c-70a8c2d07464", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9b9ca33c-7116-40c6-8634-12c43e84c5d8", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:50d33e5f-89b3-40b5-b1fe-3a3884174be3", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-225047452744455302636553", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2024-02-18", + "version" : 1.3, + "status" : "Approved" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6302, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 17 + } + }, + "commercial" : { + "placedOnMarket" : "2024-02-05", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-225047452744455302636553", + "key" : "PartInstanceID" + } ], + "gtin" : " 14780081", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "409566483" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "SubstanceOfConcern", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-02-26", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 1.9548 ] + }, + "id" : "SS5922" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Others" + } ], + "critical" : [ "Cobalt" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 101 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AXS3", + "manufacturer" : { + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-03-06", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "725804", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 9 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "2851", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-053023736599742615848117", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:54182658-d04f-465b-8f01-a728b833239e", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-053023736599742615848117", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-03-23", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-18", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "816796", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "1874", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-732864797332146475523520", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:59835551-c523-48bf-b101-a46ac58c71af", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-732864797332146475523520", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-05-03", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-23", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "544648", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "8094", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-319097498421815324263900", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:44f7751a-913f-440f-ac80-fb65c2995962", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-319097498421815324263900", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-01-14", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-09", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "858159", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "8825", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-640293564015841806077713", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:af32bd0f-dfc8-4288-842c-0f271e7897a2", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-640293564015841806077713", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-01-23", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-13", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "487026", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 9 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "6119", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-407255088704313260876574", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ca42c12d-0261-411f-ac01-f5470fdf6dcc", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-407255088704313260876574", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-12-04", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-14", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "377925", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "3125", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-005247654431541669301900", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4e658c29-5d6c-450c-8e38-22b1e7865515", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-005247654431541669301900", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-08", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-09", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "899144", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "4990", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-780079092640291814128113", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ac6e4d6e-7747-4276-b180-de7de0434af9", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-780079092640291814128113", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-06-19", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-13", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "235877", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "6294", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-498860958581428795638850", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:508524ec-32c0-44e1-a888-5792e65b603e", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-498860958581428795638850", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-08-04", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "641749", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "7206", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-439183532206865037256516", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:135aad36-9dcc-4371-80aa-dd154f43b993", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-439183532206865037256516", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-02-12", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "395682", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9300", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-677437679047578781943212", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:634cd7dd-9090-468e-9e91-cc286eccb9e1", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-677437679047578781943212", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 43, + "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" : 12, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "childItems" : [ { + "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "174324", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "3450", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-501018305274784241602073", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:7005e9ff-95c3-4bd2-8bfd-66ab8fbc303b", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d3f3cf42-a96e-4d3c-8d03-7d066ea0036b", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ea6af487-5e6c-4f3f-843d-61f43eaea0c3", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fae704ff-3e17-44b9-bdee-193c432cf0f3", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fdd6c61a-0001-4800-8abb-1be0a38c170c", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:2ea28c34-ca0e-4f63-ad60-55e245621623", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:598c43f3-72c8-4951-906a-a3798416e804", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:703769af-1d9a-4acc-a985-30ef7290e07a", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:030202dc-0537-4956-bcfb-f7418398730c", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a6e0d698-113b-49d9-a766-e3f0c60b9c3e", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:752a5318-a0c1-42c6-b2ee-05b355f8f9e6", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-501018305274784241602073", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-09-10", + "version" : 2.5, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.682, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 17 + } + }, + "commercial" : { + "placedOnMarket" : "2020-01-27", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-501018305274784241602073", + "key" : "PartInstanceID" + } ], + "gtin" : " 94170391", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "717119110" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2023-11-17", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 8.5621 ] + }, + "id" : "JU8706" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "UV Varnish" + } ], + "critical" : [ "Graphite" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 113 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AYRE", + "manufacturer" : { + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-08-25", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-06", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "68136", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "4731", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-713498680690089344875157", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:db2e23a7-d8ef-4bb6-9711-b63286662691", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-713498680690089344875157", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-12-02", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "489279", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "8875", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-754901179164912952471287", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:1004fb48-3648-4f61-bc67-dd0112550aaf", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-754901179164912952471287", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-12-17", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "659447", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "2372", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-212384038764272037807021", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ac4d19b7-72da-4a03-a860-98bcdb1bf69d", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-212384038764272037807021", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-07-23", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-25", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "474433", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "6538", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-281978893666347349939292", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f1e4467c-8639-4f9c-a119-7cd31e41d021", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-281978893666347349939292", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-05-16", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "681473", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "6801", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-197282769557955963065227", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:e30d0e57-17ac-442f-8793-874349153f9a", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-197282769557955963065227", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-02-22", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "614739", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "2371", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-513627497057751447854533", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:8efa5dca-68db-4de1-979a-59cad63e1c6d", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-513627497057751447854533", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-07-25", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "970142", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "2928", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-222036500728807004532007", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:6a68c0ef-5bcd-4851-8be8-9c7594c4d226", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-222036500728807004532007", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-04-29", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "577396", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "5747", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-867497373255801160984990", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:9302bb26-ce53-4b0f-8d74-2ef39075b3ef", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-867497373255801160984990", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-11-29", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "228999", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "2870", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-234433363527778995608209", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0f13f249-d965-477f-ae0a-08ab28801cf4", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-234433363527778995608209", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-11-11", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "574946", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "1733", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-352108796706027868787571", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b5da61e9-871c-4ecc-99ba-79b0d377d985", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-352108796706027868787571", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 49, + "materialClass" : "3.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 1.2 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 34, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 40, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "childItems" : [ { + "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:8676f165-bf4c-4a55-ace1-08df65e2f835", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a1d66637-a7e1-48f6-b242-fa2217f691b6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:a462bfe5-5071-4a30-950d-54c1f083e904", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cb36d626-0fc9-4b0f-b322-de454d6bb41d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "90764", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "6177", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-513465712429541111831569", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0d7c9619-af62-41fe-a888-cecb4ed250cd", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:fefa38d5-0efd-4d71-a92a-eeccb72ac3b9", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4a8b5cf8-93fc-4f6e-abbd-f6df7d5492bd", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:544145c5-6553-4f7f-8450-eacb815b415a", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:b99ab465-e8b8-4686-b604-187720ac60a6", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:f38ef7b5-e5b9-43b7-9161-6c03b3543e18", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:4495b76c-88b4-4590-9533-6c8a1d09dd1f", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:85eb4b3f-dfcb-49ea-b279-3c123b8a4e77", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:8676f165-bf4c-4a55-ace1-08df65e2f835", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:405cb7cb-c22a-44aa-a129-c7395d2415b2", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:a1d66637-a7e1-48f6-b242-fa2217f691b6", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:ba17dda5-76b0-462a-9941-6b8064a0b640", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:a462bfe5-5071-4a30-950d-54c1f083e904", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:d7535b59-cda6-4e4f-bd4d-c4702d5dcef5", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:cb36d626-0fc9-4b0f-b322-de454d6bb41d", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-513465712429541111831569", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AYRE", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-04-14", + "version" : 1.1, + "status" : "Invalid" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6336, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 16 + } + }, + "commercial" : { + "placedOnMarket" : "2022-05-22", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-513465712429541111831569", + "key" : "PartInstanceID" + } ], + "gtin" : " 30556220", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "162038866" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Compliance", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2023-04-24", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : false, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 4.767 ] + }, + "id" : "IW4785" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : true, + "renewable" : false, + "percentage" : 5, + "name" : "Nickel" + } ], + "critical" : [ "Cobalt" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 106 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003AYRE", + "manufacturer" : { + "facilityId" : "BPNL00000003B3NX", + "manufacturerId" : "BPNL00000003AYRE" + } + } + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + } ], + "productType" : "module" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-08-21", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "883160", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "2652", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-882472948282380332973098", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:0ad6dd3f-c673-40b5-a37e-72c399af9b08", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-882472948282380332973098", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-08-26", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "278409", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "9260", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-377536511860412570066760", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:da3d43ee-d2ac-4797-ba8f-fa65b29aa40e", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-377536511860412570066760", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-11-02", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-27", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "295968", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 22 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "2028", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-701547472602799656630142", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:75bf40e6-8e1b-43a1-9723-bccc9e145a5b", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-701547472602799656630142", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-07-12", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "124613", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "5294", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-198122193606342526648807", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "03" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:77247910-191b-4599-bc1f-b1dfb6234afd", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-198122193606342526648807", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", + "childItems" : [ { + "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2023-05-26", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-02-18", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "310629", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "7292", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-861416653605285640927773", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:765bd7f0-d494-41d8-8641-1380055afe8a", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-861416653605285640927773", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", + "childItems" : [ { + "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-07-17", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-05", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "938186", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "6877", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-549783520636760057701443", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 2, + "measurementUnit" : "unit:litre" + }, + "ownerItemId" : "urn:uuid:a9c4698c-1568-4fad-a44c-356a30e8762c", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 + }, + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 + }, + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 + }, + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 + }, + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + }, + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-549783520636760057701443", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", + "customers" : [ { + "businessPartner" : "BPNL00000003AYRE", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ] + } + ] + +} \ No newline at end of file From 08f981d0632b4138d44f94e1f290f71e35147f16 Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Fri, 29 Mar 2024 15:12:35 +0100 Subject: [PATCH 24/41] feat(impl):[#488] update --- ...rsItemGraphQueryServiceSpringBootTest.java | 2 +- ...v1.6.2_AsBuilt-reduced-with-Specified.json | 124520 --------------- ...ta_v1.7.0_AsBuilt-not-accepted-policy.json | 10 +- 3 files changed, 5 insertions(+), 124527 deletions(-) delete mode 100644 local/testing/testdata/CX_Testdata_v1.6.2_AsBuilt-reduced-with-Specified.json diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceSpringBootTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceSpringBootTest.java index 582ff5902e..82ae9ff5e4 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceSpringBootTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceSpringBootTest.java @@ -146,7 +146,7 @@ void registerJobWithCollectAspectsShouldIncludeSubmodels() throws InvalidSchemaE // then given().ignoreException(ResponseStatusException.class) .await() - .atMost(10, TimeUnit.MINUTES) + .atMost(10, TimeUnit.SECONDS) .until(() -> getSubmodelsSize(registeredJob.getId()), greaterThan(0)); } diff --git a/local/testing/testdata/CX_Testdata_v1.6.2_AsBuilt-reduced-with-Specified.json b/local/testing/testdata/CX_Testdata_v1.6.2_AsBuilt-reduced-with-Specified.json deleted file mode 100644 index 02c859ee28..0000000000 --- a/local/testing/testdata/CX_Testdata_v1.6.2_AsBuilt-reduced-with-Specified.json +++ /dev/null @@ -1,124520 +0,0 @@ -{ - "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": "PURPOSE", - "odrl:operator": { - "@id": "odrl:eq" - }, - "odrl:rightOperand": "ID 3.0 Trace" - } - ] - } - } - ] - } - } - }, - "https://catenax.io/schema/TestDataContainer/1.0.0" : [ { - "catenaXId" : "urn:uuid:77a75e30-9733-4f54-9cf6-43b41b8dc780", - "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:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "BATCH_SEALANT_2" : "urn:uuid:533543fb-5d09-4270-b4d5-0323de239d9a", - "AUTHOR" : "T-Systems", - "BATCH_GLUE_2" : "urn:uuid:8e08eaba-cd33-49ae-bde7-2cd64e88f30b", - "BATCH_GLUE_1" : "urn:uuid:14dcdfbd-73ba-43e9-8b5c-547e19271213", - "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", - "SPT_MPO_LINK" : "urn:uuid:029cff7f-2abe-4033-bece-62b55f17fbc4", - "BPN_TIER_B" : "BPNL00000003B5MJ", - "BPN_SUB_TIER_B" : "BPNL00000003AXS3", - "BPN_SUB_TIER_A" : "BPNL00000003B3NX", - "BATCH_CATHODE_1" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "BATCH_CATHODE_2" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "BPN_SUB_TIER_C" : "BPNL00000000BJTL", - "CREATION_DATE" : "2023-09-29T10:20:58.926Z", - "BATCH_POLYAMID_1" : "urn:uuid:6b54b8a3-d7e7-43ab-8e31-59e852af6a11", - "BATCH_POLYAMID_2" : "urn:uuid:943b225b-47b9-429f-a00c-e5034749220d" - } ] - }, { - "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Kombilimousine", - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "engine" : { - "size" : 2998, - "power" : 143 - }, - "emptyWeight" : 1.73, - "fuel" : "Elektro", - "vehicleModel" : "Vehicle Fully Electric", - "productionDateGMT" : "2010-01-01", - "equipmentVariants" : [ { - "code" : "S2AVB", - "description" : "adaptive drive", - "group" : "special equipment" - }, { - "code" : "S763C", - "description" : "sport package", - "group" : "special equipment" - }, { - "code" : "A01CR", - "description" : "remote engine start", - "group" : "special equipment" - }, { - "code" : "S378B", - "description" : "integrated child seats", - "group" : "special equipment" - } ], - "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", - "mileage" : [ { - "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2014-05-30", - "mileageDistance" : 120000 - } ] - } ], - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "QH-62", - "key" : "manufacturerPartId" - }, { - "value" : "OMBMXMEHXROOFMPTW", - "key" : "partInstanceId" - }, { - "value" : "OMBMXMEHXROOFMPTW", - "key" : "van" - } ], - "manufacturingInformation" : { - "date" : "2020-08-19T11:21:15.000Z", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "partTypeInformation" : { - "manufacturerPartId" : "QH-62", - "classification" : "product", - "nameAtManufacturer" : "Vehicle Fully Electric" - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Iron", - "recycledContent" : 48, - "materialClass" : "1.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 327.6 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "IR334" - }, { - "materialName" : "Polyethylen", - "recycledContent" : 31, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 163.8 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "PE221" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 53, - "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" : 1, - "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" : 66, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 382.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - }, { - "materialName" : "Cooper", - "recycledContent" : 17, - "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" : 7, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 5.12 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "TEX1" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "childItems" : [ { - "catenaXId" : "urn:uuid:78a27700-13eb-4ccc-8095-cf35742900f9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:16a8d652-0f37-4bde-96bc-83618c3b256a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:145d41b2-d6b9-4bc6-87ef-993e32341601", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ebf46c60-7bb4-4cd2-9bf5-229a2f4e2495", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b890a234-d184-4315-be96-64d72b7c2425", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:eca9d287-af07-4f69-82f0-956a53eb1661", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c4d01eb2-2b5f-403e-9b92-9460273b778c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:23f27c5a-3edb-409d-a676-0e8615396aa9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a2eeceb4-60fc-463b-8627-fa0969031294", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:bea00d04-4430-464e-9eb0-ee28f0573bcc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:48953c6b-c644-4860-8ea9-e193066447d0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4cd0a7ce-5d0b-4717-8577-b2719871ee65", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:655df4b0-bb83-4512-aa8f-caff64d32b15", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b245732f-b37b-482f-9177-a8a9c56e8e1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:741a23d3-5749-40d5-b821-6048fbd84d14", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a5659907-467f-454a-928f-31b4f00aad28", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7167ecf4-73f6-4c22-ad40-9cf0d5ee2372", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e4a153f3-a729-49d8-930c-211315da5408", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:df82b2ff-d9ea-4b63-acb6-b2d82d1de603", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f45fd8ed-b726-4ecd-8fd9-20c238d66b90", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a7aeb5e5-4350-4c3a-baf8-2f2482ef1477", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:36f4e2f7-2026-43bb-add2-3ad6f3871bce", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5c08a8b4-ce61-4b2c-9df5-5df8e4e1e59b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:668d2112-0c1a-4803-8adb-efb3e038f811", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d6294cf7-9e86-4737-8aa3-e45c03a7d493", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e8e5628c-5965-4860-91c0-2bc597680b92", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:868135f9-d084-4f55-b58a-27d918bf8850", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9ea87074-6736-489b-a2fd-b696eb090fdb", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:821e04e4-7aa5-4bfd-918b-db272d7c24c9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:334cce52-1f52-4bc9-9dd1-410bbe497bbc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B2OM", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:bb3284c3-593e-4c2b-b275-2dfccee2501b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B5MJ", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4db3b19e-1152-4e4e-8b4b-63c2f4fccc5c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:78a27700-13eb-4ccc-8095-cf35742900f9", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:78a27700-13eb-4ccc-8095-cf35742900f9", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "73849201-61", - "key" : "manufacturerPartId" - }, { - "value" : "NO-071493188502964558920427", - "key" : "partInstanceId" - }, { - "value" : "Company 10", - "key" : "company" - }, { - "value" : "Brand 10", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:78a27700-13eb-4ccc-8095-cf35742900f9", - "partTypeInformation" : { - "manufacturerPartId" : "73849201-61", - "customerPartId" : "73849201-61", - "classification" : "component", - "nameAtManufacturer" : "Catalysator", - "nameAtCustomer" : "Catalysator" - } - } ] - }, { - "catenaXId" : "urn:uuid:16a8d652-0f37-4bde-96bc-83618c3b256a", - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:16a8d652-0f37-4bde-96bc-83618c3b256a", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "22782277-50", - "key" : "manufacturerPartId" - }, { - "value" : "NO-956254175694445065647100", - "key" : "partInstanceId" - }, { - "value" : "Company 3", - "key" : "company" - }, { - "value" : "Brand 3", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:16a8d652-0f37-4bde-96bc-83618c3b256a", - "partTypeInformation" : { - "manufacturerPartId" : "22782277-50", - "customerPartId" : "22782277-50", - "classification" : "component", - "nameAtManufacturer" : "Door f-l", - "nameAtCustomer" : "Door front-left" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:16a8d652-0f37-4bde-96bc-83618c3b256a", - "childItems" : [ { - "catenaXId" : "urn:uuid:805daf66-3f24-4fa8-9b00-f940fb0b3f19", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:805daf66-3f24-4fa8-9b00-f940fb0b3f19", - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:805daf66-3f24-4fa8-9b00-f940fb0b3f19", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:16a8d652-0f37-4bde-96bc-83618c3b256a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-296575121524174694791421", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:805daf66-3f24-4fa8-9b00-f940fb0b3f19", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "59144578DSQ", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:805daf66-3f24-4fa8-9b00-f940fb0b3f19", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:145d41b2-d6b9-4bc6-87ef-993e32341601", - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:145d41b2-d6b9-4bc6-87ef-993e32341601", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "95657362-64", - "key" : "manufacturerPartId" - }, { - "value" : "NO-843705090809130641546007", - "key" : "partInstanceId" - }, { - "value" : "Company 4", - "key" : "company" - }, { - "value" : "Brand 4", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:145d41b2-d6b9-4bc6-87ef-993e32341601", - "partTypeInformation" : { - "manufacturerPartId" : "33740332-54", - "customerPartId" : "33740332-54", - "classification" : "component", - "nameAtManufacturer" : "Door f-r", - "nameAtCustomer" : "Door front-right" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:145d41b2-d6b9-4bc6-87ef-993e32341601", - "childItems" : [ { - "catenaXId" : "urn:uuid:a0d06bda-9c15-4f15-9bfa-e84679894e6e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:a0d06bda-9c15-4f15-9bfa-e84679894e6e", - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a0d06bda-9c15-4f15-9bfa-e84679894e6e", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:145d41b2-d6b9-4bc6-87ef-993e32341601", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-288154996010912714669429", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a0d06bda-9c15-4f15-9bfa-e84679894e6e", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "40175433KZL", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:a0d06bda-9c15-4f15-9bfa-e84679894e6e", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:ebf46c60-7bb4-4cd2-9bf5-229a2f4e2495", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ebf46c60-7bb4-4cd2-9bf5-229a2f4e2495", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "15635759-16", - "key" : "manufacturerPartId" - }, { - "value" : "NO-160231980307869073364672", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ebf46c60-7bb4-4cd2-9bf5-229a2f4e2495", - "partTypeInformation" : { - "manufacturerPartId" : "15635759-16", - "customerPartId" : "15635759-16", - "classification" : "component", - "nameAtManufacturer" : "Door r-l", - "nameAtCustomer" : "Door rear-left" - } - } ] - }, { - "catenaXId" : "urn:uuid:b890a234-d184-4315-be96-64d72b7c2425", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b890a234-d184-4315-be96-64d72b7c2425", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "28673126-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-613758399026670920867448", - "key" : "partInstanceId" - }, { - "value" : "Company 5", - "key" : "company" - }, { - "value" : "Brand 5", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b890a234-d184-4315-be96-64d72b7c2425", - "partTypeInformation" : { - "manufacturerPartId" : "28673126-98", - "customerPartId" : "28673126-98", - "classification" : "component", - "nameAtManufacturer" : "Door r-r", - "nameAtCustomer" : "Door rear-right" - } - } ] - }, { - "catenaXId" : "urn:uuid:eca9d287-af07-4f69-82f0-956a53eb1661", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:eca9d287-af07-4f69-82f0-956a53eb1661", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "94421589-82", - "key" : "manufacturerPartId" - }, { - "value" : "NO-552624264914573850134448", - "key" : "partInstanceId" - }, { - "value" : "Company 6", - "key" : "company" - }, { - "value" : "Brand 6", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:eca9d287-af07-4f69-82f0-956a53eb1661", - "partTypeInformation" : { - "manufacturerPartId" : "94421589-82", - "customerPartId" : "94421589-82", - "classification" : "component", - "nameAtManufacturer" : "Engine hood", - "nameAtCustomer" : "Engine hood" - } - } ] - }, { - "catenaXId" : "urn:uuid:c4d01eb2-2b5f-403e-9b92-9460273b778c", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c4d01eb2-2b5f-403e-9b92-9460273b778c", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "85023955-75", - "key" : "manufacturerPartId" - }, { - "value" : "NO-138570897000806171141100", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c4d01eb2-2b5f-403e-9b92-9460273b778c", - "partTypeInformation" : { - "manufacturerPartId" : "85023955-75", - "customerPartId" : "85023955-75", - "classification" : "component", - "nameAtManufacturer" : "Tailgate", - "nameAtCustomer" : "Tailgate" - } - } ] - }, { - "catenaXId" : "urn:uuid:23f27c5a-3edb-409d-a676-0e8615396aa9", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:23f27c5a-3edb-409d-a676-0e8615396aa9", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "13769860-47", - "key" : "manufacturerPartId" - }, { - "value" : "NO-666667912673593712032293", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:23f27c5a-3edb-409d-a676-0e8615396aa9", - "partTypeInformation" : { - "manufacturerPartId" : "13769860-47", - "customerPartId" : "13769860-47", - "classification" : "component", - "nameAtManufacturer" : "Fender left", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:a2eeceb4-60fc-463b-8627-fa0969031294", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a2eeceb4-60fc-463b-8627-fa0969031294", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "36643162-35", - "key" : "manufacturerPartId" - }, { - "value" : "NO-846592051809673242494804", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a2eeceb4-60fc-463b-8627-fa0969031294", - "partTypeInformation" : { - "manufacturerPartId" : "36643162-35", - "customerPartId" : "36643162-35", - "classification" : "component", - "nameAtManufacturer" : "Fender right", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:bea00d04-4430-464e-9eb0-ee28f0573bcc", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bea00d04-4430-464e-9eb0-ee28f0573bcc", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "54165444-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-087422141322624363768065", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:bea00d04-4430-464e-9eb0-ee28f0573bcc", - "partTypeInformation" : { - "manufacturerPartId" : "54165444-59", - "customerPartId" : "54165444-59", - "classification" : "component", - "nameAtManufacturer" : "Bumper front", - "nameAtCustomer" : "Bumper front" - } - } ] - }, { - "catenaXId" : "urn:uuid:48953c6b-c644-4860-8ea9-e193066447d0", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:48953c6b-c644-4860-8ea9-e193066447d0", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "22768257-25", - "key" : "manufacturerPartId" - }, { - "value" : "NO-840401257902996068058761", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:48953c6b-c644-4860-8ea9-e193066447d0", - "partTypeInformation" : { - "manufacturerPartId" : "22768257-25", - "customerPartId" : "22768257-25", - "classification" : "component", - "nameAtManufacturer" : "Bumper rear", - "nameAtCustomer" : "Bumper rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:4cd0a7ce-5d0b-4717-8577-b2719871ee65", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4cd0a7ce-5d0b-4717-8577-b2719871ee65", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "65529521-37", - "key" : "manufacturerPartId" - }, { - "value" : "NO-848690869422406805419756", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4cd0a7ce-5d0b-4717-8577-b2719871ee65", - "partTypeInformation" : { - "manufacturerPartId" : "65529521-37", - "customerPartId" : "65529521-37", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror left", - "nameAtCustomer" : "Exterior mirror left" - } - } ] - }, { - "catenaXId" : "urn:uuid:655df4b0-bb83-4512-aa8f-caff64d32b15", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:655df4b0-bb83-4512-aa8f-caff64d32b15", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "58471477-24", - "key" : "manufacturerPartId" - }, { - "value" : "NO-299472332983552916080262", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:655df4b0-bb83-4512-aa8f-caff64d32b15", - "partTypeInformation" : { - "manufacturerPartId" : "58471477-24", - "customerPartId" : "58471477-24", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror right", - "nameAtCustomer" : "Exterior mirror right" - } - } ] - }, { - "catenaXId" : "urn:uuid:b245732f-b37b-482f-9177-a8a9c56e8e1e", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b245732f-b37b-482f-9177-a8a9c56e8e1e", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "09002013-68", - "key" : "manufacturerPartId" - }, { - "value" : "NO-201339038118313661196402", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b245732f-b37b-482f-9177-a8a9c56e8e1e", - "partTypeInformation" : { - "manufacturerPartId" : "09002013-68", - "customerPartId" : "09002013-68", - "classification" : "component", - "nameAtManufacturer" : "Trailer coupling", - "nameAtCustomer" : "Tailer coupling" - } - } ] - }, { - "catenaXId" : "urn:uuid:741a23d3-5749-40d5-b821-6048fbd84d14", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:741a23d3-5749-40d5-b821-6048fbd84d14", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "43501996-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-344043698277817125728000", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:741a23d3-5749-40d5-b821-6048fbd84d14", - "partTypeInformation" : { - "manufacturerPartId" : "43501996-98", - "customerPartId" : "43501996-98", - "classification" : "component", - "nameAtManufacturer" : "Dashboard", - "nameAtCustomer" : "Dashboard" - } - } ] - }, { - "catenaXId" : "urn:uuid:a5659907-467f-454a-928f-31b4f00aad28", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a5659907-467f-454a-928f-31b4f00aad28", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "77795937-13", - "key" : "manufacturerPartId" - }, { - "value" : "NO-950523660015798097165577", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a5659907-467f-454a-928f-31b4f00aad28", - "partTypeInformation" : { - "manufacturerPartId" : "77795937-13", - "customerPartId" : "77795937-13", - "classification" : "component", - "nameAtManufacturer" : "Steering wheel", - "nameAtCustomer" : "Steering wheel" - } - } ] - }, { - "catenaXId" : "urn:uuid:7167ecf4-73f6-4c22-ad40-9cf0d5ee2372", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7167ecf4-73f6-4c22-ad40-9cf0d5ee2372", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "20125432-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-414336129947583110591267", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7167ecf4-73f6-4c22-ad40-9cf0d5ee2372", - "partTypeInformation" : { - "manufacturerPartId" : "20125432-59", - "customerPartId" : "20125432-59", - "classification" : "component", - "nameAtManufacturer" : "Indicator left", - "nameAtCustomer" : "Indicator left" - } - } ] - }, { - "catenaXId" : "urn:uuid:e4a153f3-a729-49d8-930c-211315da5408", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e4a153f3-a729-49d8-930c-211315da5408", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "19073706-76", - "key" : "manufacturerPartId" - }, { - "value" : "NO-692558266902528852501132", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e4a153f3-a729-49d8-930c-211315da5408", - "partTypeInformation" : { - "manufacturerPartId" : "19073706-76", - "customerPartId" : "19073706-76", - "classification" : "component", - "nameAtManufacturer" : "Indicator right", - "nameAtCustomer" : "Indicator right" - } - } ] - }, { - "catenaXId" : "urn:uuid:df82b2ff-d9ea-4b63-acb6-b2d82d1de603", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:df82b2ff-d9ea-4b63-acb6-b2d82d1de603", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "45415162-57", - "key" : "manufacturerPartId" - }, { - "value" : "NO-376952169171830255664076", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:df82b2ff-d9ea-4b63-acb6-b2d82d1de603", - "partTypeInformation" : { - "manufacturerPartId" : "45415162-57", - "customerPartId" : "45415162-57", - "classification" : "component", - "nameAtManufacturer" : "Led headlight", - "nameAtCustomer" : "Led headlight" - } - } ] - }, { - "catenaXId" : "urn:uuid:f45fd8ed-b726-4ecd-8fd9-20c238d66b90", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f45fd8ed-b726-4ecd-8fd9-20c238d66b90", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "78141846-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-308230110883690372789416", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f45fd8ed-b726-4ecd-8fd9-20c238d66b90", - "partTypeInformation" : { - "manufacturerPartId" : "78141846-87", - "customerPartId" : "78141846-87", - "classification" : "component", - "nameAtManufacturer" : "Starter motor", - "nameAtCustomer" : "Starter motor" - } - } ] - }, { - "catenaXId" : "urn:uuid:a7aeb5e5-4350-4c3a-baf8-2f2482ef1477", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a7aeb5e5-4350-4c3a-baf8-2f2482ef1477", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "81324139-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-299032407121791156463945", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a7aeb5e5-4350-4c3a-baf8-2f2482ef1477", - "partTypeInformation" : { - "manufacturerPartId" : "81324139-23", - "customerPartId" : "81324139-23", - "classification" : "component", - "nameAtManufacturer" : "Alternator", - "nameAtCustomer" : "Alternator" - } - } ] - }, { - "catenaXId" : "urn:uuid:36f4e2f7-2026-43bb-add2-3ad6f3871bce", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:36f4e2f7-2026-43bb-add2-3ad6f3871bce", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "57929013-09", - "key" : "manufacturerPartId" - }, { - "value" : "NO-964809629384365207305514", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:36f4e2f7-2026-43bb-add2-3ad6f3871bce", - "partTypeInformation" : { - "manufacturerPartId" : "57929013-09", - "customerPartId" : "57929013-09", - "classification" : "component", - "nameAtManufacturer" : "AC compressor", - "nameAtCustomer" : "Air conditioning compressor" - } - } ] - }, { - "catenaXId" : "urn:uuid:5c08a8b4-ce61-4b2c-9df5-5df8e4e1e59b", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5c08a8b4-ce61-4b2c-9df5-5df8e4e1e59b", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "61184040-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-759410314382554064184170", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5c08a8b4-ce61-4b2c-9df5-5df8e4e1e59b", - "partTypeInformation" : { - "manufacturerPartId" : "61184040-23", - "customerPartId" : "61184040-23", - "classification" : "component", - "nameAtManufacturer" : "Taillight rear", - "nameAtCustomer" : "Taillight rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:668d2112-0c1a-4803-8adb-efb3e038f811", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:668d2112-0c1a-4803-8adb-efb3e038f811", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "78744126-74", - "key" : "manufacturerPartId" - }, { - "value" : "NO-002938733166083554652286", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:668d2112-0c1a-4803-8adb-efb3e038f811", - "partTypeInformation" : { - "manufacturerPartId" : "78744126-74", - "customerPartId" : "78744126-74", - "classification" : "component", - "nameAtManufacturer" : "Taillight front", - "nameAtCustomer" : "Taillight front" - } - } ] - }, { - "catenaXId" : "urn:uuid:d6294cf7-9e86-4737-8aa3-e45c03a7d493", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d6294cf7-9e86-4737-8aa3-e45c03a7d493", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "12093297-03", - "key" : "manufacturerPartId" - }, { - "value" : "NO-559772365248169382799303", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d6294cf7-9e86-4737-8aa3-e45c03a7d493", - "partTypeInformation" : { - "manufacturerPartId" : "12093297-03", - "customerPartId" : "12093297-03", - "classification" : "component", - "nameAtManufacturer" : "Axle part front", - "nameAtCustomer" : "Axle part front" - } - } ] - }, { - "catenaXId" : "urn:uuid:e8e5628c-5965-4860-91c0-2bc597680b92", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e8e5628c-5965-4860-91c0-2bc597680b92", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "88111709-49", - "key" : "manufacturerPartId" - }, { - "value" : "NO-782035881412913684982928", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e8e5628c-5965-4860-91c0-2bc597680b92", - "partTypeInformation" : { - "manufacturerPartId" : "88111709-49", - "customerPartId" : "88111709-49", - "classification" : "component", - "nameAtManufacturer" : "Axle part rear", - "nameAtCustomer" : "Axle part rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:868135f9-d084-4f55-b58a-27d918bf8850", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:868135f9-d084-4f55-b58a-27d918bf8850", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "00871379-44", - "key" : "manufacturerPartId" - }, { - "value" : "NO-031605385045184295720654", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:868135f9-d084-4f55-b58a-27d918bf8850", - "partTypeInformation" : { - "manufacturerPartId" : "00871379-44", - "customerPartId" : "00871379-44", - "classification" : "component", - "nameAtManufacturer" : "Chassis", - "nameAtCustomer" : "Chassis" - } - } ] - }, { - "catenaXId" : "urn:uuid:9ea87074-6736-489b-a2fd-b696eb090fdb", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9ea87074-6736-489b-a2fd-b696eb090fdb", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "08901347-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-658086560974979930058942", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9ea87074-6736-489b-a2fd-b696eb090fdb", - "partTypeInformation" : { - "manufacturerPartId" : "08901347-87", - "customerPartId" : "08901347-87", - "classification" : "component", - "nameAtManufacturer" : "Rims", - "nameAtCustomer" : "Rims" - } - } ] - }, { - "catenaXId" : "urn:uuid:821e04e4-7aa5-4bfd-918b-db272d7c24c9", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:821e04e4-7aa5-4bfd-918b-db272d7c24c9", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "45863316-60", - "key" : "manufacturerPartId" - }, { - "value" : "NO-108302127745760777742354", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:821e04e4-7aa5-4bfd-918b-db272d7c24c9", - "partTypeInformation" : { - "manufacturerPartId" : "45863316-60", - "customerPartId" : "45863316-60", - "classification" : "component", - "nameAtManufacturer" : "Tires", - "nameAtCustomer" : "Tires" - } - } ] - }, { - "catenaXId" : "urn:uuid:334cce52-1f52-4bc9-9dd1-410bbe497bbc", - "bpnl" : "BPNL00000003B2OM", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:334cce52-1f52-4bc9-9dd1-410bbe497bbc", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B2OM", - "key" : "manufacturerId" - }, { - "value" : "1O222E8-43", - "key" : "manufacturerPartId" - }, { - "value" : "NO-223043329736843650243373", - "key" : "partInstanceId" - }, { - "value" : "Company 2", - "key" : "company" - }, { - "value" : "Brand 2", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:334cce52-1f52-4bc9-9dd1-410bbe497bbc", - "partTypeInformation" : { - "manufacturerPartId" : "1O222E8-43", - "customerPartId" : "1O222E8-43", - "classification" : "component", - "nameAtManufacturer" : "Transmission", - "nameAtCustomer" : "Transmission" - } - } ], - "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:334cce52-1f52-4bc9-9dd1-410bbe497bbc", - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-223043329736843650243373", - "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.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Carbon Steel", - "recycledContent" : 33, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 72.843 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - }, { - "materialName" : "Oil", - "recycledContent" : 4, - "materialClass" : "9.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 6.9 - }, - "aggregateState" : "liquid", - "materialAbbreviation" : "SAE40" - }, { - "materialName" : "Copper", - "recycledContent" : 37, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:334cce52-1f52-4bc9-9dd1-410bbe497bbc", - "childItems" : [ { - "catenaXId" : "urn:uuid:7e4541ea-bb0f-464c-8cb3-021abccbfaf5", - "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e47f0639-8e20-4ae5-bd4a-6a07e2f106d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e0390640-5d3f-4e30-bfb8-05e7e802fcb0", - "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:7e4541ea-bb0f-464c-8cb3-021abccbfaf5", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:7e4541ea-bb0f-464c-8cb3-021abccbfaf5", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7e4541ea-bb0f-464c-8cb3-021abccbfaf5", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:334cce52-1f52-4bc9-9dd1-410bbe497bbc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Engineering Plastics", - "materialClass" : "5.1", - "component" : [ { - "materialName" : "PA66", - "recycledContent" : 30, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "PA66" - }, { - "materialName" : "GF-Faser", - "recycledContent" : 19, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 30 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:e47f0639-8e20-4ae5-bd4a-6a07e2f106d9", - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e47f0639-8e20-4ae5-bd4a-6a07e2f106d9", - "customers" : [ { - "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:334cce52-1f52-4bc9-9dd1-410bbe497bbc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "74470K4-08", - "key" : "manufacturerPartId" - }, { - "value" : "NO-550767244022562000296953", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e47f0639-8e20-4ae5-bd4a-6a07e2f106d9", - "partTypeInformation" : { - "manufacturerPartId" : "74470K4-08", - "customerPartId" : "74470K4-08", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e47f0639-8e20-4ae5-bd4a-6a07e2f106d9", - "childItems" : [ { - "catenaXId" : "urn:uuid:f3964e8b-dd90-4748-bfeb-53f523b03052", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:f3964e8b-dd90-4748-bfeb-53f523b03052", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:f3964e8b-dd90-4748-bfeb-53f523b03052", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "NTIER Product" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f3964e8b-dd90-4748-bfeb-53f523b03052", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e47f0639-8e20-4ae5-bd4a-6a07e2f106d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "NTIER Product", - "materialClass" : "5.5", - "component" : [ { - "materialName" : "Aluminium oxide", - "recycledContent" : 1, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 60 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - }, { - "materialName" : "Other", - "recycledContent" : 24, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:percent", - "value" : 40 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:e0390640-5d3f-4e30-bfb8-05e7e802fcb0", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:e0390640-5d3f-4e30-bfb8-05e7e802fcb0", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e0390640-5d3f-4e30-bfb8-05e7e802fcb0", - "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:334cce52-1f52-4bc9-9dd1-410bbe497bbc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.2341", - "materialAbbreviation" : "GL338" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e0390640-5d3f-4e30-bfb8-05e7e802fcb0", - "childItems" : [ ] - } ] - }, { - "catenaXId" : "urn:uuid:bb3284c3-593e-4c2b-b275-2dfccee2501b", - "bpnl" : "BPNL00000003B5MJ", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bb3284c3-593e-4c2b-b275-2dfccee2501b", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", - "key" : "manufacturerId" - }, { - "value" : "31875V0-13", - "key" : "manufacturerPartId" - }, { - "value" : "NO-446138059619769028729575", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:bb3284c3-593e-4c2b-b275-2dfccee2501b", - "partTypeInformation" : { - "manufacturerPartId" : "31875V0-13", - "customerPartId" : "31875V0-13", - "classification" : "component", - "nameAtManufacturer" : "ECU", - "nameAtCustomer" : "ECU" - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "recycledContent" : 30, - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.3301 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GL338" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bb3284c3-593e-4c2b-b275-2dfccee2501b", - "childItems" : [ { - "catenaXId" : "urn:uuid:ba78a74a-367c-4243-af47-7789d275b525", - "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6e0ba792-cd80-47c2-8990-e5776935285e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:566df99c-77a4-445b-87ab-6ae6f057ba3f", - "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:ba78a74a-367c-4243-af47-7789d275b525", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:ba78a74a-367c-4243-af47-7789d275b525", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ba78a74a-367c-4243-af47-7789d275b525", - "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bb3284c3-593e-4c2b-b275-2dfccee2501b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn: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" : 69, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:6e0ba792-cd80-47c2-8990-e5776935285e", - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6e0ba792-cd80-47c2-8990-e5776935285e", - "customers" : [ { - "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bb3284c3-593e-4c2b-b275-2dfccee2501b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "22489I4-52", - "key" : "manufacturerPartId" - }, { - "value" : "NO-102099862503474421369679", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6e0ba792-cd80-47c2-8990-e5776935285e", - "partTypeInformation" : { - "manufacturerPartId" : "22489I4-52", - "customerPartId" : "22489I4-52", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6e0ba792-cd80-47c2-8990-e5776935285e", - "childItems" : [ { - "catenaXId" : "urn:uuid:5e452e92-94f8-46bf-8b11-5ee6359f7184", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:5e452e92-94f8-46bf-8b11-5ee6359f7184", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:5e452e92-94f8-46bf-8b11-5ee6359f7184", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5e452e92-94f8-46bf-8b11-5ee6359f7184", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6e0ba792-cd80-47c2-8990-e5776935285e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn: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" : 74, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 30 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:566df99c-77a4-445b-87ab-6ae6f057ba3f", - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:566df99c-77a4-445b-87ab-6ae6f057ba3f", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bb3284c3-593e-4c2b-b275-2dfccee2501b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "51081N7-46", - "key" : "manufacturerPartId" - }, { - "value" : "NO-196912633280929106646475", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:566df99c-77a4-445b-87ab-6ae6f057ba3f", - "partTypeInformation" : { - "manufacturerPartId" : "51081N7-46", - "customerPartId" : "51081N7-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" : 19, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "PA66" - }, { - "materialName" : "GF-Faser", - "recycledContent" : 25, - "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" - } ], - "catenaXId" : "urn:uuid:4db3b19e-1152-4e4e-8b4b-63c2f4fccc5c", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4db3b19e-1152-4e4e-8b4b-63c2f4fccc5c", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "38049661-08", - "key" : "manufacturerPartId" - }, { - "value" : "NO-407140057999965409291700", - "key" : "partInstanceId" - }, { - "value" : "Company 1", - "key" : "company" - }, { - "value" : "Brand 1", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4db3b19e-1152-4e4e-8b4b-63c2f4fccc5c", - "partTypeInformation" : { - "manufacturerPartId" : "38049661-08", - "customerPartId" : "38049661-08", - "classification" : "component", - "nameAtManufacturer" : "Battery", - "nameAtCustomer" : "Battery" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "pack" - } ], - "productType" : "pack" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-407140057999965409291700", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 5.4 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 15, - "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" : false, - "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" : "38049661-08", - "technicalSpecification" : [ { - "technicalValue" : "RYtGKbgicZaHCBRQDSx", - "key" : "JxkyvRnL" - } ], - "productLink" : "https://123", - "oeNumber" : "NO-407140057999965409291700", - "category" : { - "subCategory" : [ "Battery" ], - "mainCategory" : [ "Audio, video, navigation" ] - }, - "originalManufacturer" : "Company 1", - "brand" : "Brand 1", - "productDescription" : "Battery" - }, - "sku" : "1002090, xYz.09, ABcXYZ", - "mileage" : 120000.06 - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "38049661-08", - "manufacturerPartId" : "38049661-08" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a Battery", - "class" : { - "code" : "27-05-02-91", - "definition" : "Traction battery, starter battery (parts)" - }, - "nameAtManufacturer" : "Battery", - "nameAtCustomer" : "Battery" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AVTH", - "eori" : "DE012345678901" - }, - "issueDate" : "2023-07-29", - "version" : 1.6, - "status" : "Approved" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 1183.0909, - "width" : 1183, - "length" : 2369, - "weight" : 552, - "height" : 336 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 17 - } - }, - "commercial" : { - "placedOnMarket" : "2023-03-27", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-407140057999965409291700", - "key" : "PartInstanceID" - } ], - "gtin" : " 46176218", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "169367900" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-08-01", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : false, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 8.4088 ] - }, - "id" : "SE9167" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : true, - "renewable" : false, - "percentage" : 5, - "name" : "Manganese" - } ], - "critical" : [ "Cobalt" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 103 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003B3NX", - "manufacturer" : { - "facilityId" : "BPNL00000003AYRE", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4db3b19e-1152-4e4e-8b4b-63c2f4fccc5c", - "childItems" : [ { - "catenaXId" : "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:dad101a2-b874-472b-8367-35f0bdf13cef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4aa5c9da-a53b-4a8a-a3b8-fb6d50e328e2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:35e09b92-b06d-4d2d-b412-d342c0315b0c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6ebaa472-3f9d-4c80-bcaa-2cee3eaf3fb1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:74cdf13c-a1db-4281-a4b7-ab4bb0abbcf3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4db3b19e-1152-4e4e-8b4b-63c2f4fccc5c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-631460319865795752216886", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-631460319865795752216886", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 79, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AVTH", - "eori" : "DE012345678901" - }, - "issueDate" : "2022-10-27", - "version" : 2, - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.6243, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 18 - } - }, - "commercial" : { - "placedOnMarket" : "2020-11-17", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-631460319865795752216886", - "key" : "PartInstanceID" - } ], - "gtin" : " 89076493", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "601454027" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Passport", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2022-11-26", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : false, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 7.15 ] - }, - "id" : "QK8663" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : false, - "percentage" : 5, - "name" : "Cobalt" - } ], - "critical" : [ "Nickel" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 111 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AXS3", - "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "childItems" : [ { - "catenaXId" : "urn:uuid:533543fb-5d09-4270-b4d5-0323de239d9a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ca8f4933-b62e-40c1-b587-998edd5056f7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:bc2095c0-fc67-4789-96a6-2d3cd6a52eb8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:717a3353-d3e0-4a50-9b02-cd6d351cc2fe", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5e53acc4-9e53-47c1-bf3a-2b9b943d5fc1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:82b2eac2-a016-479a-812b-403361ba3ed4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:03ef68ec-225f-4a40-bbe4-b8e01d9a1556", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d128f21a-470c-4e91-86de-f7ec2fa70e98", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8615eae2-6d30-43b2-af48-2440f5f1882d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d997bd22-7d6f-4682-a834-d0c222006302", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4a81499e-217e-4db4-af6d-f4cf5460d35e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:533543fb-5d09-4270-b4d5-0323de239d9a", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:533543fb-5d09-4270-b4d5-0323de239d9a", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Sealant" - } - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:533543fb-5d09-4270-b4d5-0323de239d9a", - "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:800bc4a7-b1ab-4bf2-bac9-85b8a1299d26", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:533543fb-5d09-4270-b4d5-0323de239d9a", - "childItems" : [ ] - } ] - }, { - "catenaXId" : "urn:uuid:ca8f4933-b62e-40c1-b587-998edd5056f7", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ca8f4933-b62e-40c1-b587-998edd5056f7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:1.0.0#SingleLevelBomAsSpecified": [ { - "catenaXId": "urn:uuid:ca8f4933-b62e-40c1-b587-998edd5056f7", - "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:8510540e-546f-49a7-92bf-ffec38878249" - } - ] - } ], - "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:ca8f4933-b62e-40c1-b587-998edd5056f7" - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-524502768425295756790200", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ca8f4933-b62e-40c1-b587-998edd5056f7", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-524502768425295756790200", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ca8f4933-b62e-40c1-b587-998edd5056f7", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-07-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-11", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Cathode Material" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6d5f51f6-af19-4022-8cbe-983626a4ff4e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 13, - "materialClass" : "8.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:bc2095c0-fc67-4789-96a6-2d3cd6a52eb8", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bc2095c0-fc67-4789-96a6-2d3cd6a52eb8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-165065608451789474499024", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:bc2095c0-fc67-4789-96a6-2d3cd6a52eb8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-165065608451789474499024", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bc2095c0-fc67-4789-96a6-2d3cd6a52eb8", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-11-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-31", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Cathode Material" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4e407c37-e011-441c-b86d-4e86b945975a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 64, - "materialClass" : "8.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:717a3353-d3e0-4a50-9b02-cd6d351cc2fe", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:717a3353-d3e0-4a50-9b02-cd6d351cc2fe", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-376281135026227541531918", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:717a3353-d3e0-4a50-9b02-cd6d351cc2fe", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-376281135026227541531918", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:717a3353-d3e0-4a50-9b02-cd6d351cc2fe", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5e53acc4-9e53-47c1-bf3a-2b9b943d5fc1", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5e53acc4-9e53-47c1-bf3a-2b9b943d5fc1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-596442995938599775575382", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5e53acc4-9e53-47c1-bf3a-2b9b943d5fc1", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-596442995938599775575382", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5e53acc4-9e53-47c1-bf3a-2b9b943d5fc1", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-08-30", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:82b2eac2-a016-479a-812b-403361ba3ed4", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:82b2eac2-a016-479a-812b-403361ba3ed4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-114635922580184342822719", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:82b2eac2-a016-479a-812b-403361ba3ed4", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-114635922580184342822719", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:82b2eac2-a016-479a-812b-403361ba3ed4", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-08-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:03ef68ec-225f-4a40-bbe4-b8e01d9a1556", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:03ef68ec-225f-4a40-bbe4-b8e01d9a1556", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-399909055744338357419600", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:03ef68ec-225f-4a40-bbe4-b8e01d9a1556", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-399909055744338357419600", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:03ef68ec-225f-4a40-bbe4-b8e01d9a1556", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-03-13", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d128f21a-470c-4e91-86de-f7ec2fa70e98", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d128f21a-470c-4e91-86de-f7ec2fa70e98", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-719282216894062369332078", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d128f21a-470c-4e91-86de-f7ec2fa70e98", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-719282216894062369332078", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d128f21a-470c-4e91-86de-f7ec2fa70e98", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-01-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8615eae2-6d30-43b2-af48-2440f5f1882d", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8615eae2-6d30-43b2-af48-2440f5f1882d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-404590042916366363480042", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8615eae2-6d30-43b2-af48-2440f5f1882d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-404590042916366363480042", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8615eae2-6d30-43b2-af48-2440f5f1882d", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-10-14", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d997bd22-7d6f-4682-a834-d0c222006302", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d997bd22-7d6f-4682-a834-d0c222006302", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-750178742602879648142300", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d997bd22-7d6f-4682-a834-d0c222006302", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-750178742602879648142300", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d997bd22-7d6f-4682-a834-d0c222006302", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-12-30", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-03", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4a81499e-217e-4db4-af6d-f4cf5460d35e", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4a81499e-217e-4db4-af6d-f4cf5460d35e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-046567830697919769903671", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4a81499e-217e-4db4-af6d-f4cf5460d35e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-046567830697919769903671", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4a81499e-217e-4db4-af6d-f4cf5460d35e", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-02-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:dad101a2-b874-472b-8367-35f0bdf13cef", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:dad101a2-b874-472b-8367-35f0bdf13cef", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4db3b19e-1152-4e4e-8b4b-63c2f4fccc5c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-409432997237558039047892", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:dad101a2-b874-472b-8367-35f0bdf13cef", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-409432997237558039047892", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 50, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AVTH", - "eori" : "DE012345678901" - }, - "issueDate" : "2023-09-03", - "version" : 2.4, - "status" : "Invalid" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.6875, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 17 - } - }, - "commercial" : { - "placedOnMarket" : "2023-05-02", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-409432997237558039047892", - "key" : "PartInstanceID" - } ], - "gtin" : " 55070076", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "997803920" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Compliance", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-09-28", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : false, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 2.6657 ] - }, - "id" : "VK5032" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : true, - "renewable" : false, - "percentage" : 5, - "name" : "Aluminium" - } ], - "critical" : [ "Lithium" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 106 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AYRE", - "manufacturer" : { - "facilityId" : "BPNL00000003B3NX", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:dad101a2-b874-472b-8367-35f0bdf13cef", - "childItems" : [ { - "catenaXId" : "urn:uuid:533543fb-5d09-4270-b4d5-0323de239d9a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:18e8a869-e179-49db-8ff7-5fdb0cc7cb40", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:87e935cb-8f24-4841-9a21-0dca1504bb2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7b7e35f0-a630-4de7-9219-d88c415f4856", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f2b7288c-790f-42ed-a4d5-632943f45305", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:76920e1c-7621-46e0-9c5f-782d6faae99b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:73b09688-d4b9-48eb-baad-d06bd503580d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f420664b-46b4-4b5e-905c-eeaa8f802918", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c9a2a270-2005-44fe-b66e-4f9124b692ac", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:47f3d860-27c4-414f-909c-eb9bee5d527f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c493dac0-eb37-4027-b588-a48a77aac102", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:18e8a869-e179-49db-8ff7-5fdb0cc7cb40", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:18e8a869-e179-49db-8ff7-5fdb0cc7cb40", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dad101a2-b874-472b-8367-35f0bdf13cef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-726137964076865307512438", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:18e8a869-e179-49db-8ff7-5fdb0cc7cb40", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-726137964076865307512438", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:18e8a869-e179-49db-8ff7-5fdb0cc7cb40", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-04-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:87e935cb-8f24-4841-9a21-0dca1504bb2f", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:87e935cb-8f24-4841-9a21-0dca1504bb2f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dad101a2-b874-472b-8367-35f0bdf13cef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-880230362257522268800955", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:87e935cb-8f24-4841-9a21-0dca1504bb2f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-880230362257522268800955", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:87e935cb-8f24-4841-9a21-0dca1504bb2f", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-02-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-04", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7b7e35f0-a630-4de7-9219-d88c415f4856", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7b7e35f0-a630-4de7-9219-d88c415f4856", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dad101a2-b874-472b-8367-35f0bdf13cef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-359987793193244493045647", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7b7e35f0-a630-4de7-9219-d88c415f4856", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-359987793193244493045647", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7b7e35f0-a630-4de7-9219-d88c415f4856", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-06-03", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-11", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f2b7288c-790f-42ed-a4d5-632943f45305", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f2b7288c-790f-42ed-a4d5-632943f45305", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dad101a2-b874-472b-8367-35f0bdf13cef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-645025835360280439767670", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f2b7288c-790f-42ed-a4d5-632943f45305", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-645025835360280439767670", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f2b7288c-790f-42ed-a4d5-632943f45305", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-08-24", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:76920e1c-7621-46e0-9c5f-782d6faae99b", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:76920e1c-7621-46e0-9c5f-782d6faae99b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dad101a2-b874-472b-8367-35f0bdf13cef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-737588714366292529543291", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:76920e1c-7621-46e0-9c5f-782d6faae99b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-737588714366292529543291", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:76920e1c-7621-46e0-9c5f-782d6faae99b", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-09-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:73b09688-d4b9-48eb-baad-d06bd503580d", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:73b09688-d4b9-48eb-baad-d06bd503580d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dad101a2-b874-472b-8367-35f0bdf13cef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-347232196522716730229866", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:73b09688-d4b9-48eb-baad-d06bd503580d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-347232196522716730229866", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:73b09688-d4b9-48eb-baad-d06bd503580d", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-09-24", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-10", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f420664b-46b4-4b5e-905c-eeaa8f802918", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f420664b-46b4-4b5e-905c-eeaa8f802918", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dad101a2-b874-472b-8367-35f0bdf13cef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-342216975913593507088574", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f420664b-46b4-4b5e-905c-eeaa8f802918", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-342216975913593507088574", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f420664b-46b4-4b5e-905c-eeaa8f802918", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-07-24", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-10", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c9a2a270-2005-44fe-b66e-4f9124b692ac", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c9a2a270-2005-44fe-b66e-4f9124b692ac", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dad101a2-b874-472b-8367-35f0bdf13cef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-134306733370561948728619", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c9a2a270-2005-44fe-b66e-4f9124b692ac", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-134306733370561948728619", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c9a2a270-2005-44fe-b66e-4f9124b692ac", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-04-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-16", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:47f3d860-27c4-414f-909c-eb9bee5d527f", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:47f3d860-27c4-414f-909c-eb9bee5d527f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dad101a2-b874-472b-8367-35f0bdf13cef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-971360678437845520470986", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:47f3d860-27c4-414f-909c-eb9bee5d527f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-971360678437845520470986", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:47f3d860-27c4-414f-909c-eb9bee5d527f", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-07-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c493dac0-eb37-4027-b588-a48a77aac102", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c493dac0-eb37-4027-b588-a48a77aac102", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dad101a2-b874-472b-8367-35f0bdf13cef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-098867103474533400350370", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c493dac0-eb37-4027-b588-a48a77aac102", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-098867103474533400350370", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c493dac0-eb37-4027-b588-a48a77aac102", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-11-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4aa5c9da-a53b-4a8a-a3b8-fb6d50e328e2", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4aa5c9da-a53b-4a8a-a3b8-fb6d50e328e2", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4db3b19e-1152-4e4e-8b4b-63c2f4fccc5c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-153804830923848195558568", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4aa5c9da-a53b-4a8a-a3b8-fb6d50e328e2", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-153804830923848195558568", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 20, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AVTH", - "eori" : "DE012345678901" - }, - "issueDate" : "2023-05-31", - "version" : 2.1, - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.62189999999998, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 17 - } - }, - "commercial" : { - "placedOnMarket" : "2021-08-26", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-153804830923848195558568", - "key" : "PartInstanceID" - } ], - "gtin" : " 99848262", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "231922101" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-08-05", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : false, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 7.6892 ] - }, - "id" : "IU6204" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : false, - "percentage" : 5, - "name" : "Copper" - } ], - "critical" : [ "Manganese" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 102 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AYRE", - "manufacturer" : { - "facilityId" : "BPNL00000003AYRE", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4aa5c9da-a53b-4a8a-a3b8-fb6d50e328e2", - "childItems" : [ { - "catenaXId" : "urn:uuid:533543fb-5d09-4270-b4d5-0323de239d9a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:60a522d7-5b7d-420a-80a3-b196afba3f18", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d5a07cc2-eeab-464f-b4bc-2776aefac9c2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3b2a4ea2-c158-47b9-86dc-4815034a4efa", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9dbc8565-8eaa-433b-b618-4942a7137d56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:53c3aa46-9dcc-45ae-bcf5-5c7ea1e6ab28", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:26c8944d-6641-4ea2-be39-f8b3c470369a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:71f11591-3394-4ca7-a7da-8fc36dd0519c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d0297eed-e5e4-4f4f-9dcd-6c18848c6358", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8442b1ca-88be-4de6-82bb-81a67b98ae96", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1c7f8ce4-273b-4e4f-99d3-6b7e27780f78", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:60a522d7-5b7d-420a-80a3-b196afba3f18", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:60a522d7-5b7d-420a-80a3-b196afba3f18", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4aa5c9da-a53b-4a8a-a3b8-fb6d50e328e2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-412997877831197341507177", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:60a522d7-5b7d-420a-80a3-b196afba3f18", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-412997877831197341507177", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:60a522d7-5b7d-420a-80a3-b196afba3f18", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-06-30", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d5a07cc2-eeab-464f-b4bc-2776aefac9c2", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d5a07cc2-eeab-464f-b4bc-2776aefac9c2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4aa5c9da-a53b-4a8a-a3b8-fb6d50e328e2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-185855458042349784978481", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d5a07cc2-eeab-464f-b4bc-2776aefac9c2", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-185855458042349784978481", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d5a07cc2-eeab-464f-b4bc-2776aefac9c2", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-06-12", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3b2a4ea2-c158-47b9-86dc-4815034a4efa", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3b2a4ea2-c158-47b9-86dc-4815034a4efa", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4aa5c9da-a53b-4a8a-a3b8-fb6d50e328e2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-552340725739837185667529", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3b2a4ea2-c158-47b9-86dc-4815034a4efa", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-552340725739837185667529", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3b2a4ea2-c158-47b9-86dc-4815034a4efa", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-07-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9dbc8565-8eaa-433b-b618-4942a7137d56", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9dbc8565-8eaa-433b-b618-4942a7137d56", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4aa5c9da-a53b-4a8a-a3b8-fb6d50e328e2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-466776468792875850052917", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9dbc8565-8eaa-433b-b618-4942a7137d56", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-466776468792875850052917", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9dbc8565-8eaa-433b-b618-4942a7137d56", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-09-30", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:53c3aa46-9dcc-45ae-bcf5-5c7ea1e6ab28", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:53c3aa46-9dcc-45ae-bcf5-5c7ea1e6ab28", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4aa5c9da-a53b-4a8a-a3b8-fb6d50e328e2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-666267235407304522021118", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:53c3aa46-9dcc-45ae-bcf5-5c7ea1e6ab28", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-666267235407304522021118", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:53c3aa46-9dcc-45ae-bcf5-5c7ea1e6ab28", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-03-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:26c8944d-6641-4ea2-be39-f8b3c470369a", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:26c8944d-6641-4ea2-be39-f8b3c470369a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4aa5c9da-a53b-4a8a-a3b8-fb6d50e328e2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-941533910629785992353210", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:26c8944d-6641-4ea2-be39-f8b3c470369a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-941533910629785992353210", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:26c8944d-6641-4ea2-be39-f8b3c470369a", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-04-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:71f11591-3394-4ca7-a7da-8fc36dd0519c", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:71f11591-3394-4ca7-a7da-8fc36dd0519c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4aa5c9da-a53b-4a8a-a3b8-fb6d50e328e2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-228929244074760798319120", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:71f11591-3394-4ca7-a7da-8fc36dd0519c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-228929244074760798319120", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:71f11591-3394-4ca7-a7da-8fc36dd0519c", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-09-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d0297eed-e5e4-4f4f-9dcd-6c18848c6358", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d0297eed-e5e4-4f4f-9dcd-6c18848c6358", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4aa5c9da-a53b-4a8a-a3b8-fb6d50e328e2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-953551346036673804297148", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d0297eed-e5e4-4f4f-9dcd-6c18848c6358", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-953551346036673804297148", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d0297eed-e5e4-4f4f-9dcd-6c18848c6358", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-11-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8442b1ca-88be-4de6-82bb-81a67b98ae96", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8442b1ca-88be-4de6-82bb-81a67b98ae96", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4aa5c9da-a53b-4a8a-a3b8-fb6d50e328e2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-281091607339453798394747", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8442b1ca-88be-4de6-82bb-81a67b98ae96", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-281091607339453798394747", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8442b1ca-88be-4de6-82bb-81a67b98ae96", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-09-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1c7f8ce4-273b-4e4f-99d3-6b7e27780f78", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c7f8ce4-273b-4e4f-99d3-6b7e27780f78", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4aa5c9da-a53b-4a8a-a3b8-fb6d50e328e2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-989061057060765794060866", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1c7f8ce4-273b-4e4f-99d3-6b7e27780f78", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-989061057060765794060866", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c7f8ce4-273b-4e4f-99d3-6b7e27780f78", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-04-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:35e09b92-b06d-4d2d-b412-d342c0315b0c", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:35e09b92-b06d-4d2d-b412-d342c0315b0c", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4db3b19e-1152-4e4e-8b4b-63c2f4fccc5c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-746635233543271919930477", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:35e09b92-b06d-4d2d-b412-d342c0315b0c", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-746635233543271919930477", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 86, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AVTH", - "eori" : "DE012345678901" - }, - "issueDate" : "2022-08-21", - "version" : 1.2, - "status" : "Expired" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.6643, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 19 - } - }, - "commercial" : { - "placedOnMarket" : "2022-07-14", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-746635233543271919930477", - "key" : "PartInstanceID" - } ], - "gtin" : " 99302090", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "853294242" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "SubstanceOfConcern", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-04-24", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : false, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 4.8261 ] - }, - "id" : "WP4437" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : false, - "percentage" : 5, - "name" : "Cobalt" - } ], - "critical" : [ "Cobalt" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 103 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AXS3", - "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:35e09b92-b06d-4d2d-b412-d342c0315b0c", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f7817a1f-11ca-40e0-abd8-25a4c2dfb5c1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1f8f62d7-214f-45cd-8ebf-10c65aec0e56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e8e746e9-1a2c-490a-8887-fa2c745c4730", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d006e247-d28a-425c-b135-5e41b2686c5e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6cbbc979-2131-4018-a2c7-a3524f9b2c9e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7a2857ee-cca8-4c53-9179-85f64cba99bf", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f4ff2137-8f91-403a-98ae-d03279d828ea", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:dee1c53a-c476-4356-ab7f-24b2a4d83b24", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0a6cdb07-774e-4598-9c5d-b763e409a922", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:57536826-9412-4605-b05f-1824ca63ec29", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Sealant" - } - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:514118a0-d9eb-48a8-9a13-a682378023a0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "childItems" : [ ] - } ] - }, { - "catenaXId" : "urn:uuid:f7817a1f-11ca-40e0-abd8-25a4c2dfb5c1", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f7817a1f-11ca-40e0-abd8-25a4c2dfb5c1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:35e09b92-b06d-4d2d-b412-d342c0315b0c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-551394632391596104461139", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f7817a1f-11ca-40e0-abd8-25a4c2dfb5c1", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-551394632391596104461139", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f7817a1f-11ca-40e0-abd8-25a4c2dfb5c1", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-08-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1f8f62d7-214f-45cd-8ebf-10c65aec0e56", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1f8f62d7-214f-45cd-8ebf-10c65aec0e56", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:35e09b92-b06d-4d2d-b412-d342c0315b0c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-854318422546351188025526", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1f8f62d7-214f-45cd-8ebf-10c65aec0e56", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-854318422546351188025526", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1f8f62d7-214f-45cd-8ebf-10c65aec0e56", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-01-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e8e746e9-1a2c-490a-8887-fa2c745c4730", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e8e746e9-1a2c-490a-8887-fa2c745c4730", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:35e09b92-b06d-4d2d-b412-d342c0315b0c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-377043117434258926720581", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e8e746e9-1a2c-490a-8887-fa2c745c4730", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-377043117434258926720581", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e8e746e9-1a2c-490a-8887-fa2c745c4730", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d006e247-d28a-425c-b135-5e41b2686c5e", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d006e247-d28a-425c-b135-5e41b2686c5e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:35e09b92-b06d-4d2d-b412-d342c0315b0c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-151996518258598385941198", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d006e247-d28a-425c-b135-5e41b2686c5e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-151996518258598385941198", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d006e247-d28a-425c-b135-5e41b2686c5e", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-10-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6cbbc979-2131-4018-a2c7-a3524f9b2c9e", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6cbbc979-2131-4018-a2c7-a3524f9b2c9e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:35e09b92-b06d-4d2d-b412-d342c0315b0c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-462634120051138851960430", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6cbbc979-2131-4018-a2c7-a3524f9b2c9e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-462634120051138851960430", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6cbbc979-2131-4018-a2c7-a3524f9b2c9e", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-05-31", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-31", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7a2857ee-cca8-4c53-9179-85f64cba99bf", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7a2857ee-cca8-4c53-9179-85f64cba99bf", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:35e09b92-b06d-4d2d-b412-d342c0315b0c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-214951975426824416669873", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7a2857ee-cca8-4c53-9179-85f64cba99bf", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-214951975426824416669873", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7a2857ee-cca8-4c53-9179-85f64cba99bf", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-09-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f4ff2137-8f91-403a-98ae-d03279d828ea", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f4ff2137-8f91-403a-98ae-d03279d828ea", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:35e09b92-b06d-4d2d-b412-d342c0315b0c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-619187568082844584358355", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f4ff2137-8f91-403a-98ae-d03279d828ea", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-619187568082844584358355", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f4ff2137-8f91-403a-98ae-d03279d828ea", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-03-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:dee1c53a-c476-4356-ab7f-24b2a4d83b24", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:dee1c53a-c476-4356-ab7f-24b2a4d83b24", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:35e09b92-b06d-4d2d-b412-d342c0315b0c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-638979519755392106927480", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:dee1c53a-c476-4356-ab7f-24b2a4d83b24", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-638979519755392106927480", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:dee1c53a-c476-4356-ab7f-24b2a4d83b24", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-01-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0a6cdb07-774e-4598-9c5d-b763e409a922", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0a6cdb07-774e-4598-9c5d-b763e409a922", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:35e09b92-b06d-4d2d-b412-d342c0315b0c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-891380823764035363708046", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0a6cdb07-774e-4598-9c5d-b763e409a922", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-891380823764035363708046", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0a6cdb07-774e-4598-9c5d-b763e409a922", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-01-12", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-04", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:57536826-9412-4605-b05f-1824ca63ec29", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:57536826-9412-4605-b05f-1824ca63ec29", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:35e09b92-b06d-4d2d-b412-d342c0315b0c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-402191697052155227498974", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:57536826-9412-4605-b05f-1824ca63ec29", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-402191697052155227498974", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:57536826-9412-4605-b05f-1824ca63ec29", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-06-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-31", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6ebaa472-3f9d-4c80-bcaa-2cee3eaf3fb1", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6ebaa472-3f9d-4c80-bcaa-2cee3eaf3fb1", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4db3b19e-1152-4e4e-8b4b-63c2f4fccc5c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-470832655454682644320103", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6ebaa472-3f9d-4c80-bcaa-2cee3eaf3fb1", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-470832655454682644320103", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 4, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 69, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AVTH", - "eori" : "DE012345678901" - }, - "issueDate" : "2023-09-13", - "version" : 2.5, - "status" : "Expired" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.6269, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 18 - } - }, - "commercial" : { - "placedOnMarket" : "2023-03-16", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-470832655454682644320103", - "key" : "PartInstanceID" - } ], - "gtin" : " 58663830", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "240238956" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-09-22", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : false, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 3.9593 ] - }, - "id" : "TU7044" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : false, - "percentage" : 5, - "name" : "Steel" - } ], - "critical" : [ "Cobalt" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 123 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AYRE", - "manufacturer" : { - "facilityId" : "BPNL00000003AYRE", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6ebaa472-3f9d-4c80-bcaa-2cee3eaf3fb1", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5ecb3cd3-fe55-4c53-a4a2-60fef5c79318", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:eeeddc84-3f30-4571-a8ed-200b6948c12b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e85e136c-966a-4d5e-9665-d71fba485ed8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7ca43d7b-620e-4b03-8464-62aadf96f91e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b38663d0-68f0-4d16-a73f-ca6dbbd84780", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:aca74f12-3e7f-4b27-b0d9-4392f4740a38", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3927a152-dd87-4eae-a52c-caec50c9bdf7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7ca976d7-7222-49f6-afd4-77344db82576", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8efaad10-5f1c-445f-8faf-3381c5c29608", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3970962c-e369-4559-bab7-1cbe26b0a6b6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:5ecb3cd3-fe55-4c53-a4a2-60fef5c79318", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5ecb3cd3-fe55-4c53-a4a2-60fef5c79318", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6ebaa472-3f9d-4c80-bcaa-2cee3eaf3fb1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-462568479765711332259688", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5ecb3cd3-fe55-4c53-a4a2-60fef5c79318", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-462568479765711332259688", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5ecb3cd3-fe55-4c53-a4a2-60fef5c79318", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-12-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:eeeddc84-3f30-4571-a8ed-200b6948c12b", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:eeeddc84-3f30-4571-a8ed-200b6948c12b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6ebaa472-3f9d-4c80-bcaa-2cee3eaf3fb1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-943935517036589710781761", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:eeeddc84-3f30-4571-a8ed-200b6948c12b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-943935517036589710781761", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:eeeddc84-3f30-4571-a8ed-200b6948c12b", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-10-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e85e136c-966a-4d5e-9665-d71fba485ed8", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e85e136c-966a-4d5e-9665-d71fba485ed8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6ebaa472-3f9d-4c80-bcaa-2cee3eaf3fb1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-282333356931591597979379", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e85e136c-966a-4d5e-9665-d71fba485ed8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-282333356931591597979379", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e85e136c-966a-4d5e-9665-d71fba485ed8", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-08-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7ca43d7b-620e-4b03-8464-62aadf96f91e", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7ca43d7b-620e-4b03-8464-62aadf96f91e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6ebaa472-3f9d-4c80-bcaa-2cee3eaf3fb1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-538336242476710616209368", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7ca43d7b-620e-4b03-8464-62aadf96f91e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-538336242476710616209368", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7ca43d7b-620e-4b03-8464-62aadf96f91e", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-02-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b38663d0-68f0-4d16-a73f-ca6dbbd84780", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b38663d0-68f0-4d16-a73f-ca6dbbd84780", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6ebaa472-3f9d-4c80-bcaa-2cee3eaf3fb1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-864510078091895214070936", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b38663d0-68f0-4d16-a73f-ca6dbbd84780", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-864510078091895214070936", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b38663d0-68f0-4d16-a73f-ca6dbbd84780", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-12-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:aca74f12-3e7f-4b27-b0d9-4392f4740a38", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:aca74f12-3e7f-4b27-b0d9-4392f4740a38", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6ebaa472-3f9d-4c80-bcaa-2cee3eaf3fb1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-381644896168766946852867", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:aca74f12-3e7f-4b27-b0d9-4392f4740a38", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-381644896168766946852867", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:aca74f12-3e7f-4b27-b0d9-4392f4740a38", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-09-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-06", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3927a152-dd87-4eae-a52c-caec50c9bdf7", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3927a152-dd87-4eae-a52c-caec50c9bdf7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6ebaa472-3f9d-4c80-bcaa-2cee3eaf3fb1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-561850148479758672609516", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3927a152-dd87-4eae-a52c-caec50c9bdf7", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-561850148479758672609516", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3927a152-dd87-4eae-a52c-caec50c9bdf7", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-05-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7ca976d7-7222-49f6-afd4-77344db82576", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7ca976d7-7222-49f6-afd4-77344db82576", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6ebaa472-3f9d-4c80-bcaa-2cee3eaf3fb1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-078594645255533340676412", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7ca976d7-7222-49f6-afd4-77344db82576", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-078594645255533340676412", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7ca976d7-7222-49f6-afd4-77344db82576", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-05-14", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-10", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8efaad10-5f1c-445f-8faf-3381c5c29608", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8efaad10-5f1c-445f-8faf-3381c5c29608", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6ebaa472-3f9d-4c80-bcaa-2cee3eaf3fb1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-844919288970361032140868", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8efaad10-5f1c-445f-8faf-3381c5c29608", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-844919288970361032140868", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8efaad10-5f1c-445f-8faf-3381c5c29608", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-08-14", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3970962c-e369-4559-bab7-1cbe26b0a6b6", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3970962c-e369-4559-bab7-1cbe26b0a6b6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6ebaa472-3f9d-4c80-bcaa-2cee3eaf3fb1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-358608735825775469184056", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3970962c-e369-4559-bab7-1cbe26b0a6b6", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-358608735825775469184056", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3970962c-e369-4559-bab7-1cbe26b0a6b6", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-08-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:74cdf13c-a1db-4281-a4b7-ab4bb0abbcf3", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:74cdf13c-a1db-4281-a4b7-ab4bb0abbcf3", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4db3b19e-1152-4e4e-8b4b-63c2f4fccc5c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-520999189656487806108000", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:74cdf13c-a1db-4281-a4b7-ab4bb0abbcf3", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-520999189656487806108000", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 3, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AVTH", - "eori" : "DE012345678901" - }, - "issueDate" : "2021-01-08", - "version" : 1.4, - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.62279999999998, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 17 - } - }, - "commercial" : { - "placedOnMarket" : "2020-01-24", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-520999189656487806108000", - "key" : "PartInstanceID" - } ], - "gtin" : " 99748207", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "666191255" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Passport", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2021-01-12", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : false, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 1.0956 ] - }, - "id" : "CY1823" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : true, - "renewable" : false, - "percentage" : 5, - "name" : "Others" - } ], - "critical" : [ "Lithium" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 121 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003B2OM", - "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:74cdf13c-a1db-4281-a4b7-ab4bb0abbcf3", - "childItems" : [ { - "catenaXId" : "urn:uuid:533543fb-5d09-4270-b4d5-0323de239d9a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b2bc89b4-8561-409b-bc97-5ad8bdb5aec0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e0e5f8da-a96e-48b7-be61-ec095e908e6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2e5d7196-8b89-487a-b32b-dddb02dde8df", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2d1b9029-6f99-4ec2-9c73-61b6fdb8c46f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:35af75da-bdfa-49ce-82a5-c6e820f8f6b9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3137f97e-e491-401f-9e0a-1a228ed2e82e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8642a39c-fb2c-4f62-9e24-3084d84b8cde", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b7e53300-e7d4-4f8d-b573-d15e97d723f8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a77a6b9a-8c15-46e2-aff4-64ea911473cc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e8f81ac1-9567-4e46-ac6c-47f49100a70f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:b2bc89b4-8561-409b-bc97-5ad8bdb5aec0", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b2bc89b4-8561-409b-bc97-5ad8bdb5aec0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:74cdf13c-a1db-4281-a4b7-ab4bb0abbcf3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-037111971642316650055027", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b2bc89b4-8561-409b-bc97-5ad8bdb5aec0", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-037111971642316650055027", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b2bc89b4-8561-409b-bc97-5ad8bdb5aec0", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-02-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e0e5f8da-a96e-48b7-be61-ec095e908e6d", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e0e5f8da-a96e-48b7-be61-ec095e908e6d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:74cdf13c-a1db-4281-a4b7-ab4bb0abbcf3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-683841659233207539734553", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e0e5f8da-a96e-48b7-be61-ec095e908e6d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-683841659233207539734553", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e0e5f8da-a96e-48b7-be61-ec095e908e6d", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-04-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-10", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2e5d7196-8b89-487a-b32b-dddb02dde8df", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2e5d7196-8b89-487a-b32b-dddb02dde8df", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:74cdf13c-a1db-4281-a4b7-ab4bb0abbcf3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-860944356997240799128194", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2e5d7196-8b89-487a-b32b-dddb02dde8df", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-860944356997240799128194", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2e5d7196-8b89-487a-b32b-dddb02dde8df", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-05-03", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-06", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2d1b9029-6f99-4ec2-9c73-61b6fdb8c46f", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2d1b9029-6f99-4ec2-9c73-61b6fdb8c46f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:74cdf13c-a1db-4281-a4b7-ab4bb0abbcf3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-416499128147172927197311", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2d1b9029-6f99-4ec2-9c73-61b6fdb8c46f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-416499128147172927197311", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2d1b9029-6f99-4ec2-9c73-61b6fdb8c46f", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-01-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:35af75da-bdfa-49ce-82a5-c6e820f8f6b9", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:35af75da-bdfa-49ce-82a5-c6e820f8f6b9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:74cdf13c-a1db-4281-a4b7-ab4bb0abbcf3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-648342552492811688611644", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:35af75da-bdfa-49ce-82a5-c6e820f8f6b9", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-648342552492811688611644", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:35af75da-bdfa-49ce-82a5-c6e820f8f6b9", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-11-12", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-10", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3137f97e-e491-401f-9e0a-1a228ed2e82e", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3137f97e-e491-401f-9e0a-1a228ed2e82e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:74cdf13c-a1db-4281-a4b7-ab4bb0abbcf3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-537787400788185775252149", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3137f97e-e491-401f-9e0a-1a228ed2e82e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-537787400788185775252149", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3137f97e-e491-401f-9e0a-1a228ed2e82e", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-04-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-20", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8642a39c-fb2c-4f62-9e24-3084d84b8cde", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8642a39c-fb2c-4f62-9e24-3084d84b8cde", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:74cdf13c-a1db-4281-a4b7-ab4bb0abbcf3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-104231021832633972185117", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8642a39c-fb2c-4f62-9e24-3084d84b8cde", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-104231021832633972185117", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8642a39c-fb2c-4f62-9e24-3084d84b8cde", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-06-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b7e53300-e7d4-4f8d-b573-d15e97d723f8", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b7e53300-e7d4-4f8d-b573-d15e97d723f8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:74cdf13c-a1db-4281-a4b7-ab4bb0abbcf3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-932653127643874343323541", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b7e53300-e7d4-4f8d-b573-d15e97d723f8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-932653127643874343323541", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b7e53300-e7d4-4f8d-b573-d15e97d723f8", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-03-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-04", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a77a6b9a-8c15-46e2-aff4-64ea911473cc", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a77a6b9a-8c15-46e2-aff4-64ea911473cc", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:74cdf13c-a1db-4281-a4b7-ab4bb0abbcf3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-406434712699172778843172", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a77a6b9a-8c15-46e2-aff4-64ea911473cc", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-406434712699172778843172", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a77a6b9a-8c15-46e2-aff4-64ea911473cc", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-08-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e8f81ac1-9567-4e46-ac6c-47f49100a70f", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e8f81ac1-9567-4e46-ac6c-47f49100a70f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:74cdf13c-a1db-4281-a4b7-ab4bb0abbcf3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-990429219318363062301435", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e8f81ac1-9567-4e46-ac6c-47f49100a70f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-990429219318363062301435", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e8f81ac1-9567-4e46-ac6c-47f49100a70f", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-05-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-16", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Pick-up", - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "engine" : { - "size" : 2998, - "power" : 143 - }, - "emptyWeight" : 1.73, - "fuel" : "Elektro", - "vehicleModel" : "Vehicle Fully Electric", - "productionDateGMT" : "2010-01-01", - "equipmentVariants" : [ { - "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" - }, { - "code" : "A01CR", - "description" : "remote engine start", - "group" : "special equipment" - } ], - "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", - "mileage" : [ { - "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2016-01-21", - "mileageDistance" : 120000 - } ] - } ], - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "YL-94", - "key" : "manufacturerPartId" - }, { - "value" : "OMBCNCOGXRKQRVWWZ", - "key" : "partInstanceId" - }, { - "value" : "OMBCNCOGXRKQRVWWZ", - "key" : "van" - } ], - "manufacturingInformation" : { - "date" : "2013-04-14T01:47:21.000Z", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "partTypeInformation" : { - "manufacturerPartId" : "YL-94", - "classification" : "product", - "nameAtManufacturer" : "Vehicle Fully Electric" - } - } ], - "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" : 43, - "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" : 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" : 39, - "materialClass" : "0.7", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 109.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "W123" - }, { - "materialName" : "Glue", - "recycledContent" : 52, - "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" : 42, - "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" : 42, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 5.12 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "TEX1" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "childItems" : [ { - "catenaXId" : "urn:uuid:64bd12b6-15bc-48e0-aaae-2f15ad62b88a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2d49acdb-558f-4647-b4ec-f30716599cb2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:59260af6-ed4b-4e5f-a2b8-64d5fdcd4ce9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:476da4b6-239a-4a48-acdb-24364e6f8101", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9ef7cb4b-71d9-4cff-be2f-788dd84d0176", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:407b4498-fc96-4904-95e6-8f84e996ed7b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:878b346f-6519-40c0-9e72-604938fd8f51", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7df96f1f-4df8-433d-a77c-cbf67d38c375", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0b022483-f7b4-4dc7-a516-b77928d25ca6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7c03af8c-ee80-478e-a5e1-0c005c065a7f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:764ca789-a523-4990-82e7-c36194ad6004", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:58f42543-2c5a-42df-9e40-c85a36b70aca", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f50de3c5-8675-4d96-9b38-49743253b227", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d5f4a050-8f74-452c-8027-e34b6412cdc1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3e2d7dd6-30e0-474a-9cd8-f03e5e17b174", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5080cc24-a422-4a90-9069-ae91f348ae3c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:083ea42a-b678-4833-92c0-7238aebf8caf", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0d859b76-ca5e-492c-bdda-40d67a255b72", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7af5d72e-503f-41f3-b5fb-ed10950178e3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:864f5a26-9a0d-4344-b41e-42c0558f1936", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:eb181094-be6b-49dc-b00b-8647239a88e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:12f3a65a-b97a-4b4e-b653-0e1d53159198", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:edb5b1bc-823d-4afa-9698-1a9236b7735e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:57945ff6-3c56-4716-8623-ecb3a2dda8a4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3bb3e2cc-d376-4a07-9e84-e3b39d4c124b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:64ec096b-29a8-477e-8f52-46d62284a4c5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a276e175-5bc9-4a18-877e-2ab413a2635c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:129ea270-234e-40e3-a3f4-d51c5d20d9af", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9e2ae841-d795-4ed7-8f0a-07503e50a341", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e95f3ff2-c5e7-49a5-873b-aee2728917d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B2OM", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f13d12e0-0034-488e-92d8-eefe71bcdbcb", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B5MJ", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:62abade2-d330-44e4-b6c7-94c77df9250d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:64bd12b6-15bc-48e0-aaae-2f15ad62b88a", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:64bd12b6-15bc-48e0-aaae-2f15ad62b88a", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "73849201-61", - "key" : "manufacturerPartId" - }, { - "value" : "NO-405977378019160746410960", - "key" : "partInstanceId" - }, { - "value" : "Company 10", - "key" : "company" - }, { - "value" : "Brand 10", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:64bd12b6-15bc-48e0-aaae-2f15ad62b88a", - "partTypeInformation" : { - "manufacturerPartId" : "73849201-61", - "customerPartId" : "73849201-61", - "classification" : "component", - "nameAtManufacturer" : "Catalysator", - "nameAtCustomer" : "Catalysator" - } - } ] - }, { - "catenaXId" : "urn:uuid:2d49acdb-558f-4647-b4ec-f30716599cb2", - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2d49acdb-558f-4647-b4ec-f30716599cb2", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "22782277-50", - "key" : "manufacturerPartId" - }, { - "value" : "NO-216193781052734299612334", - "key" : "partInstanceId" - }, { - "value" : "Company 3", - "key" : "company" - }, { - "value" : "Brand 3", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2d49acdb-558f-4647-b4ec-f30716599cb2", - "partTypeInformation" : { - "manufacturerPartId" : "22782277-50", - "customerPartId" : "22782277-50", - "classification" : "component", - "nameAtManufacturer" : "Door f-l", - "nameAtCustomer" : "Door front-left" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2d49acdb-558f-4647-b4ec-f30716599cb2", - "childItems" : [ { - "catenaXId" : "urn:uuid:7036c72c-2433-4f98-9484-9670019c6d1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:7036c72c-2433-4f98-9484-9670019c6d1e", - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7036c72c-2433-4f98-9484-9670019c6d1e", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:2d49acdb-558f-4647-b4ec-f30716599cb2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-489879690131858823053058", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7036c72c-2433-4f98-9484-9670019c6d1e", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "70265121YJP", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:7036c72c-2433-4f98-9484-9670019c6d1e", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:59260af6-ed4b-4e5f-a2b8-64d5fdcd4ce9", - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:59260af6-ed4b-4e5f-a2b8-64d5fdcd4ce9", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "95657362-64", - "key" : "manufacturerPartId" - }, { - "value" : "NO-608447113619918741907093", - "key" : "partInstanceId" - }, { - "value" : "Company 4", - "key" : "company" - }, { - "value" : "Brand 4", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:59260af6-ed4b-4e5f-a2b8-64d5fdcd4ce9", - "partTypeInformation" : { - "manufacturerPartId" : "33740332-54", - "customerPartId" : "33740332-54", - "classification" : "component", - "nameAtManufacturer" : "Door f-r", - "nameAtCustomer" : "Door front-right" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:59260af6-ed4b-4e5f-a2b8-64d5fdcd4ce9", - "childItems" : [ { - "catenaXId" : "urn:uuid:83a66a51-3cf8-4248-bd94-9099da110b0b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:83a66a51-3cf8-4248-bd94-9099da110b0b", - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:83a66a51-3cf8-4248-bd94-9099da110b0b", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:59260af6-ed4b-4e5f-a2b8-64d5fdcd4ce9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-844921235454372054401442", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:83a66a51-3cf8-4248-bd94-9099da110b0b", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "41574111HLD", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:83a66a51-3cf8-4248-bd94-9099da110b0b", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:476da4b6-239a-4a48-acdb-24364e6f8101", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:476da4b6-239a-4a48-acdb-24364e6f8101", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "15635759-16", - "key" : "manufacturerPartId" - }, { - "value" : "NO-319971086265044377070632", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:476da4b6-239a-4a48-acdb-24364e6f8101", - "partTypeInformation" : { - "manufacturerPartId" : "15635759-16", - "customerPartId" : "15635759-16", - "classification" : "component", - "nameAtManufacturer" : "Door r-l", - "nameAtCustomer" : "Door rear-left" - } - } ] - }, { - "catenaXId" : "urn:uuid:9ef7cb4b-71d9-4cff-be2f-788dd84d0176", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9ef7cb4b-71d9-4cff-be2f-788dd84d0176", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "28673126-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-222949317388546108859431", - "key" : "partInstanceId" - }, { - "value" : "Company 5", - "key" : "company" - }, { - "value" : "Brand 5", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9ef7cb4b-71d9-4cff-be2f-788dd84d0176", - "partTypeInformation" : { - "manufacturerPartId" : "28673126-98", - "customerPartId" : "28673126-98", - "classification" : "component", - "nameAtManufacturer" : "Door r-r", - "nameAtCustomer" : "Door rear-right" - } - } ] - }, { - "catenaXId" : "urn:uuid:407b4498-fc96-4904-95e6-8f84e996ed7b", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:407b4498-fc96-4904-95e6-8f84e996ed7b", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "94421589-82", - "key" : "manufacturerPartId" - }, { - "value" : "NO-459203821543343245115816", - "key" : "partInstanceId" - }, { - "value" : "Company 6", - "key" : "company" - }, { - "value" : "Brand 6", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:407b4498-fc96-4904-95e6-8f84e996ed7b", - "partTypeInformation" : { - "manufacturerPartId" : "94421589-82", - "customerPartId" : "94421589-82", - "classification" : "component", - "nameAtManufacturer" : "Engine hood", - "nameAtCustomer" : "Engine hood" - } - } ] - }, { - "catenaXId" : "urn:uuid:878b346f-6519-40c0-9e72-604938fd8f51", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:878b346f-6519-40c0-9e72-604938fd8f51", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "85023955-75", - "key" : "manufacturerPartId" - }, { - "value" : "NO-022908518678659870653863", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:878b346f-6519-40c0-9e72-604938fd8f51", - "partTypeInformation" : { - "manufacturerPartId" : "85023955-75", - "customerPartId" : "85023955-75", - "classification" : "component", - "nameAtManufacturer" : "Tailgate", - "nameAtCustomer" : "Tailgate" - } - } ] - }, { - "catenaXId" : "urn:uuid:7df96f1f-4df8-433d-a77c-cbf67d38c375", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7df96f1f-4df8-433d-a77c-cbf67d38c375", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "13769860-47", - "key" : "manufacturerPartId" - }, { - "value" : "NO-655081340630034132662186", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7df96f1f-4df8-433d-a77c-cbf67d38c375", - "partTypeInformation" : { - "manufacturerPartId" : "13769860-47", - "customerPartId" : "13769860-47", - "classification" : "component", - "nameAtManufacturer" : "Fender left", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:0b022483-f7b4-4dc7-a516-b77928d25ca6", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0b022483-f7b4-4dc7-a516-b77928d25ca6", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "36643162-35", - "key" : "manufacturerPartId" - }, { - "value" : "NO-197821456321981584133409", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0b022483-f7b4-4dc7-a516-b77928d25ca6", - "partTypeInformation" : { - "manufacturerPartId" : "36643162-35", - "customerPartId" : "36643162-35", - "classification" : "component", - "nameAtManufacturer" : "Fender right", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:7c03af8c-ee80-478e-a5e1-0c005c065a7f", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7c03af8c-ee80-478e-a5e1-0c005c065a7f", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "54165444-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-213190663644179365520315", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7c03af8c-ee80-478e-a5e1-0c005c065a7f", - "partTypeInformation" : { - "manufacturerPartId" : "54165444-59", - "customerPartId" : "54165444-59", - "classification" : "component", - "nameAtManufacturer" : "Bumper front", - "nameAtCustomer" : "Bumper front" - } - } ] - }, { - "catenaXId" : "urn:uuid:764ca789-a523-4990-82e7-c36194ad6004", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:764ca789-a523-4990-82e7-c36194ad6004", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "22768257-25", - "key" : "manufacturerPartId" - }, { - "value" : "NO-197667956958893777979553", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:764ca789-a523-4990-82e7-c36194ad6004", - "partTypeInformation" : { - "manufacturerPartId" : "22768257-25", - "customerPartId" : "22768257-25", - "classification" : "component", - "nameAtManufacturer" : "Bumper rear", - "nameAtCustomer" : "Bumper rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:58f42543-2c5a-42df-9e40-c85a36b70aca", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:58f42543-2c5a-42df-9e40-c85a36b70aca", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "65529521-37", - "key" : "manufacturerPartId" - }, { - "value" : "NO-491409846694633578009700", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:58f42543-2c5a-42df-9e40-c85a36b70aca", - "partTypeInformation" : { - "manufacturerPartId" : "65529521-37", - "customerPartId" : "65529521-37", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror left", - "nameAtCustomer" : "Exterior mirror left" - } - } ] - }, { - "catenaXId" : "urn:uuid:f50de3c5-8675-4d96-9b38-49743253b227", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f50de3c5-8675-4d96-9b38-49743253b227", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "58471477-24", - "key" : "manufacturerPartId" - }, { - "value" : "NO-793465139390246427342474", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f50de3c5-8675-4d96-9b38-49743253b227", - "partTypeInformation" : { - "manufacturerPartId" : "58471477-24", - "customerPartId" : "58471477-24", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror right", - "nameAtCustomer" : "Exterior mirror right" - } - } ] - }, { - "catenaXId" : "urn:uuid:d5f4a050-8f74-452c-8027-e34b6412cdc1", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d5f4a050-8f74-452c-8027-e34b6412cdc1", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "09002013-68", - "key" : "manufacturerPartId" - }, { - "value" : "NO-561893470642517811628793", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d5f4a050-8f74-452c-8027-e34b6412cdc1", - "partTypeInformation" : { - "manufacturerPartId" : "09002013-68", - "customerPartId" : "09002013-68", - "classification" : "component", - "nameAtManufacturer" : "Trailer coupling", - "nameAtCustomer" : "Tailer coupling" - } - } ] - }, { - "catenaXId" : "urn:uuid:3e2d7dd6-30e0-474a-9cd8-f03e5e17b174", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3e2d7dd6-30e0-474a-9cd8-f03e5e17b174", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "43501996-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-137853300458182804041858", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3e2d7dd6-30e0-474a-9cd8-f03e5e17b174", - "partTypeInformation" : { - "manufacturerPartId" : "43501996-98", - "customerPartId" : "43501996-98", - "classification" : "component", - "nameAtManufacturer" : "Dashboard", - "nameAtCustomer" : "Dashboard" - } - } ] - }, { - "catenaXId" : "urn:uuid:5080cc24-a422-4a90-9069-ae91f348ae3c", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5080cc24-a422-4a90-9069-ae91f348ae3c", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "77795937-13", - "key" : "manufacturerPartId" - }, { - "value" : "NO-889273131028553760759237", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5080cc24-a422-4a90-9069-ae91f348ae3c", - "partTypeInformation" : { - "manufacturerPartId" : "77795937-13", - "customerPartId" : "77795937-13", - "classification" : "component", - "nameAtManufacturer" : "Steering wheel", - "nameAtCustomer" : "Steering wheel" - } - } ] - }, { - "catenaXId" : "urn:uuid:083ea42a-b678-4833-92c0-7238aebf8caf", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:083ea42a-b678-4833-92c0-7238aebf8caf", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "20125432-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-168023359247873586494513", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:083ea42a-b678-4833-92c0-7238aebf8caf", - "partTypeInformation" : { - "manufacturerPartId" : "20125432-59", - "customerPartId" : "20125432-59", - "classification" : "component", - "nameAtManufacturer" : "Indicator left", - "nameAtCustomer" : "Indicator left" - } - } ] - }, { - "catenaXId" : "urn:uuid:0d859b76-ca5e-492c-bdda-40d67a255b72", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0d859b76-ca5e-492c-bdda-40d67a255b72", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "19073706-76", - "key" : "manufacturerPartId" - }, { - "value" : "NO-474002736636737482063854", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0d859b76-ca5e-492c-bdda-40d67a255b72", - "partTypeInformation" : { - "manufacturerPartId" : "19073706-76", - "customerPartId" : "19073706-76", - "classification" : "component", - "nameAtManufacturer" : "Indicator right", - "nameAtCustomer" : "Indicator right" - } - } ] - }, { - "catenaXId" : "urn:uuid:7af5d72e-503f-41f3-b5fb-ed10950178e3", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7af5d72e-503f-41f3-b5fb-ed10950178e3", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "45415162-57", - "key" : "manufacturerPartId" - }, { - "value" : "NO-312433374565327953313586", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7af5d72e-503f-41f3-b5fb-ed10950178e3", - "partTypeInformation" : { - "manufacturerPartId" : "45415162-57", - "customerPartId" : "45415162-57", - "classification" : "component", - "nameAtManufacturer" : "Led headlight", - "nameAtCustomer" : "Led headlight" - } - } ] - }, { - "catenaXId" : "urn:uuid:864f5a26-9a0d-4344-b41e-42c0558f1936", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:864f5a26-9a0d-4344-b41e-42c0558f1936", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "78141846-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-768639051253980661807899", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:864f5a26-9a0d-4344-b41e-42c0558f1936", - "partTypeInformation" : { - "manufacturerPartId" : "78141846-87", - "customerPartId" : "78141846-87", - "classification" : "component", - "nameAtManufacturer" : "Starter motor", - "nameAtCustomer" : "Starter motor" - } - } ] - }, { - "catenaXId" : "urn:uuid:eb181094-be6b-49dc-b00b-8647239a88e9", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:eb181094-be6b-49dc-b00b-8647239a88e9", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "81324139-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-890760095775994397661708", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:eb181094-be6b-49dc-b00b-8647239a88e9", - "partTypeInformation" : { - "manufacturerPartId" : "81324139-23", - "customerPartId" : "81324139-23", - "classification" : "component", - "nameAtManufacturer" : "Alternator", - "nameAtCustomer" : "Alternator" - } - } ] - }, { - "catenaXId" : "urn:uuid:12f3a65a-b97a-4b4e-b653-0e1d53159198", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:12f3a65a-b97a-4b4e-b653-0e1d53159198", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "57929013-09", - "key" : "manufacturerPartId" - }, { - "value" : "NO-392629333423795523078817", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:12f3a65a-b97a-4b4e-b653-0e1d53159198", - "partTypeInformation" : { - "manufacturerPartId" : "57929013-09", - "customerPartId" : "57929013-09", - "classification" : "component", - "nameAtManufacturer" : "AC compressor", - "nameAtCustomer" : "Air conditioning compressor" - } - } ] - }, { - "catenaXId" : "urn:uuid:edb5b1bc-823d-4afa-9698-1a9236b7735e", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:edb5b1bc-823d-4afa-9698-1a9236b7735e", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "61184040-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-373829741106551658327099", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:edb5b1bc-823d-4afa-9698-1a9236b7735e", - "partTypeInformation" : { - "manufacturerPartId" : "61184040-23", - "customerPartId" : "61184040-23", - "classification" : "component", - "nameAtManufacturer" : "Taillight rear", - "nameAtCustomer" : "Taillight rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:57945ff6-3c56-4716-8623-ecb3a2dda8a4", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:57945ff6-3c56-4716-8623-ecb3a2dda8a4", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "78744126-74", - "key" : "manufacturerPartId" - }, { - "value" : "NO-475505673636419668831021", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:57945ff6-3c56-4716-8623-ecb3a2dda8a4", - "partTypeInformation" : { - "manufacturerPartId" : "78744126-74", - "customerPartId" : "78744126-74", - "classification" : "component", - "nameAtManufacturer" : "Taillight front", - "nameAtCustomer" : "Taillight front" - } - } ] - }, { - "catenaXId" : "urn:uuid:3bb3e2cc-d376-4a07-9e84-e3b39d4c124b", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3bb3e2cc-d376-4a07-9e84-e3b39d4c124b", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "12093297-03", - "key" : "manufacturerPartId" - }, { - "value" : "NO-771642210838607254436658", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3bb3e2cc-d376-4a07-9e84-e3b39d4c124b", - "partTypeInformation" : { - "manufacturerPartId" : "12093297-03", - "customerPartId" : "12093297-03", - "classification" : "component", - "nameAtManufacturer" : "Axle part front", - "nameAtCustomer" : "Axle part front" - } - } ] - }, { - "catenaXId" : "urn:uuid:64ec096b-29a8-477e-8f52-46d62284a4c5", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:64ec096b-29a8-477e-8f52-46d62284a4c5", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "88111709-49", - "key" : "manufacturerPartId" - }, { - "value" : "NO-362183802978792324949084", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:64ec096b-29a8-477e-8f52-46d62284a4c5", - "partTypeInformation" : { - "manufacturerPartId" : "88111709-49", - "customerPartId" : "88111709-49", - "classification" : "component", - "nameAtManufacturer" : "Axle part rear", - "nameAtCustomer" : "Axle part rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:a276e175-5bc9-4a18-877e-2ab413a2635c", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a276e175-5bc9-4a18-877e-2ab413a2635c", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "00871379-44", - "key" : "manufacturerPartId" - }, { - "value" : "NO-740556174638531722921267", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a276e175-5bc9-4a18-877e-2ab413a2635c", - "partTypeInformation" : { - "manufacturerPartId" : "00871379-44", - "customerPartId" : "00871379-44", - "classification" : "component", - "nameAtManufacturer" : "Chassis", - "nameAtCustomer" : "Chassis" - } - } ] - }, { - "catenaXId" : "urn:uuid:129ea270-234e-40e3-a3f4-d51c5d20d9af", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:129ea270-234e-40e3-a3f4-d51c5d20d9af", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "08901347-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-676759950012570592554354", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:129ea270-234e-40e3-a3f4-d51c5d20d9af", - "partTypeInformation" : { - "manufacturerPartId" : "08901347-87", - "customerPartId" : "08901347-87", - "classification" : "component", - "nameAtManufacturer" : "Rims", - "nameAtCustomer" : "Rims" - } - } ] - }, { - "catenaXId" : "urn:uuid:9e2ae841-d795-4ed7-8f0a-07503e50a341", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9e2ae841-d795-4ed7-8f0a-07503e50a341", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "45863316-60", - "key" : "manufacturerPartId" - }, { - "value" : "NO-900377832150546031580793", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9e2ae841-d795-4ed7-8f0a-07503e50a341", - "partTypeInformation" : { - "manufacturerPartId" : "45863316-60", - "customerPartId" : "45863316-60", - "classification" : "component", - "nameAtManufacturer" : "Tires", - "nameAtCustomer" : "Tires" - } - } ] - }, { - "catenaXId" : "urn:uuid:e95f3ff2-c5e7-49a5-873b-aee2728917d3", - "bpnl" : "BPNL00000003B2OM", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e95f3ff2-c5e7-49a5-873b-aee2728917d3", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B2OM", - "key" : "manufacturerId" - }, { - "value" : "1O222E8-43", - "key" : "manufacturerPartId" - }, { - "value" : "NO-587540643429594480183139", - "key" : "partInstanceId" - }, { - "value" : "Company 2", - "key" : "company" - }, { - "value" : "Brand 2", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e95f3ff2-c5e7-49a5-873b-aee2728917d3", - "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:e95f3ff2-c5e7-49a5-873b-aee2728917d3", - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-587540643429594480183139", - "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.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Carbon Steel", - "recycledContent" : 35, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 72.843 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - }, { - "materialName" : "Oil", - "recycledContent" : 4, - "materialClass" : "9.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 6.9 - }, - "aggregateState" : "liquid", - "materialAbbreviation" : "SAE40" - }, { - "materialName" : "Copper", - "recycledContent" : 10, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e95f3ff2-c5e7-49a5-873b-aee2728917d3", - "childItems" : [ { - "catenaXId" : "urn:uuid:aa42c959-a79c-4350-8ff8-3126a9e984a0", - "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d57a0374-45bc-4d9e-b44c-e6e75cfe84c0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:098d565e-915a-4794-a60a-d92a8391bdde", - "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:aa42c959-a79c-4350-8ff8-3126a9e984a0", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:aa42c959-a79c-4350-8ff8-3126a9e984a0", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:aa42c959-a79c-4350-8ff8-3126a9e984a0", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e95f3ff2-c5e7-49a5-873b-aee2728917d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Engineering Plastics", - "materialClass" : "5.1", - "component" : [ { - "materialName" : "PA66", - "recycledContent" : 33, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "PA66" - }, { - "materialName" : "GF-Faser", - "recycledContent" : 20, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 30 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:d57a0374-45bc-4d9e-b44c-e6e75cfe84c0", - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d57a0374-45bc-4d9e-b44c-e6e75cfe84c0", - "customers" : [ { - "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e95f3ff2-c5e7-49a5-873b-aee2728917d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "08466Z6-77", - "key" : "manufacturerPartId" - }, { - "value" : "NO-097279706361722651837230", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d57a0374-45bc-4d9e-b44c-e6e75cfe84c0", - "partTypeInformation" : { - "manufacturerPartId" : "08466Z6-77", - "customerPartId" : "08466Z6-77", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d57a0374-45bc-4d9e-b44c-e6e75cfe84c0", - "childItems" : [ { - "catenaXId" : "urn:uuid:6cae0932-05e2-467d-98d0-7d580938a23e", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:6cae0932-05e2-467d-98d0-7d580938a23e", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:6cae0932-05e2-467d-98d0-7d580938a23e", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "NTIER Product" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6cae0932-05e2-467d-98d0-7d580938a23e", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d57a0374-45bc-4d9e-b44c-e6e75cfe84c0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "NTIER Product", - "materialClass" : "5.5", - "component" : [ { - "materialName" : "Aluminium oxide", - "recycledContent" : 83, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 60 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - }, { - "materialName" : "Other", - "recycledContent" : 4, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:percent", - "value" : 40 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:098d565e-915a-4794-a60a-d92a8391bdde", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:098d565e-915a-4794-a60a-d92a8391bdde", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:098d565e-915a-4794-a60a-d92a8391bdde", - "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e95f3ff2-c5e7-49a5-873b-aee2728917d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.2341", - "materialAbbreviation" : "GL338" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:098d565e-915a-4794-a60a-d92a8391bdde", - "childItems" : [ ] - } ] - }, { - "catenaXId" : "urn:uuid:f13d12e0-0034-488e-92d8-eefe71bcdbcb", - "bpnl" : "BPNL00000003B5MJ", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f13d12e0-0034-488e-92d8-eefe71bcdbcb", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", - "key" : "manufacturerId" - }, { - "value" : "33876Y3-80", - "key" : "manufacturerPartId" - }, { - "value" : "NO-079194313682507382247770", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f13d12e0-0034-488e-92d8-eefe71bcdbcb", - "partTypeInformation" : { - "manufacturerPartId" : "33876Y3-80", - "customerPartId" : "33876Y3-80", - "classification" : "component", - "nameAtManufacturer" : "ECU", - "nameAtCustomer" : "ECU" - } - } ], - "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" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f13d12e0-0034-488e-92d8-eefe71bcdbcb", - "childItems" : [ { - "catenaXId" : "urn:uuid:9a7c91ff-1253-4d94-b2d5-8ea97a11c330", - "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8f2ee872-a524-4ecf-88a6-9fcaaa85076b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6a54390b-c4f2-4c16-ad14-d11194e4fd5b", - "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:9a7c91ff-1253-4d94-b2d5-8ea97a11c330", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:9a7c91ff-1253-4d94-b2d5-8ea97a11c330", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9a7c91ff-1253-4d94-b2d5-8ea97a11c330", - "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f13d12e0-0034-488e-92d8-eefe71bcdbcb", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Glue", - "materialClass" : "5.5", - "component" : [ { - "materialName" : "Aluminium oxide", - "recycledContent" : 69, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "AL7" - }, { - "materialName" : "Other", - "recycledContent" : 73, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:8f2ee872-a524-4ecf-88a6-9fcaaa85076b", - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8f2ee872-a524-4ecf-88a6-9fcaaa85076b", - "customers" : [ { - "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f13d12e0-0034-488e-92d8-eefe71bcdbcb", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "12755M3-07", - "key" : "manufacturerPartId" - }, { - "value" : "NO-587656707596946420019609", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8f2ee872-a524-4ecf-88a6-9fcaaa85076b", - "partTypeInformation" : { - "manufacturerPartId" : "12755M3-07", - "customerPartId" : "12755M3-07", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8f2ee872-a524-4ecf-88a6-9fcaaa85076b", - "childItems" : [ { - "catenaXId" : "urn:uuid:3989ab2e-6e17-4090-b888-d3a2d0c55711", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:3989ab2e-6e17-4090-b888-d3a2d0c55711", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:3989ab2e-6e17-4090-b888-d3a2d0c55711", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3989ab2e-6e17-4090-b888-d3a2d0c55711", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:8f2ee872-a524-4ecf-88a6-9fcaaa85076b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn: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" : 9, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 30 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:6a54390b-c4f2-4c16-ad14-d11194e4fd5b", - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6a54390b-c4f2-4c16-ad14-d11194e4fd5b", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f13d12e0-0034-488e-92d8-eefe71bcdbcb", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "79571Z8-74", - "key" : "manufacturerPartId" - }, { - "value" : "NO-502083730835350834294362", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6a54390b-c4f2-4c16-ad14-d11194e4fd5b", - "partTypeInformation" : { - "manufacturerPartId" : "79571Z8-74", - "customerPartId" : "79571Z8-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" : 88, - "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.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" - } ], - "catenaXId" : "urn:uuid:62abade2-d330-44e4-b6c7-94c77df9250d", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:62abade2-d330-44e4-b6c7-94c77df9250d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:36273d1e-5e57-4a46-a829-43dbc7597d33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "38049661-08", - "key" : "manufacturerPartId" - }, { - "value" : "NO-133949112533853502040058", - "key" : "partInstanceId" - }, { - "value" : "Company 1", - "key" : "company" - }, { - "value" : "Brand 1", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:62abade2-d330-44e4-b6c7-94c77df9250d", - "partTypeInformation" : { - "manufacturerPartId" : "38049661-08", - "customerPartId" : "38049661-08", - "classification" : "component", - "nameAtManufacturer" : "Battery", - "nameAtCustomer" : "Battery" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "pack" - } ], - "productType" : "pack" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-133949112533853502040058", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 5.4 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 78, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 11.75 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 11, - "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" : false, - "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" : "38049661-08", - "technicalSpecification" : [ { - "technicalValue" : "RYtGKbgicZaHCBRQDSx", - "key" : "JxkyvRnL" - } ], - "productLink" : "https://123", - "oeNumber" : "NO-133949112533853502040058", - "category" : { - "subCategory" : [ "Battery" ], - "mainCategory" : [ "Audio, video, navigation" ] - }, - "originalManufacturer" : "Company 1", - "brand" : "Brand 1", - "productDescription" : "Battery" - }, - "sku" : "1002090, xYz.09, ABcXYZ", - "mileage" : 120000.06 - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "38049661-08", - "manufacturerPartId" : "38049661-08" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a Battery", - "class" : { - "code" : "27-05-02-91", - "definition" : "Traction battery, starter battery (parts)" - }, - "nameAtManufacturer" : "Battery", - "nameAtCustomer" : "Battery" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AVTH", - "eori" : "DE012345678901" - }, - "issueDate" : "2022-04-07", - "version" : 2.3, - "status" : "Invalid" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 1135.0923, - "width" : 1135, - "length" : 2172, - "weight" : 679, - "height" : 295 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 18 - } - }, - "commercial" : { - "placedOnMarket" : "2020-02-10", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-133949112533853502040058", - "key" : "PartInstanceID" - } ], - "gtin" : " 42896373", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "941342599" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2022-06-30", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 2.1658 ] - }, - "id" : "XD5715" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : false, - "percentage" : 5, - "name" : "Steel" - } ], - "critical" : [ "Lithium" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 106 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AYRE", - "manufacturer" : { - "facilityId" : "BPNL00000003B3NX", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:62abade2-d330-44e4-b6c7-94c77df9250d", - "childItems" : [ { - "catenaXId" : "urn:uuid:ed72db26-b0c1-483b-9434-bce3021308e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:849f25f9-10ce-4f82-80fd-c553af45f82d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9484c2e7-818a-4a62-94bb-a7a2281be5c6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7d64b351-6b41-4f6f-bfb0-4d8534497b4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1d3413a1-cbd2-4a6a-8347-a12697d4f605", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4f6f8206-5bc9-4332-962f-b06a0f82a2da", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:ed72db26-b0c1-483b-9434-bce3021308e9", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ed72db26-b0c1-483b-9434-bce3021308e9", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:62abade2-d330-44e4-b6c7-94c77df9250d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-458466618645009038318992", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ed72db26-b0c1-483b-9434-bce3021308e9", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-458466618645009038318992", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 77, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AVTH", - "eori" : "DE012345678901" - }, - "issueDate" : "2023-08-23", - "version" : 1.7, - "status" : "Expired" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.6983, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 17 - } - }, - "commercial" : { - "placedOnMarket" : "2022-10-19", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-458466618645009038318992", - "key" : "PartInstanceID" - } ], - "gtin" : " 66156329", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "141299731" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "SubstanceOfConcern", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-09-24", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : false, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 3.8322 ] - }, - "id" : "GX8727" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : false, - "percentage" : 5, - "name" : "Manganese" - } ], - "critical" : [ "Graphite" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 117 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003B2OM", - "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ed72db26-b0c1-483b-9434-bce3021308e9", - "childItems" : [ { - "catenaXId" : "urn:uuid:533543fb-5d09-4270-b4d5-0323de239d9a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0524bdc0-8ed0-4917-a967-e3113ac87f74", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ec45c5a9-7380-4c53-9b4b-bd375af75071", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a85089c5-348b-41e4-9c8b-915fe5d20866", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c8364d30-a911-4b64-9d4b-83d56d8d6ecf", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e1029264-3bac-48b9-9042-7a01f5710e62", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:afb066c2-32ac-478a-978f-2b82e909765a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2c6304cc-6b11-4ad4-986b-0fc53cc4d9b3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8a70f4f7-9ef9-4a2b-82db-3703e5458c74", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:97634ad8-8115-4d73-a658-5b6df51f5ad2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:570eee9d-5718-4ee7-8620-7260355fa293", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:0524bdc0-8ed0-4917-a967-e3113ac87f74", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0524bdc0-8ed0-4917-a967-e3113ac87f74", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ed72db26-b0c1-483b-9434-bce3021308e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-439238771898104425448305", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0524bdc0-8ed0-4917-a967-e3113ac87f74", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-439238771898104425448305", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0524bdc0-8ed0-4917-a967-e3113ac87f74", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-12-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-20", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:ec45c5a9-7380-4c53-9b4b-bd375af75071", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ec45c5a9-7380-4c53-9b4b-bd375af75071", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ed72db26-b0c1-483b-9434-bce3021308e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-448264205635988628438397", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ec45c5a9-7380-4c53-9b4b-bd375af75071", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-448264205635988628438397", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ec45c5a9-7380-4c53-9b4b-bd375af75071", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-09-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-11", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a85089c5-348b-41e4-9c8b-915fe5d20866", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a85089c5-348b-41e4-9c8b-915fe5d20866", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ed72db26-b0c1-483b-9434-bce3021308e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-658703373257662129237056", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a85089c5-348b-41e4-9c8b-915fe5d20866", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-658703373257662129237056", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a85089c5-348b-41e4-9c8b-915fe5d20866", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-09-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c8364d30-a911-4b64-9d4b-83d56d8d6ecf", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c8364d30-a911-4b64-9d4b-83d56d8d6ecf", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ed72db26-b0c1-483b-9434-bce3021308e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-347200585949872785677884", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c8364d30-a911-4b64-9d4b-83d56d8d6ecf", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-347200585949872785677884", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c8364d30-a911-4b64-9d4b-83d56d8d6ecf", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-06-10", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-06", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e1029264-3bac-48b9-9042-7a01f5710e62", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e1029264-3bac-48b9-9042-7a01f5710e62", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ed72db26-b0c1-483b-9434-bce3021308e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-930480031041473774481743", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e1029264-3bac-48b9-9042-7a01f5710e62", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-930480031041473774481743", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e1029264-3bac-48b9-9042-7a01f5710e62", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-03-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-03", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:afb066c2-32ac-478a-978f-2b82e909765a", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:afb066c2-32ac-478a-978f-2b82e909765a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ed72db26-b0c1-483b-9434-bce3021308e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-535183529245882955742615", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:afb066c2-32ac-478a-978f-2b82e909765a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-535183529245882955742615", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:afb066c2-32ac-478a-978f-2b82e909765a", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-12-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2c6304cc-6b11-4ad4-986b-0fc53cc4d9b3", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2c6304cc-6b11-4ad4-986b-0fc53cc4d9b3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ed72db26-b0c1-483b-9434-bce3021308e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-861831344289218979933220", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2c6304cc-6b11-4ad4-986b-0fc53cc4d9b3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-861831344289218979933220", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2c6304cc-6b11-4ad4-986b-0fc53cc4d9b3", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-10-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8a70f4f7-9ef9-4a2b-82db-3703e5458c74", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8a70f4f7-9ef9-4a2b-82db-3703e5458c74", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ed72db26-b0c1-483b-9434-bce3021308e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-672949036338292563395704", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8a70f4f7-9ef9-4a2b-82db-3703e5458c74", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-672949036338292563395704", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8a70f4f7-9ef9-4a2b-82db-3703e5458c74", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-11-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-31", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:97634ad8-8115-4d73-a658-5b6df51f5ad2", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:97634ad8-8115-4d73-a658-5b6df51f5ad2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ed72db26-b0c1-483b-9434-bce3021308e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-955916242784962736987116", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:97634ad8-8115-4d73-a658-5b6df51f5ad2", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-955916242784962736987116", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:97634ad8-8115-4d73-a658-5b6df51f5ad2", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-07-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:570eee9d-5718-4ee7-8620-7260355fa293", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:570eee9d-5718-4ee7-8620-7260355fa293", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ed72db26-b0c1-483b-9434-bce3021308e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-423754786556363354135587", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:570eee9d-5718-4ee7-8620-7260355fa293", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-423754786556363354135587", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:570eee9d-5718-4ee7-8620-7260355fa293", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-08-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:849f25f9-10ce-4f82-80fd-c553af45f82d", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:849f25f9-10ce-4f82-80fd-c553af45f82d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:62abade2-d330-44e4-b6c7-94c77df9250d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-874608216501244530734712", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:849f25f9-10ce-4f82-80fd-c553af45f82d", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-874608216501244530734712", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 56, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 37, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AVTH", - "eori" : "DE012345678901" - }, - "issueDate" : "2023-06-23", - "version" : 2.1, - "status" : "Invalid" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.62789999999998, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 17 - } - }, - "commercial" : { - "placedOnMarket" : "2022-10-28", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-874608216501244530734712", - "key" : "PartInstanceID" - } ], - "gtin" : " 74991714", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "259651866" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-09-04", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 8.3295 ] - }, - "id" : "JU1654" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : true, - "renewable" : false, - "percentage" : 5, - "name" : "Steel" - } ], - "critical" : [ "Nickel" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 115 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003B3NX", - "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:849f25f9-10ce-4f82-80fd-c553af45f82d", - "childItems" : [ { - "catenaXId" : "urn:uuid:533543fb-5d09-4270-b4d5-0323de239d9a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:09281fb2-0b7b-4519-8b3c-0d8e26361f57", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:204f3e2d-386b-4584-b32d-73372aab7f6f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:db687a0e-6fb4-4b07-a68c-5f2d5f181228", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:60ed8107-eb5d-4391-8e96-9705f6d25ce5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:81a193be-a6ef-4a49-8c5a-eeb87ee9bc7c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7c827064-6acb-4c55-a880-20f116df563c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8e29f8e8-3657-48ae-ac1b-8060dea9ff23", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6d511c50-be3f-4adf-9f43-d73ad50697c9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3fce810a-ee56-4e98-a8a3-2a0b4c55a0a8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5c5e337d-ece9-4f1e-9448-1b2f9d451e01", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:09281fb2-0b7b-4519-8b3c-0d8e26361f57", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:09281fb2-0b7b-4519-8b3c-0d8e26361f57", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:849f25f9-10ce-4f82-80fd-c553af45f82d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-459058914219916956088729", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:09281fb2-0b7b-4519-8b3c-0d8e26361f57", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-459058914219916956088729", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:09281fb2-0b7b-4519-8b3c-0d8e26361f57", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-01-12", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:204f3e2d-386b-4584-b32d-73372aab7f6f", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:204f3e2d-386b-4584-b32d-73372aab7f6f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:849f25f9-10ce-4f82-80fd-c553af45f82d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-835414853622131123513891", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:204f3e2d-386b-4584-b32d-73372aab7f6f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-835414853622131123513891", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:204f3e2d-386b-4584-b32d-73372aab7f6f", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-01-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-20", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:db687a0e-6fb4-4b07-a68c-5f2d5f181228", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:db687a0e-6fb4-4b07-a68c-5f2d5f181228", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:849f25f9-10ce-4f82-80fd-c553af45f82d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-557425214765856562885479", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:db687a0e-6fb4-4b07-a68c-5f2d5f181228", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-557425214765856562885479", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:db687a0e-6fb4-4b07-a68c-5f2d5f181228", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-08-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:60ed8107-eb5d-4391-8e96-9705f6d25ce5", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:60ed8107-eb5d-4391-8e96-9705f6d25ce5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:849f25f9-10ce-4f82-80fd-c553af45f82d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-090286619512601421833533", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:60ed8107-eb5d-4391-8e96-9705f6d25ce5", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-090286619512601421833533", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:60ed8107-eb5d-4391-8e96-9705f6d25ce5", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-10-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:81a193be-a6ef-4a49-8c5a-eeb87ee9bc7c", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:81a193be-a6ef-4a49-8c5a-eeb87ee9bc7c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:849f25f9-10ce-4f82-80fd-c553af45f82d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-729399241219669086786338", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:81a193be-a6ef-4a49-8c5a-eeb87ee9bc7c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-729399241219669086786338", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:81a193be-a6ef-4a49-8c5a-eeb87ee9bc7c", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-10-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7c827064-6acb-4c55-a880-20f116df563c", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7c827064-6acb-4c55-a880-20f116df563c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:849f25f9-10ce-4f82-80fd-c553af45f82d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-425321416378523306472679", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7c827064-6acb-4c55-a880-20f116df563c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-425321416378523306472679", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7c827064-6acb-4c55-a880-20f116df563c", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-10-18", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-28", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8e29f8e8-3657-48ae-ac1b-8060dea9ff23", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8e29f8e8-3657-48ae-ac1b-8060dea9ff23", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:849f25f9-10ce-4f82-80fd-c553af45f82d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-309439527831899454100774", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8e29f8e8-3657-48ae-ac1b-8060dea9ff23", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-309439527831899454100774", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8e29f8e8-3657-48ae-ac1b-8060dea9ff23", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-08-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6d511c50-be3f-4adf-9f43-d73ad50697c9", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6d511c50-be3f-4adf-9f43-d73ad50697c9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:849f25f9-10ce-4f82-80fd-c553af45f82d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-749865107819788766239898", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6d511c50-be3f-4adf-9f43-d73ad50697c9", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-749865107819788766239898", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6d511c50-be3f-4adf-9f43-d73ad50697c9", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-09-18", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-20", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3fce810a-ee56-4e98-a8a3-2a0b4c55a0a8", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3fce810a-ee56-4e98-a8a3-2a0b4c55a0a8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:849f25f9-10ce-4f82-80fd-c553af45f82d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-689112857122817161745779", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3fce810a-ee56-4e98-a8a3-2a0b4c55a0a8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-689112857122817161745779", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3fce810a-ee56-4e98-a8a3-2a0b4c55a0a8", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-02-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-11", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5c5e337d-ece9-4f1e-9448-1b2f9d451e01", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5c5e337d-ece9-4f1e-9448-1b2f9d451e01", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:849f25f9-10ce-4f82-80fd-c553af45f82d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-184490597412821352464821", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5c5e337d-ece9-4f1e-9448-1b2f9d451e01", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-184490597412821352464821", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5c5e337d-ece9-4f1e-9448-1b2f9d451e01", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-09-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-06", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9484c2e7-818a-4a62-94bb-a7a2281be5c6", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9484c2e7-818a-4a62-94bb-a7a2281be5c6", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:62abade2-d330-44e4-b6c7-94c77df9250d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-893311545736550569499987", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9484c2e7-818a-4a62-94bb-a7a2281be5c6", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-893311545736550569499987", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 64, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AVTH", - "eori" : "DE012345678901" - }, - "issueDate" : "2023-05-03", - "version" : 2.5, - "status" : "Invalid" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.6402, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 17 - } - }, - "commercial" : { - "placedOnMarket" : "2023-01-28", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-893311545736550569499987", - "key" : "PartInstanceID" - } ], - "gtin" : " 50186076", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "494585531" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Compliance", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-06-06", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : false, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 1.1529 ] - }, - "id" : "JB9097" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : false, - "percentage" : 5, - "name" : "Cobalt" - } ], - "critical" : [ "Cobalt" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 118 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003B2OM", - "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9484c2e7-818a-4a62-94bb-a7a2281be5c6", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a1becabb-1ac8-45e6-af4a-950cd2d62414", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7095c165-7493-46e1-9481-65b3de5987ca", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3f1166b1-9f16-4765-a081-a693f2e7281f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5dd578f9-bae6-4d4f-93d0-e806421f1e96", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c0ac1530-b1a5-4769-94d2-8d145a5882df", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:54ec5ae7-cd28-4906-aec6-5af0c32988ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a86dd53c-6c31-48e8-967f-407fa400e3a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2d74c59f-42b4-4882-8f7d-c7c120765e9f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:17963d6e-b322-4748-903d-00a56b0f23dc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:85c18175-97c6-4a16-8687-24e8529f478f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:a1becabb-1ac8-45e6-af4a-950cd2d62414", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a1becabb-1ac8-45e6-af4a-950cd2d62414", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:9484c2e7-818a-4a62-94bb-a7a2281be5c6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-683172518108767175659130", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a1becabb-1ac8-45e6-af4a-950cd2d62414", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-683172518108767175659130", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a1becabb-1ac8-45e6-af4a-950cd2d62414", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-04-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7095c165-7493-46e1-9481-65b3de5987ca", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7095c165-7493-46e1-9481-65b3de5987ca", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:9484c2e7-818a-4a62-94bb-a7a2281be5c6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-526884944085503191708541", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7095c165-7493-46e1-9481-65b3de5987ca", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-526884944085503191708541", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7095c165-7493-46e1-9481-65b3de5987ca", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-02-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3f1166b1-9f16-4765-a081-a693f2e7281f", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3f1166b1-9f16-4765-a081-a693f2e7281f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:9484c2e7-818a-4a62-94bb-a7a2281be5c6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-999056846452972275442894", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3f1166b1-9f16-4765-a081-a693f2e7281f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-999056846452972275442894", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3f1166b1-9f16-4765-a081-a693f2e7281f", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-06-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5dd578f9-bae6-4d4f-93d0-e806421f1e96", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5dd578f9-bae6-4d4f-93d0-e806421f1e96", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:9484c2e7-818a-4a62-94bb-a7a2281be5c6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-278768240944754678373553", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5dd578f9-bae6-4d4f-93d0-e806421f1e96", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-278768240944754678373553", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5dd578f9-bae6-4d4f-93d0-e806421f1e96", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-11-14", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c0ac1530-b1a5-4769-94d2-8d145a5882df", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c0ac1530-b1a5-4769-94d2-8d145a5882df", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:9484c2e7-818a-4a62-94bb-a7a2281be5c6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-542331912849374491030843", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c0ac1530-b1a5-4769-94d2-8d145a5882df", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-542331912849374491030843", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c0ac1530-b1a5-4769-94d2-8d145a5882df", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-07-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-10", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:54ec5ae7-cd28-4906-aec6-5af0c32988ef", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:54ec5ae7-cd28-4906-aec6-5af0c32988ef", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:9484c2e7-818a-4a62-94bb-a7a2281be5c6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-612442765636416819415276", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:54ec5ae7-cd28-4906-aec6-5af0c32988ef", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-612442765636416819415276", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:54ec5ae7-cd28-4906-aec6-5af0c32988ef", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-03-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-23", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a86dd53c-6c31-48e8-967f-407fa400e3a7", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a86dd53c-6c31-48e8-967f-407fa400e3a7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:9484c2e7-818a-4a62-94bb-a7a2281be5c6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-961313505424368251339209", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a86dd53c-6c31-48e8-967f-407fa400e3a7", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-961313505424368251339209", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a86dd53c-6c31-48e8-967f-407fa400e3a7", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-11-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2d74c59f-42b4-4882-8f7d-c7c120765e9f", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2d74c59f-42b4-4882-8f7d-c7c120765e9f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:9484c2e7-818a-4a62-94bb-a7a2281be5c6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-556285530303924173160139", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2d74c59f-42b4-4882-8f7d-c7c120765e9f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-556285530303924173160139", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2d74c59f-42b4-4882-8f7d-c7c120765e9f", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-06-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:17963d6e-b322-4748-903d-00a56b0f23dc", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:17963d6e-b322-4748-903d-00a56b0f23dc", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:9484c2e7-818a-4a62-94bb-a7a2281be5c6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-963996133316345811610256", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:17963d6e-b322-4748-903d-00a56b0f23dc", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-963996133316345811610256", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:17963d6e-b322-4748-903d-00a56b0f23dc", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-09-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-11", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:85c18175-97c6-4a16-8687-24e8529f478f", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:85c18175-97c6-4a16-8687-24e8529f478f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:9484c2e7-818a-4a62-94bb-a7a2281be5c6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-856315552319081396459931", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:85c18175-97c6-4a16-8687-24e8529f478f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-856315552319081396459931", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:85c18175-97c6-4a16-8687-24e8529f478f", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-09-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-16", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7d64b351-6b41-4f6f-bfb0-4d8534497b4f", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7d64b351-6b41-4f6f-bfb0-4d8534497b4f", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:62abade2-d330-44e4-b6c7-94c77df9250d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-115261774478381331972809", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7d64b351-6b41-4f6f-bfb0-4d8534497b4f", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-115261774478381331972809", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 10, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AVTH", - "eori" : "DE012345678901" - }, - "issueDate" : "2023-09-28", - "version" : 2.4, - "status" : "Approved" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.6361, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 16 - } - }, - "commercial" : { - "placedOnMarket" : "2021-07-11", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-115261774478381331972809", - "key" : "PartInstanceID" - } ], - "gtin" : " 82662788", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "106686741" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-09-28", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 0.8826 ] - }, - "id" : "PL3005" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : false, - "percentage" : 5, - "name" : "Polyamid" - } ], - "critical" : [ "Cobalt" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 105 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003B2OM", - "manufacturer" : { - "facilityId" : "BPNL00000003AYRE", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7d64b351-6b41-4f6f-bfb0-4d8534497b4f", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:55ead9db-1f3d-4493-8731-7ebe68b94e16", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:61be8b41-0a49-44ec-bd3d-3cce9a13b100", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3e6e3349-ab90-4462-b3ad-471e24bb5aa3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f996a935-62e5-44f9-a409-8710c747f179", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:46d92b45-75b8-43e5-bc1d-d74094a4915a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:403edd26-f829-4955-9dc5-a0dc837b8018", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7753712d-9188-47e4-af74-c387b939fb01", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:64644a5e-987c-4fde-8ed6-53323af3fedc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:54505897-9bd0-46ee-8268-8cb620b0a6f5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:29feef2c-2577-4d3f-9651-54045872c475", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:55ead9db-1f3d-4493-8731-7ebe68b94e16", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:55ead9db-1f3d-4493-8731-7ebe68b94e16", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7d64b351-6b41-4f6f-bfb0-4d8534497b4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-579744528232911521876254", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:55ead9db-1f3d-4493-8731-7ebe68b94e16", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-579744528232911521876254", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:55ead9db-1f3d-4493-8731-7ebe68b94e16", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-08-09", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:61be8b41-0a49-44ec-bd3d-3cce9a13b100", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:61be8b41-0a49-44ec-bd3d-3cce9a13b100", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7d64b351-6b41-4f6f-bfb0-4d8534497b4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-764505791303455051716849", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:61be8b41-0a49-44ec-bd3d-3cce9a13b100", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-764505791303455051716849", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:61be8b41-0a49-44ec-bd3d-3cce9a13b100", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-03-31", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3e6e3349-ab90-4462-b3ad-471e24bb5aa3", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3e6e3349-ab90-4462-b3ad-471e24bb5aa3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7d64b351-6b41-4f6f-bfb0-4d8534497b4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-187085290906052435863658", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3e6e3349-ab90-4462-b3ad-471e24bb5aa3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-187085290906052435863658", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3e6e3349-ab90-4462-b3ad-471e24bb5aa3", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-02-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f996a935-62e5-44f9-a409-8710c747f179", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f996a935-62e5-44f9-a409-8710c747f179", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7d64b351-6b41-4f6f-bfb0-4d8534497b4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-245280549027392811024463", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f996a935-62e5-44f9-a409-8710c747f179", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-245280549027392811024463", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f996a935-62e5-44f9-a409-8710c747f179", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-07-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:46d92b45-75b8-43e5-bc1d-d74094a4915a", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:46d92b45-75b8-43e5-bc1d-d74094a4915a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7d64b351-6b41-4f6f-bfb0-4d8534497b4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-544873260312828270866613", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:46d92b45-75b8-43e5-bc1d-d74094a4915a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-544873260312828270866613", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:46d92b45-75b8-43e5-bc1d-d74094a4915a", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-06-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:403edd26-f829-4955-9dc5-a0dc837b8018", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:403edd26-f829-4955-9dc5-a0dc837b8018", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7d64b351-6b41-4f6f-bfb0-4d8534497b4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-197337609183342737332827", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:403edd26-f829-4955-9dc5-a0dc837b8018", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-197337609183342737332827", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:403edd26-f829-4955-9dc5-a0dc837b8018", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-02-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7753712d-9188-47e4-af74-c387b939fb01", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7753712d-9188-47e4-af74-c387b939fb01", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7d64b351-6b41-4f6f-bfb0-4d8534497b4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-413714554670147422589344", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7753712d-9188-47e4-af74-c387b939fb01", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-413714554670147422589344", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7753712d-9188-47e4-af74-c387b939fb01", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-11-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:64644a5e-987c-4fde-8ed6-53323af3fedc", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:64644a5e-987c-4fde-8ed6-53323af3fedc", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7d64b351-6b41-4f6f-bfb0-4d8534497b4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-779305477256441997068202", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:64644a5e-987c-4fde-8ed6-53323af3fedc", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-779305477256441997068202", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:64644a5e-987c-4fde-8ed6-53323af3fedc", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-06-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:54505897-9bd0-46ee-8268-8cb620b0a6f5", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:54505897-9bd0-46ee-8268-8cb620b0a6f5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7d64b351-6b41-4f6f-bfb0-4d8534497b4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-343678384615623632486399", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:54505897-9bd0-46ee-8268-8cb620b0a6f5", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-343678384615623632486399", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:54505897-9bd0-46ee-8268-8cb620b0a6f5", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-07-24", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-11", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:29feef2c-2577-4d3f-9651-54045872c475", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:29feef2c-2577-4d3f-9651-54045872c475", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7d64b351-6b41-4f6f-bfb0-4d8534497b4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-199534707909084078994346", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:29feef2c-2577-4d3f-9651-54045872c475", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-199534707909084078994346", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:29feef2c-2577-4d3f-9651-54045872c475", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-02-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1d3413a1-cbd2-4a6a-8347-a12697d4f605", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1d3413a1-cbd2-4a6a-8347-a12697d4f605", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:62abade2-d330-44e4-b6c7-94c77df9250d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-626711131125805990730187", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1d3413a1-cbd2-4a6a-8347-a12697d4f605", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-626711131125805990730187", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 36, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 61, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AVTH", - "eori" : "DE012345678901" - }, - "issueDate" : "2023-08-06", - "version" : 1.3, - "status" : "Invalid" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.63039999999998, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 16 - } - }, - "commercial" : { - "placedOnMarket" : "2022-11-18", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-626711131125805990730187", - "key" : "PartInstanceID" - } ], - "gtin" : " 46368934", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "438204249" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-08-06", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 5.3518 ] - }, - "id" : "FY9353" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : true, - "renewable" : false, - "percentage" : 5, - "name" : "UV Varnish" - } ], - "critical" : [ "Cobalt" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 124 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AYRE", - "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1d3413a1-cbd2-4a6a-8347-a12697d4f605", - "childItems" : [ { - "catenaXId" : "urn:uuid:533543fb-5d09-4270-b4d5-0323de239d9a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a1d49a8e-afa6-4e75-97e6-ae3abc418f80", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c8997f51-0330-4543-a516-8583113d8544", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a3f55bfb-9a28-4446-b4f7-a040d31694e2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4d7ae908-90d4-467f-9b94-d6b1fe774795", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4c565f46-4bc1-4976-8870-158b30498a3f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:69cac4b5-0818-4860-a3e4-92c0e0ee2562", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a6a70c9b-3382-40f2-b52b-e30ee1bbdcbe", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:050d8ae5-01b6-497f-8117-9f00e4bcd5ca", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:83933eec-71db-4d73-8516-98fef70c3ae6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9e89592b-b69e-4690-b64d-df38f285350d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:a1d49a8e-afa6-4e75-97e6-ae3abc418f80", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a1d49a8e-afa6-4e75-97e6-ae3abc418f80", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1d3413a1-cbd2-4a6a-8347-a12697d4f605", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-564931780145518990937373", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a1d49a8e-afa6-4e75-97e6-ae3abc418f80", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-564931780145518990937373", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a1d49a8e-afa6-4e75-97e6-ae3abc418f80", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-03-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c8997f51-0330-4543-a516-8583113d8544", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c8997f51-0330-4543-a516-8583113d8544", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1d3413a1-cbd2-4a6a-8347-a12697d4f605", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-172008149582911386016533", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c8997f51-0330-4543-a516-8583113d8544", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-172008149582911386016533", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c8997f51-0330-4543-a516-8583113d8544", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-01-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a3f55bfb-9a28-4446-b4f7-a040d31694e2", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a3f55bfb-9a28-4446-b4f7-a040d31694e2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1d3413a1-cbd2-4a6a-8347-a12697d4f605", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-972902385733272070912381", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a3f55bfb-9a28-4446-b4f7-a040d31694e2", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-972902385733272070912381", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a3f55bfb-9a28-4446-b4f7-a040d31694e2", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-11-13", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4d7ae908-90d4-467f-9b94-d6b1fe774795", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4d7ae908-90d4-467f-9b94-d6b1fe774795", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1d3413a1-cbd2-4a6a-8347-a12697d4f605", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-003337496396118474050169", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4d7ae908-90d4-467f-9b94-d6b1fe774795", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-003337496396118474050169", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4d7ae908-90d4-467f-9b94-d6b1fe774795", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-04-09", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-06", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4c565f46-4bc1-4976-8870-158b30498a3f", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4c565f46-4bc1-4976-8870-158b30498a3f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1d3413a1-cbd2-4a6a-8347-a12697d4f605", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-336897026069355203211063", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4c565f46-4bc1-4976-8870-158b30498a3f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-336897026069355203211063", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4c565f46-4bc1-4976-8870-158b30498a3f", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-08-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:69cac4b5-0818-4860-a3e4-92c0e0ee2562", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:69cac4b5-0818-4860-a3e4-92c0e0ee2562", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1d3413a1-cbd2-4a6a-8347-a12697d4f605", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-327602030365591380419619", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:69cac4b5-0818-4860-a3e4-92c0e0ee2562", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-327602030365591380419619", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:69cac4b5-0818-4860-a3e4-92c0e0ee2562", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-11-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a6a70c9b-3382-40f2-b52b-e30ee1bbdcbe", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a6a70c9b-3382-40f2-b52b-e30ee1bbdcbe", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1d3413a1-cbd2-4a6a-8347-a12697d4f605", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-724131813674009846932311", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a6a70c9b-3382-40f2-b52b-e30ee1bbdcbe", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-724131813674009846932311", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a6a70c9b-3382-40f2-b52b-e30ee1bbdcbe", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-12-14", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:050d8ae5-01b6-497f-8117-9f00e4bcd5ca", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:050d8ae5-01b6-497f-8117-9f00e4bcd5ca", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1d3413a1-cbd2-4a6a-8347-a12697d4f605", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-949772645853762715707797", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:050d8ae5-01b6-497f-8117-9f00e4bcd5ca", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-949772645853762715707797", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:050d8ae5-01b6-497f-8117-9f00e4bcd5ca", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-06-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:83933eec-71db-4d73-8516-98fef70c3ae6", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:83933eec-71db-4d73-8516-98fef70c3ae6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1d3413a1-cbd2-4a6a-8347-a12697d4f605", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-196273572907526120145400", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:83933eec-71db-4d73-8516-98fef70c3ae6", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-196273572907526120145400", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:83933eec-71db-4d73-8516-98fef70c3ae6", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-12-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9e89592b-b69e-4690-b64d-df38f285350d", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9e89592b-b69e-4690-b64d-df38f285350d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1d3413a1-cbd2-4a6a-8347-a12697d4f605", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-687563139958339367145844", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9e89592b-b69e-4690-b64d-df38f285350d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-687563139958339367145844", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9e89592b-b69e-4690-b64d-df38f285350d", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-04-13", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-03", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4f6f8206-5bc9-4332-962f-b06a0f82a2da", - "bpnl" : "BPNL00000003AVTH", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4f6f8206-5bc9-4332-962f-b06a0f82a2da", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:62abade2-d330-44e4-b6c7-94c77df9250d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-864590720081364146187603", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4f6f8206-5bc9-4332-962f-b06a0f82a2da", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-864590720081364146187603", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 29, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 18, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 50, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AVTH", - "eori" : "DE012345678901" - }, - "issueDate" : "2023-04-17", - "version" : 2.8, - "status" : "Invalid" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.6471, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 15 - } - }, - "commercial" : { - "placedOnMarket" : "2021-11-21", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-864590720081364146187603", - "key" : "PartInstanceID" - } ], - "gtin" : " 15930142", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "128241412" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-08-23", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 6.3652 ] - }, - "id" : "WZ6462" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : true, - "renewable" : false, - "percentage" : 5, - "name" : "Copper" - } ], - "critical" : [ "Graphite" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 115 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003B2OM", - "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", - "manufacturerId" : "BPNL00000003AVTH" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4f6f8206-5bc9-4332-962f-b06a0f82a2da", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7b3095bd-882e-408b-b8e4-e2065e948c50", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9badfcae-fb87-4d6d-a95b-adc417a4ff88", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a3d75c97-47a8-48e2-8b96-7c43f33eeaa7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1d6562bc-189b-4a91-b7c5-5c95ac083b15", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:397c9cce-627b-4c53-8f71-912283476a00", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:52437406-0cbe-403d-974c-425f698eac43", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7c009a29-b17e-4fc1-8b94-107f2e18a713", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c310df54-9438-4014-9e38-a15380c2627b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6fbd4e08-22c6-4e56-b539-8d5988da1576", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1c6ca5ba-8197-41af-b367-d945cfeb40c5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:7b3095bd-882e-408b-b8e4-e2065e948c50", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7b3095bd-882e-408b-b8e4-e2065e948c50", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4f6f8206-5bc9-4332-962f-b06a0f82a2da", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-932680651141503730407478", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7b3095bd-882e-408b-b8e4-e2065e948c50", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-932680651141503730407478", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7b3095bd-882e-408b-b8e4-e2065e948c50", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-01-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9badfcae-fb87-4d6d-a95b-adc417a4ff88", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9badfcae-fb87-4d6d-a95b-adc417a4ff88", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4f6f8206-5bc9-4332-962f-b06a0f82a2da", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-882395924499581027834517", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9badfcae-fb87-4d6d-a95b-adc417a4ff88", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-882395924499581027834517", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9badfcae-fb87-4d6d-a95b-adc417a4ff88", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-01-30", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a3d75c97-47a8-48e2-8b96-7c43f33eeaa7", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a3d75c97-47a8-48e2-8b96-7c43f33eeaa7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4f6f8206-5bc9-4332-962f-b06a0f82a2da", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-432091591639708924571994", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a3d75c97-47a8-48e2-8b96-7c43f33eeaa7", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-432091591639708924571994", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a3d75c97-47a8-48e2-8b96-7c43f33eeaa7", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-01-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1d6562bc-189b-4a91-b7c5-5c95ac083b15", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1d6562bc-189b-4a91-b7c5-5c95ac083b15", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4f6f8206-5bc9-4332-962f-b06a0f82a2da", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-492562788304073590987808", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1d6562bc-189b-4a91-b7c5-5c95ac083b15", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-492562788304073590987808", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1d6562bc-189b-4a91-b7c5-5c95ac083b15", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-07-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:397c9cce-627b-4c53-8f71-912283476a00", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:397c9cce-627b-4c53-8f71-912283476a00", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4f6f8206-5bc9-4332-962f-b06a0f82a2da", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-124529140860558804952909", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:397c9cce-627b-4c53-8f71-912283476a00", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-124529140860558804952909", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:397c9cce-627b-4c53-8f71-912283476a00", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-04-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:52437406-0cbe-403d-974c-425f698eac43", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:52437406-0cbe-403d-974c-425f698eac43", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4f6f8206-5bc9-4332-962f-b06a0f82a2da", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-860183134450854613804730", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:52437406-0cbe-403d-974c-425f698eac43", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-860183134450854613804730", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:52437406-0cbe-403d-974c-425f698eac43", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-03-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7c009a29-b17e-4fc1-8b94-107f2e18a713", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7c009a29-b17e-4fc1-8b94-107f2e18a713", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4f6f8206-5bc9-4332-962f-b06a0f82a2da", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-030116436727202387241160", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7c009a29-b17e-4fc1-8b94-107f2e18a713", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-030116436727202387241160", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7c009a29-b17e-4fc1-8b94-107f2e18a713", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-12-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-16", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c310df54-9438-4014-9e38-a15380c2627b", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c310df54-9438-4014-9e38-a15380c2627b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4f6f8206-5bc9-4332-962f-b06a0f82a2da", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-174978075216567619885113", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c310df54-9438-4014-9e38-a15380c2627b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-174978075216567619885113", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c310df54-9438-4014-9e38-a15380c2627b", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-04-30", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6fbd4e08-22c6-4e56-b539-8d5988da1576", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6fbd4e08-22c6-4e56-b539-8d5988da1576", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4f6f8206-5bc9-4332-962f-b06a0f82a2da", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-161859214580386164253693", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6fbd4e08-22c6-4e56-b539-8d5988da1576", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-161859214580386164253693", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6fbd4e08-22c6-4e56-b539-8d5988da1576", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-04-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1c6ca5ba-8197-41af-b367-d945cfeb40c5", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c6ca5ba-8197-41af-b367-d945cfeb40c5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4f6f8206-5bc9-4332-962f-b06a0f82a2da", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-111843018856741626506204", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1c6ca5ba-8197-41af-b367-d945cfeb40c5", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-111843018856741626506204", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c6ca5ba-8197-41af-b367-d945cfeb40c5", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-03-30", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Pkw-Pick-up", - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "engine" : { - "size" : 2998, - "power" : 143 - }, - "emptyWeight" : 1.73, - "fuel" : "Elektro", - "vehicleModel" : "Vehicle Fully Electric", - "productionDateGMT" : "2010-01-01", - "equipmentVariants" : [ { - "code" : "S2AVB", - "description" : "adaptive drive", - "group" : "special equipment" - }, { - "code" : "S218A", - "description" : "sport automatic transmission", - "group" : "special equipment" - }, { - "code" : "A248B", - "description" : "steering wheel heating", - "group" : "special equipment" - }, { - "code" : "S763C", - "description" : "sport package", - "group" : "special equipment" - } ], - "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", - "mileage" : [ { - "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2020-12-31", - "mileageDistance" : 120000 - } ] - } ], - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "HF-02", - "key" : "manufacturerPartId" - }, { - "value" : "OMAATBYTJFCZWWOCS", - "key" : "partInstanceId" - }, { - "value" : "OMAATBYTJFCZWWOCS", - "key" : "van" - } ], - "manufacturingInformation" : { - "date" : "2018-09-06T22:52:22.000Z", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "partTypeInformation" : { - "manufacturerPartId" : "HF-02", - "classification" : "product", - "nameAtManufacturer" : "Vehicle Fully Electric" - } - } ], - "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" : 67, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 163.8 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "PE221" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 60, - "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" : 2, - "materialClass" : "0.7", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 109.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "W123" - }, { - "materialName" : "Glue", - "recycledContent" : 82, - "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" : 51, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 250.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Rubber", - "recycledContent" : 3, - "materialClass" : "5.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 7.8 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "R22" - }, { - "materialName" : "Textiles", - "recycledContent" : 36, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 5.12 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "TEX1" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "childItems" : [ { - "catenaXId" : "urn:uuid:2074575c-dc6b-45f5-b6d2-005f82704fa2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3360bc5e-36a9-4aa0-a646-d6915a464ee8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f43ae9b0-b405-44b2-87c7-1ac00a55b1e6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:33b95028-1c10-46fa-8e4d-50d2ffb4f152", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:bff1b15e-7365-4f3c-bc47-6eaac6ad954d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:69028a87-9fc8-402e-9cbe-7f1e01acde5e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ac8a570c-9097-4b88-ba79-3dd54079e020", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4bd91c22-ff70-4726-b8e9-80fe01ee9ccc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7bdf396e-5ab9-4892-8755-5e0fd1923baa", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:bff34af9-a707-43df-908b-20da10d3b5a4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6fba027e-c935-45b0-a6f8-403702ea4c23", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:bc4fe23d-ece8-46e5-9d0e-6601f353dfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8770899c-7f00-41d8-98d6-ac134628e9d5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:439fd7c7-0b9d-4328-9c05-4ea8d8085d71", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:58c82230-59f7-451b-90fb-264d054a5c46", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b34e08b1-e463-4f85-9c27-a33e3088b836", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cbe3b7f7-4e18-4777-899a-93690728948f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4f67f609-aabd-48b5-b40a-9d732d5c5bc5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5406860f-ed04-443d-b1a9-53c97655d723", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:038dbb62-0002-4b46-8e60-72069825192b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:87b0fc1c-34c5-4542-b516-51c1cb2452fd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d13cdb52-9c63-4f92-8f68-9a39b5f8ae68", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8aab254d-eee8-4f80-ae6c-9c4656e792b8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:94d30e6d-c2a3-402f-9488-76637fb9ecc9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b8a8ed36-0c23-40ce-89b6-2445fa0f2272", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b20940c5-d536-4b61-85a9-1d90e0ad30f8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:44ae8ef1-255a-4ecf-9ac6-f9298f6ee8c7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:427d294c-3f67-46b6-9726-fc4a5ca9c39f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2dce01a3-f272-4fa3-8117-59c068094412", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e55dfd56-4a4a-4d0c-9b44-8dcfcc451e3b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B2OM", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:11db0fa4-c7d5-44c0-b4f3-5debd6a16b27", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B5MJ", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7831bdbb-a48e-43b7-b835-4f56b17045fd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:2074575c-dc6b-45f5-b6d2-005f82704fa2", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2074575c-dc6b-45f5-b6d2-005f82704fa2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "73849201-61", - "key" : "manufacturerPartId" - }, { - "value" : "NO-920206313748997451131784", - "key" : "partInstanceId" - }, { - "value" : "Company 10", - "key" : "company" - }, { - "value" : "Brand 10", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2074575c-dc6b-45f5-b6d2-005f82704fa2", - "partTypeInformation" : { - "manufacturerPartId" : "73849201-61", - "customerPartId" : "73849201-61", - "classification" : "component", - "nameAtManufacturer" : "Catalysator", - "nameAtCustomer" : "Catalysator" - } - } ] - }, { - "catenaXId" : "urn:uuid:3360bc5e-36a9-4aa0-a646-d6915a464ee8", - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3360bc5e-36a9-4aa0-a646-d6915a464ee8", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "22782277-50", - "key" : "manufacturerPartId" - }, { - "value" : "NO-140871141994474941858555", - "key" : "partInstanceId" - }, { - "value" : "Company 3", - "key" : "company" - }, { - "value" : "Brand 3", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3360bc5e-36a9-4aa0-a646-d6915a464ee8", - "partTypeInformation" : { - "manufacturerPartId" : "22782277-50", - "customerPartId" : "22782277-50", - "classification" : "component", - "nameAtManufacturer" : "Door f-l", - "nameAtCustomer" : "Door front-left" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3360bc5e-36a9-4aa0-a646-d6915a464ee8", - "childItems" : [ { - "catenaXId" : "urn:uuid:5acb1d60-6cfd-4235-9327-8db1465f71a1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:5acb1d60-6cfd-4235-9327-8db1465f71a1", - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5acb1d60-6cfd-4235-9327-8db1465f71a1", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3360bc5e-36a9-4aa0-a646-d6915a464ee8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-590921821815724429620905", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5acb1d60-6cfd-4235-9327-8db1465f71a1", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "93684768ONZ", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:5acb1d60-6cfd-4235-9327-8db1465f71a1", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:f43ae9b0-b405-44b2-87c7-1ac00a55b1e6", - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f43ae9b0-b405-44b2-87c7-1ac00a55b1e6", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "95657362-64", - "key" : "manufacturerPartId" - }, { - "value" : "NO-434511074965178423731409", - "key" : "partInstanceId" - }, { - "value" : "Company 4", - "key" : "company" - }, { - "value" : "Brand 4", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f43ae9b0-b405-44b2-87c7-1ac00a55b1e6", - "partTypeInformation" : { - "manufacturerPartId" : "33740332-54", - "customerPartId" : "33740332-54", - "classification" : "component", - "nameAtManufacturer" : "Door f-r", - "nameAtCustomer" : "Door front-right" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f43ae9b0-b405-44b2-87c7-1ac00a55b1e6", - "childItems" : [ { - "catenaXId" : "urn:uuid:8703ba84-e989-4d7b-92c5-629869f07f7b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:8703ba84-e989-4d7b-92c5-629869f07f7b", - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8703ba84-e989-4d7b-92c5-629869f07f7b", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f43ae9b0-b405-44b2-87c7-1ac00a55b1e6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-771777349908370963839841", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8703ba84-e989-4d7b-92c5-629869f07f7b", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "66417472CGM", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:8703ba84-e989-4d7b-92c5-629869f07f7b", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:33b95028-1c10-46fa-8e4d-50d2ffb4f152", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:33b95028-1c10-46fa-8e4d-50d2ffb4f152", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "15635759-16", - "key" : "manufacturerPartId" - }, { - "value" : "NO-895203310289122865884758", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:33b95028-1c10-46fa-8e4d-50d2ffb4f152", - "partTypeInformation" : { - "manufacturerPartId" : "15635759-16", - "customerPartId" : "15635759-16", - "classification" : "component", - "nameAtManufacturer" : "Door r-l", - "nameAtCustomer" : "Door rear-left" - } - } ] - }, { - "catenaXId" : "urn:uuid:bff1b15e-7365-4f3c-bc47-6eaac6ad954d", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bff1b15e-7365-4f3c-bc47-6eaac6ad954d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "28673126-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-752998302048252042827696", - "key" : "partInstanceId" - }, { - "value" : "Company 5", - "key" : "company" - }, { - "value" : "Brand 5", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:bff1b15e-7365-4f3c-bc47-6eaac6ad954d", - "partTypeInformation" : { - "manufacturerPartId" : "28673126-98", - "customerPartId" : "28673126-98", - "classification" : "component", - "nameAtManufacturer" : "Door r-r", - "nameAtCustomer" : "Door rear-right" - } - } ] - }, { - "catenaXId" : "urn:uuid:69028a87-9fc8-402e-9cbe-7f1e01acde5e", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:69028a87-9fc8-402e-9cbe-7f1e01acde5e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "94421589-82", - "key" : "manufacturerPartId" - }, { - "value" : "NO-368162456081290630491807", - "key" : "partInstanceId" - }, { - "value" : "Company 6", - "key" : "company" - }, { - "value" : "Brand 6", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:69028a87-9fc8-402e-9cbe-7f1e01acde5e", - "partTypeInformation" : { - "manufacturerPartId" : "94421589-82", - "customerPartId" : "94421589-82", - "classification" : "component", - "nameAtManufacturer" : "Engine hood", - "nameAtCustomer" : "Engine hood" - } - } ] - }, { - "catenaXId" : "urn:uuid:ac8a570c-9097-4b88-ba79-3dd54079e020", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ac8a570c-9097-4b88-ba79-3dd54079e020", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "85023955-75", - "key" : "manufacturerPartId" - }, { - "value" : "NO-170001726714333319216686", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ac8a570c-9097-4b88-ba79-3dd54079e020", - "partTypeInformation" : { - "manufacturerPartId" : "85023955-75", - "customerPartId" : "85023955-75", - "classification" : "component", - "nameAtManufacturer" : "Tailgate", - "nameAtCustomer" : "Tailgate" - } - } ] - }, { - "catenaXId" : "urn:uuid:4bd91c22-ff70-4726-b8e9-80fe01ee9ccc", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4bd91c22-ff70-4726-b8e9-80fe01ee9ccc", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "13769860-47", - "key" : "manufacturerPartId" - }, { - "value" : "NO-534392786377025552099843", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4bd91c22-ff70-4726-b8e9-80fe01ee9ccc", - "partTypeInformation" : { - "manufacturerPartId" : "13769860-47", - "customerPartId" : "13769860-47", - "classification" : "component", - "nameAtManufacturer" : "Fender left", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:7bdf396e-5ab9-4892-8755-5e0fd1923baa", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7bdf396e-5ab9-4892-8755-5e0fd1923baa", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "36643162-35", - "key" : "manufacturerPartId" - }, { - "value" : "NO-442988112756372273954841", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7bdf396e-5ab9-4892-8755-5e0fd1923baa", - "partTypeInformation" : { - "manufacturerPartId" : "36643162-35", - "customerPartId" : "36643162-35", - "classification" : "component", - "nameAtManufacturer" : "Fender right", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:bff34af9-a707-43df-908b-20da10d3b5a4", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bff34af9-a707-43df-908b-20da10d3b5a4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "54165444-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-012194321993370057770683", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:bff34af9-a707-43df-908b-20da10d3b5a4", - "partTypeInformation" : { - "manufacturerPartId" : "54165444-59", - "customerPartId" : "54165444-59", - "classification" : "component", - "nameAtManufacturer" : "Bumper front", - "nameAtCustomer" : "Bumper front" - } - } ] - }, { - "catenaXId" : "urn:uuid:6fba027e-c935-45b0-a6f8-403702ea4c23", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6fba027e-c935-45b0-a6f8-403702ea4c23", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "22768257-25", - "key" : "manufacturerPartId" - }, { - "value" : "NO-658486934384759545035726", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6fba027e-c935-45b0-a6f8-403702ea4c23", - "partTypeInformation" : { - "manufacturerPartId" : "22768257-25", - "customerPartId" : "22768257-25", - "classification" : "component", - "nameAtManufacturer" : "Bumper rear", - "nameAtCustomer" : "Bumper rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:bc4fe23d-ece8-46e5-9d0e-6601f353dfa8", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bc4fe23d-ece8-46e5-9d0e-6601f353dfa8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "65529521-37", - "key" : "manufacturerPartId" - }, { - "value" : "NO-614460638048248878102995", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:bc4fe23d-ece8-46e5-9d0e-6601f353dfa8", - "partTypeInformation" : { - "manufacturerPartId" : "65529521-37", - "customerPartId" : "65529521-37", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror left", - "nameAtCustomer" : "Exterior mirror left" - } - } ] - }, { - "catenaXId" : "urn:uuid:8770899c-7f00-41d8-98d6-ac134628e9d5", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8770899c-7f00-41d8-98d6-ac134628e9d5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "58471477-24", - "key" : "manufacturerPartId" - }, { - "value" : "NO-449115149956915791439099", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8770899c-7f00-41d8-98d6-ac134628e9d5", - "partTypeInformation" : { - "manufacturerPartId" : "58471477-24", - "customerPartId" : "58471477-24", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror right", - "nameAtCustomer" : "Exterior mirror right" - } - } ] - }, { - "catenaXId" : "urn:uuid:439fd7c7-0b9d-4328-9c05-4ea8d8085d71", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:439fd7c7-0b9d-4328-9c05-4ea8d8085d71", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "09002013-68", - "key" : "manufacturerPartId" - }, { - "value" : "NO-204438835073164301878779", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:439fd7c7-0b9d-4328-9c05-4ea8d8085d71", - "partTypeInformation" : { - "manufacturerPartId" : "09002013-68", - "customerPartId" : "09002013-68", - "classification" : "component", - "nameAtManufacturer" : "Trailer coupling", - "nameAtCustomer" : "Tailer coupling" - } - } ] - }, { - "catenaXId" : "urn:uuid:58c82230-59f7-451b-90fb-264d054a5c46", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:58c82230-59f7-451b-90fb-264d054a5c46", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "43501996-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-512649140284780994519805", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:58c82230-59f7-451b-90fb-264d054a5c46", - "partTypeInformation" : { - "manufacturerPartId" : "43501996-98", - "customerPartId" : "43501996-98", - "classification" : "component", - "nameAtManufacturer" : "Dashboard", - "nameAtCustomer" : "Dashboard" - } - } ] - }, { - "catenaXId" : "urn:uuid:b34e08b1-e463-4f85-9c27-a33e3088b836", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b34e08b1-e463-4f85-9c27-a33e3088b836", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "77795937-13", - "key" : "manufacturerPartId" - }, { - "value" : "NO-345677858128583761333142", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b34e08b1-e463-4f85-9c27-a33e3088b836", - "partTypeInformation" : { - "manufacturerPartId" : "77795937-13", - "customerPartId" : "77795937-13", - "classification" : "component", - "nameAtManufacturer" : "Steering wheel", - "nameAtCustomer" : "Steering wheel" - } - } ] - }, { - "catenaXId" : "urn:uuid:cbe3b7f7-4e18-4777-899a-93690728948f", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cbe3b7f7-4e18-4777-899a-93690728948f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "20125432-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-888826858983049660317921", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cbe3b7f7-4e18-4777-899a-93690728948f", - "partTypeInformation" : { - "manufacturerPartId" : "20125432-59", - "customerPartId" : "20125432-59", - "classification" : "component", - "nameAtManufacturer" : "Indicator left", - "nameAtCustomer" : "Indicator left" - } - } ] - }, { - "catenaXId" : "urn:uuid:4f67f609-aabd-48b5-b40a-9d732d5c5bc5", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4f67f609-aabd-48b5-b40a-9d732d5c5bc5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "19073706-76", - "key" : "manufacturerPartId" - }, { - "value" : "NO-671614100064918978951115", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4f67f609-aabd-48b5-b40a-9d732d5c5bc5", - "partTypeInformation" : { - "manufacturerPartId" : "19073706-76", - "customerPartId" : "19073706-76", - "classification" : "component", - "nameAtManufacturer" : "Indicator right", - "nameAtCustomer" : "Indicator right" - } - } ] - }, { - "catenaXId" : "urn:uuid:5406860f-ed04-443d-b1a9-53c97655d723", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5406860f-ed04-443d-b1a9-53c97655d723", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "45415162-57", - "key" : "manufacturerPartId" - }, { - "value" : "NO-569012315033045056788540", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5406860f-ed04-443d-b1a9-53c97655d723", - "partTypeInformation" : { - "manufacturerPartId" : "45415162-57", - "customerPartId" : "45415162-57", - "classification" : "component", - "nameAtManufacturer" : "Led headlight", - "nameAtCustomer" : "Led headlight" - } - } ] - }, { - "catenaXId" : "urn:uuid:038dbb62-0002-4b46-8e60-72069825192b", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:038dbb62-0002-4b46-8e60-72069825192b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "78141846-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-347396145345678415351836", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:038dbb62-0002-4b46-8e60-72069825192b", - "partTypeInformation" : { - "manufacturerPartId" : "78141846-87", - "customerPartId" : "78141846-87", - "classification" : "component", - "nameAtManufacturer" : "Starter motor", - "nameAtCustomer" : "Starter motor" - } - } ] - }, { - "catenaXId" : "urn:uuid:87b0fc1c-34c5-4542-b516-51c1cb2452fd", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:87b0fc1c-34c5-4542-b516-51c1cb2452fd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "81324139-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-969830982361038556531887", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:87b0fc1c-34c5-4542-b516-51c1cb2452fd", - "partTypeInformation" : { - "manufacturerPartId" : "81324139-23", - "customerPartId" : "81324139-23", - "classification" : "component", - "nameAtManufacturer" : "Alternator", - "nameAtCustomer" : "Alternator" - } - } ] - }, { - "catenaXId" : "urn:uuid:d13cdb52-9c63-4f92-8f68-9a39b5f8ae68", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d13cdb52-9c63-4f92-8f68-9a39b5f8ae68", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "57929013-09", - "key" : "manufacturerPartId" - }, { - "value" : "NO-967382871891451247679927", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d13cdb52-9c63-4f92-8f68-9a39b5f8ae68", - "partTypeInformation" : { - "manufacturerPartId" : "57929013-09", - "customerPartId" : "57929013-09", - "classification" : "component", - "nameAtManufacturer" : "AC compressor", - "nameAtCustomer" : "Air conditioning compressor" - } - } ] - }, { - "catenaXId" : "urn:uuid:8aab254d-eee8-4f80-ae6c-9c4656e792b8", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8aab254d-eee8-4f80-ae6c-9c4656e792b8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "61184040-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-582699886461087299332185", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8aab254d-eee8-4f80-ae6c-9c4656e792b8", - "partTypeInformation" : { - "manufacturerPartId" : "61184040-23", - "customerPartId" : "61184040-23", - "classification" : "component", - "nameAtManufacturer" : "Taillight rear", - "nameAtCustomer" : "Taillight rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:94d30e6d-c2a3-402f-9488-76637fb9ecc9", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:94d30e6d-c2a3-402f-9488-76637fb9ecc9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "78744126-74", - "key" : "manufacturerPartId" - }, { - "value" : "NO-856955361351258923657662", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:94d30e6d-c2a3-402f-9488-76637fb9ecc9", - "partTypeInformation" : { - "manufacturerPartId" : "78744126-74", - "customerPartId" : "78744126-74", - "classification" : "component", - "nameAtManufacturer" : "Taillight front", - "nameAtCustomer" : "Taillight front" - } - } ] - }, { - "catenaXId" : "urn:uuid:b8a8ed36-0c23-40ce-89b6-2445fa0f2272", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b8a8ed36-0c23-40ce-89b6-2445fa0f2272", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "12093297-03", - "key" : "manufacturerPartId" - }, { - "value" : "NO-133180885291378281769543", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b8a8ed36-0c23-40ce-89b6-2445fa0f2272", - "partTypeInformation" : { - "manufacturerPartId" : "12093297-03", - "customerPartId" : "12093297-03", - "classification" : "component", - "nameAtManufacturer" : "Axle part front", - "nameAtCustomer" : "Axle part front" - } - } ] - }, { - "catenaXId" : "urn:uuid:b20940c5-d536-4b61-85a9-1d90e0ad30f8", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b20940c5-d536-4b61-85a9-1d90e0ad30f8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "88111709-49", - "key" : "manufacturerPartId" - }, { - "value" : "NO-075105338488036076151278", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b20940c5-d536-4b61-85a9-1d90e0ad30f8", - "partTypeInformation" : { - "manufacturerPartId" : "88111709-49", - "customerPartId" : "88111709-49", - "classification" : "component", - "nameAtManufacturer" : "Axle part rear", - "nameAtCustomer" : "Axle part rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:44ae8ef1-255a-4ecf-9ac6-f9298f6ee8c7", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:44ae8ef1-255a-4ecf-9ac6-f9298f6ee8c7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "00871379-44", - "key" : "manufacturerPartId" - }, { - "value" : "NO-740305947123152349088990", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:44ae8ef1-255a-4ecf-9ac6-f9298f6ee8c7", - "partTypeInformation" : { - "manufacturerPartId" : "00871379-44", - "customerPartId" : "00871379-44", - "classification" : "component", - "nameAtManufacturer" : "Chassis", - "nameAtCustomer" : "Chassis" - } - } ] - }, { - "catenaXId" : "urn:uuid:427d294c-3f67-46b6-9726-fc4a5ca9c39f", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:427d294c-3f67-46b6-9726-fc4a5ca9c39f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "08901347-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-597382242720979512948025", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:427d294c-3f67-46b6-9726-fc4a5ca9c39f", - "partTypeInformation" : { - "manufacturerPartId" : "08901347-87", - "customerPartId" : "08901347-87", - "classification" : "component", - "nameAtManufacturer" : "Rims", - "nameAtCustomer" : "Rims" - } - } ] - }, { - "catenaXId" : "urn:uuid:2dce01a3-f272-4fa3-8117-59c068094412", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2dce01a3-f272-4fa3-8117-59c068094412", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "45863316-60", - "key" : "manufacturerPartId" - }, { - "value" : "NO-503316293007447385318784", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2dce01a3-f272-4fa3-8117-59c068094412", - "partTypeInformation" : { - "manufacturerPartId" : "45863316-60", - "customerPartId" : "45863316-60", - "classification" : "component", - "nameAtManufacturer" : "Tires", - "nameAtCustomer" : "Tires" - } - } ] - }, { - "catenaXId" : "urn:uuid:e55dfd56-4a4a-4d0c-9b44-8dcfcc451e3b", - "bpnl" : "BPNL00000003B2OM", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e55dfd56-4a4a-4d0c-9b44-8dcfcc451e3b", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B2OM", - "key" : "manufacturerId" - }, { - "value" : "1O222E8-43", - "key" : "manufacturerPartId" - }, { - "value" : "NO-024164785385507085333555", - "key" : "partInstanceId" - }, { - "value" : "Company 2", - "key" : "company" - }, { - "value" : "Brand 2", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e55dfd56-4a4a-4d0c-9b44-8dcfcc451e3b", - "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:e55dfd56-4a4a-4d0c-9b44-8dcfcc451e3b", - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-024164785385507085333555", - "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.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Carbon Steel", - "recycledContent" : 29, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 72.843 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - }, { - "materialName" : "Oil", - "recycledContent" : 73, - "materialClass" : "9.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 6.9 - }, - "aggregateState" : "liquid", - "materialAbbreviation" : "SAE40" - }, { - "materialName" : "Copper", - "recycledContent" : 45, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e55dfd56-4a4a-4d0c-9b44-8dcfcc451e3b", - "childItems" : [ { - "catenaXId" : "urn:uuid:23809861-230e-4607-96ae-c1da608da87d", - "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9fabe28f-05f9-49a4-94f5-6c496e9cc7d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e37f079b-e881-4849-b90c-34151caab314", - "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:23809861-230e-4607-96ae-c1da608da87d", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:23809861-230e-4607-96ae-c1da608da87d", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:23809861-230e-4607-96ae-c1da608da87d", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e55dfd56-4a4a-4d0c-9b44-8dcfcc451e3b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Engineering Plastics", - "materialClass" : "5.1", - "component" : [ { - "materialName" : "PA66", - "recycledContent" : 38, - "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" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:9fabe28f-05f9-49a4-94f5-6c496e9cc7d3", - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9fabe28f-05f9-49a4-94f5-6c496e9cc7d3", - "customers" : [ { - "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e55dfd56-4a4a-4d0c-9b44-8dcfcc451e3b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "44484G3-94", - "key" : "manufacturerPartId" - }, { - "value" : "NO-217395336104491636255568", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9fabe28f-05f9-49a4-94f5-6c496e9cc7d3", - "partTypeInformation" : { - "manufacturerPartId" : "44484G3-94", - "customerPartId" : "44484G3-94", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9fabe28f-05f9-49a4-94f5-6c496e9cc7d3", - "childItems" : [ { - "catenaXId" : "urn:uuid:7ef700be-0c0c-4e6b-9b84-df3db1f2eb7d", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:7ef700be-0c0c-4e6b-9b84-df3db1f2eb7d", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:7ef700be-0c0c-4e6b-9b84-df3db1f2eb7d", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "NTIER Product" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7ef700be-0c0c-4e6b-9b84-df3db1f2eb7d", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:9fabe28f-05f9-49a4-94f5-6c496e9cc7d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "NTIER Product", - "materialClass" : "5.5", - "component" : [ { - "materialName" : "Aluminium oxide", - "recycledContent" : 63, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 60 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - }, { - "materialName" : "Other", - "recycledContent" : 27, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:percent", - "value" : 40 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:e37f079b-e881-4849-b90c-34151caab314", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:e37f079b-e881-4849-b90c-34151caab314", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e37f079b-e881-4849-b90c-34151caab314", - "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e55dfd56-4a4a-4d0c-9b44-8dcfcc451e3b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.2341", - "materialAbbreviation" : "GL338" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e37f079b-e881-4849-b90c-34151caab314", - "childItems" : [ ] - } ] - }, { - "catenaXId" : "urn:uuid:11db0fa4-c7d5-44c0-b4f3-5debd6a16b27", - "bpnl" : "BPNL00000003B5MJ", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:11db0fa4-c7d5-44c0-b4f3-5debd6a16b27", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", - "key" : "manufacturerId" - }, { - "value" : "87248B3-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-446254057658407669235592", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:11db0fa4-c7d5-44c0-b4f3-5debd6a16b27", - "partTypeInformation" : { - "manufacturerPartId" : "87248B3-98", - "customerPartId" : "87248B3-98", - "classification" : "component", - "nameAtManufacturer" : "ECU", - "nameAtCustomer" : "ECU" - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "recycledContent" : 56, - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.3301 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GL338" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:11db0fa4-c7d5-44c0-b4f3-5debd6a16b27", - "childItems" : [ { - "catenaXId" : "urn:uuid:ed8a56d3-c53c-4a48-ae6a-5f27b5f4fdd1", - "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e11583b0-b604-4e95-8de6-02fb841be661", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:513d1091-32f9-4a77-b519-eccf8970e5f8", - "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:ed8a56d3-c53c-4a48-ae6a-5f27b5f4fdd1", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:ed8a56d3-c53c-4a48-ae6a-5f27b5f4fdd1", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ed8a56d3-c53c-4a48-ae6a-5f27b5f4fdd1", - "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11db0fa4-c7d5-44c0-b4f3-5debd6a16b27", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Glue", - "materialClass" : "5.5", - "component" : [ { - "materialName" : "Aluminium oxide", - "recycledContent" : 85, - "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" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:e11583b0-b604-4e95-8de6-02fb841be661", - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e11583b0-b604-4e95-8de6-02fb841be661", - "customers" : [ { - "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11db0fa4-c7d5-44c0-b4f3-5debd6a16b27", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "68558Y1-60", - "key" : "manufacturerPartId" - }, { - "value" : "NO-183849572176889988562766", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e11583b0-b604-4e95-8de6-02fb841be661", - "partTypeInformation" : { - "manufacturerPartId" : "68558Y1-60", - "customerPartId" : "68558Y1-60", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e11583b0-b604-4e95-8de6-02fb841be661", - "childItems" : [ { - "catenaXId" : "urn:uuid:db607be6-44f7-454a-bb39-c5c25acdb082", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:db607be6-44f7-454a-bb39-c5c25acdb082", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:db607be6-44f7-454a-bb39-c5c25acdb082", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:db607be6-44f7-454a-bb39-c5c25acdb082", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e11583b0-b604-4e95-8de6-02fb841be661", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn: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" : 35, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 30 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:513d1091-32f9-4a77-b519-eccf8970e5f8", - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:513d1091-32f9-4a77-b519-eccf8970e5f8", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11db0fa4-c7d5-44c0-b4f3-5debd6a16b27", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "44741Z6-33", - "key" : "manufacturerPartId" - }, { - "value" : "NO-102406153464907218784811", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:513d1091-32f9-4a77-b519-eccf8970e5f8", - "partTypeInformation" : { - "manufacturerPartId" : "44741Z6-33", - "customerPartId" : "44741Z6-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" : 55, - "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.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" - } ], - "catenaXId" : "urn:uuid:7831bdbb-a48e-43b7-b835-4f56b17045fd", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7831bdbb-a48e-43b7-b835-4f56b17045fd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:373bba35-9274-491a-828f-090b98c32233", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "38049661-08", - "key" : "manufacturerPartId" - }, { - "value" : "NO-287591900713687590940769", - "key" : "partInstanceId" - }, { - "value" : "Company 1", - "key" : "company" - }, { - "value" : "Brand 1", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7831bdbb-a48e-43b7-b835-4f56b17045fd", - "partTypeInformation" : { - "manufacturerPartId" : "38049661-08", - "customerPartId" : "38049661-08", - "classification" : "component", - "nameAtManufacturer" : "Battery", - "nameAtCustomer" : "Battery" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "pack" - } ], - "productType" : "pack" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-287591900713687590940769", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 11, - "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" : false, - "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" : "38049661-08", - "technicalSpecification" : [ { - "technicalValue" : "RYtGKbgicZaHCBRQDSx", - "key" : "JxkyvRnL" - } ], - "productLink" : "https://123", - "oeNumber" : "NO-287591900713687590940769", - "category" : { - "subCategory" : [ "Battery" ], - "mainCategory" : [ "Audio, video, navigation" ] - }, - "originalManufacturer" : "Company 1", - "brand" : "Brand 1", - "productDescription" : "Battery" - }, - "sku" : "1002090, xYz.09, ABcXYZ", - "mileage" : 120000.06 - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "38049661-08", - "manufacturerPartId" : "38049661-08" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a Battery", - "class" : { - "code" : "27-05-02-91", - "definition" : "Traction battery, starter battery (parts)" - }, - "nameAtManufacturer" : "Battery", - "nameAtCustomer" : "Battery" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AYRE", - "eori" : "DE012345678901" - }, - "issueDate" : "2023-07-27", - "version" : 2.6, - "status" : "Approved" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 1410.0278, - "width" : 1410, - "length" : 2024, - "weight" : 427, - "height" : 360 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 16 - } - }, - "commercial" : { - "placedOnMarket" : "2023-06-17", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-287591900713687590940769", - "key" : "PartInstanceID" - } ], - "gtin" : " 93404913", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "439360577" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Passport", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-09-20", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 1.2958 ] - }, - "id" : "NG6112" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : false, - "percentage" : 5, - "name" : "Graphite" - } ], - "critical" : [ "Lithium" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 116 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AXS3", - "manufacturer" : { - "facilityId" : "BPNL00000003AYRE", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7831bdbb-a48e-43b7-b835-4f56b17045fd", - "childItems" : [ { - "catenaXId" : "urn:uuid:d872c42a-1a3c-49fc-b564-4351054e342d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d13b0f92-67f8-458f-a9c9-4bde238f347a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b84c99f6-6264-4ac7-babe-4b8e2f1db859", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:629e9481-bdc0-4219-915a-55e00ee7e8a5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f9e80080-e325-4b0a-aaee-f4e5d3b04e50", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:377fd1d4-1699-40d2-8111-b1ebb6560755", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:d872c42a-1a3c-49fc-b564-4351054e342d", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d872c42a-1a3c-49fc-b564-4351054e342d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7831bdbb-a48e-43b7-b835-4f56b17045fd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-660796334175761377961092", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d872c42a-1a3c-49fc-b564-4351054e342d", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-660796334175761377961092", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 83, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AYRE", - "eori" : "DE012345678901" - }, - "issueDate" : "2021-06-05", - "version" : 1.4, - "status" : "Approved" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.688, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 19 - } - }, - "commercial" : { - "placedOnMarket" : "2020-12-23", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-660796334175761377961092", - "key" : "PartInstanceID" - } ], - "gtin" : " 54954208", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "631186158" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2021-06-16", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : false, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 3.5664 ] - }, - "id" : "SY8391" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : true, - "renewable" : false, - "percentage" : 5, - "name" : "Sealant" - } ], - "critical" : [ "Lithium" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 100 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003B2OM", - "manufacturer" : { - "facilityId" : "BPNL00000003B3NX", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d872c42a-1a3c-49fc-b564-4351054e342d", - "childItems" : [ { - "catenaXId" : "urn:uuid:533543fb-5d09-4270-b4d5-0323de239d9a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cd678947-8426-44b7-b2b3-91d2edac3929", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:583592c3-2957-472f-823a-4ac7eefa0ffd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f47f9e5d-f685-4417-9519-caf64c16a7be", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2b6d1714-8a6e-41da-a91b-a59e5bd534b7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:03ef87c6-aeb8-40d1-9670-719b88c5c7a1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d38541bf-d0d1-4b31-9981-a502e22238e1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7f9a5a08-91f1-4e98-b3ec-6d6be163162f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7106ceea-765c-424f-b261-56d0e8b1c9b3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7ea4fc7b-63cc-420f-970a-0c0968dc1391", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:90d5da4e-2a02-433c-8618-8d7f7f824651", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:cd678947-8426-44b7-b2b3-91d2edac3929", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cd678947-8426-44b7-b2b3-91d2edac3929", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d872c42a-1a3c-49fc-b564-4351054e342d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-400554526524577054763798", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cd678947-8426-44b7-b2b3-91d2edac3929", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-400554526524577054763798", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cd678947-8426-44b7-b2b3-91d2edac3929", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-03-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-20", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:583592c3-2957-472f-823a-4ac7eefa0ffd", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:583592c3-2957-472f-823a-4ac7eefa0ffd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d872c42a-1a3c-49fc-b564-4351054e342d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-116422253745018570816473", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:583592c3-2957-472f-823a-4ac7eefa0ffd", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-116422253745018570816473", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:583592c3-2957-472f-823a-4ac7eefa0ffd", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-08-24", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f47f9e5d-f685-4417-9519-caf64c16a7be", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f47f9e5d-f685-4417-9519-caf64c16a7be", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d872c42a-1a3c-49fc-b564-4351054e342d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-624372561432458036774513", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f47f9e5d-f685-4417-9519-caf64c16a7be", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-624372561432458036774513", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f47f9e5d-f685-4417-9519-caf64c16a7be", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-02-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-28", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2b6d1714-8a6e-41da-a91b-a59e5bd534b7", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2b6d1714-8a6e-41da-a91b-a59e5bd534b7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d872c42a-1a3c-49fc-b564-4351054e342d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-805655947225666304091676", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2b6d1714-8a6e-41da-a91b-a59e5bd534b7", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-805655947225666304091676", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2b6d1714-8a6e-41da-a91b-a59e5bd534b7", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-10-13", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-31", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:03ef87c6-aeb8-40d1-9670-719b88c5c7a1", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:03ef87c6-aeb8-40d1-9670-719b88c5c7a1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d872c42a-1a3c-49fc-b564-4351054e342d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-302532321792783254898806", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:03ef87c6-aeb8-40d1-9670-719b88c5c7a1", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-302532321792783254898806", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:03ef87c6-aeb8-40d1-9670-719b88c5c7a1", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-07-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d38541bf-d0d1-4b31-9981-a502e22238e1", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d38541bf-d0d1-4b31-9981-a502e22238e1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d872c42a-1a3c-49fc-b564-4351054e342d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-853055413990124583230821", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d38541bf-d0d1-4b31-9981-a502e22238e1", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-853055413990124583230821", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d38541bf-d0d1-4b31-9981-a502e22238e1", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-12-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-10", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7f9a5a08-91f1-4e98-b3ec-6d6be163162f", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7f9a5a08-91f1-4e98-b3ec-6d6be163162f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d872c42a-1a3c-49fc-b564-4351054e342d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-949032586010501700738022", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7f9a5a08-91f1-4e98-b3ec-6d6be163162f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-949032586010501700738022", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7f9a5a08-91f1-4e98-b3ec-6d6be163162f", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-12-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7106ceea-765c-424f-b261-56d0e8b1c9b3", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7106ceea-765c-424f-b261-56d0e8b1c9b3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d872c42a-1a3c-49fc-b564-4351054e342d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-534356578703061182178544", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7106ceea-765c-424f-b261-56d0e8b1c9b3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-534356578703061182178544", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7106ceea-765c-424f-b261-56d0e8b1c9b3", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-08-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7ea4fc7b-63cc-420f-970a-0c0968dc1391", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7ea4fc7b-63cc-420f-970a-0c0968dc1391", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d872c42a-1a3c-49fc-b564-4351054e342d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-453555034847443832929756", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7ea4fc7b-63cc-420f-970a-0c0968dc1391", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-453555034847443832929756", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7ea4fc7b-63cc-420f-970a-0c0968dc1391", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-01-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-23", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:90d5da4e-2a02-433c-8618-8d7f7f824651", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:90d5da4e-2a02-433c-8618-8d7f7f824651", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d872c42a-1a3c-49fc-b564-4351054e342d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-695945825737270221662867", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:90d5da4e-2a02-433c-8618-8d7f7f824651", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-695945825737270221662867", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:90d5da4e-2a02-433c-8618-8d7f7f824651", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-07-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d13b0f92-67f8-458f-a9c9-4bde238f347a", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d13b0f92-67f8-458f-a9c9-4bde238f347a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7831bdbb-a48e-43b7-b835-4f56b17045fd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-452833323187451177024601", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d13b0f92-67f8-458f-a9c9-4bde238f347a", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-452833323187451177024601", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 20, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AYRE", - "eori" : "DE012345678901" - }, - "issueDate" : "2023-06-23", - "version" : 1, - "status" : "Approved" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.67079999999999, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 15 - } - }, - "commercial" : { - "placedOnMarket" : "2023-03-04", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-452833323187451177024601", - "key" : "PartInstanceID" - } ], - "gtin" : " 30403418", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "879108799" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Passport", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-09-29", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 3.5652 ] - }, - "id" : "MZ2812" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : false, - "percentage" : 5, - "name" : "Insulator" - } ], - "critical" : [ "Cobalt" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 115 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AYRE", - "manufacturer" : { - "facilityId" : "BPNL00000003AYRE", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d13b0f92-67f8-458f-a9c9-4bde238f347a", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c0d5ac67-29ab-44fa-ad6d-aaf52f06e628", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:45efa60f-2ae8-4066-a717-0d2ca43f2dcd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:06c291b8-0dbb-4895-ba43-9e6c788707c5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:57ed2bf7-6b2f-481c-a30f-f92ff85487a3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:74c3d93a-2036-4a6c-adff-ebb7a3a9aca4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:47ad4e86-242d-4b30-84f8-ca56405772d8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ce8e4245-627c-4a86-b524-5e26810966c7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f033bdbd-d5d1-419b-9a84-def5b0b67fde", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c6915c6f-993b-4fd3-88e6-b44b7522127c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9faa27f1-ed5b-4f78-b418-9065e0a0172a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:c0d5ac67-29ab-44fa-ad6d-aaf52f06e628", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c0d5ac67-29ab-44fa-ad6d-aaf52f06e628", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d13b0f92-67f8-458f-a9c9-4bde238f347a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-744122500139523981797576", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c0d5ac67-29ab-44fa-ad6d-aaf52f06e628", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-744122500139523981797576", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c0d5ac67-29ab-44fa-ad6d-aaf52f06e628", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-08-18", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-06", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:45efa60f-2ae8-4066-a717-0d2ca43f2dcd", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:45efa60f-2ae8-4066-a717-0d2ca43f2dcd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d13b0f92-67f8-458f-a9c9-4bde238f347a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-839189940393511841589929", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:45efa60f-2ae8-4066-a717-0d2ca43f2dcd", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-839189940393511841589929", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:45efa60f-2ae8-4066-a717-0d2ca43f2dcd", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-01-03", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:06c291b8-0dbb-4895-ba43-9e6c788707c5", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:06c291b8-0dbb-4895-ba43-9e6c788707c5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d13b0f92-67f8-458f-a9c9-4bde238f347a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-145055119679089549675263", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:06c291b8-0dbb-4895-ba43-9e6c788707c5", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-145055119679089549675263", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:06c291b8-0dbb-4895-ba43-9e6c788707c5", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-04-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:57ed2bf7-6b2f-481c-a30f-f92ff85487a3", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:57ed2bf7-6b2f-481c-a30f-f92ff85487a3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d13b0f92-67f8-458f-a9c9-4bde238f347a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-356595899935537929658922", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:57ed2bf7-6b2f-481c-a30f-f92ff85487a3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-356595899935537929658922", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:57ed2bf7-6b2f-481c-a30f-f92ff85487a3", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-09-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:74c3d93a-2036-4a6c-adff-ebb7a3a9aca4", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:74c3d93a-2036-4a6c-adff-ebb7a3a9aca4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d13b0f92-67f8-458f-a9c9-4bde238f347a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-670851052145644410540410", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:74c3d93a-2036-4a6c-adff-ebb7a3a9aca4", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-670851052145644410540410", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:74c3d93a-2036-4a6c-adff-ebb7a3a9aca4", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-03-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:47ad4e86-242d-4b30-84f8-ca56405772d8", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:47ad4e86-242d-4b30-84f8-ca56405772d8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d13b0f92-67f8-458f-a9c9-4bde238f347a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-021611357380920092632848", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:47ad4e86-242d-4b30-84f8-ca56405772d8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-021611357380920092632848", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:47ad4e86-242d-4b30-84f8-ca56405772d8", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-02-10", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:ce8e4245-627c-4a86-b524-5e26810966c7", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ce8e4245-627c-4a86-b524-5e26810966c7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d13b0f92-67f8-458f-a9c9-4bde238f347a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-097141818355934034487869", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ce8e4245-627c-4a86-b524-5e26810966c7", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-097141818355934034487869", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ce8e4245-627c-4a86-b524-5e26810966c7", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-01-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f033bdbd-d5d1-419b-9a84-def5b0b67fde", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f033bdbd-d5d1-419b-9a84-def5b0b67fde", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d13b0f92-67f8-458f-a9c9-4bde238f347a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-395283637903988879642952", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f033bdbd-d5d1-419b-9a84-def5b0b67fde", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-395283637903988879642952", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f033bdbd-d5d1-419b-9a84-def5b0b67fde", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-01-13", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c6915c6f-993b-4fd3-88e6-b44b7522127c", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c6915c6f-993b-4fd3-88e6-b44b7522127c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d13b0f92-67f8-458f-a9c9-4bde238f347a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-510216221603726199981614", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c6915c6f-993b-4fd3-88e6-b44b7522127c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-510216221603726199981614", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c6915c6f-993b-4fd3-88e6-b44b7522127c", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-01-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9faa27f1-ed5b-4f78-b418-9065e0a0172a", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9faa27f1-ed5b-4f78-b418-9065e0a0172a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d13b0f92-67f8-458f-a9c9-4bde238f347a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-261089734575726424614007", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9faa27f1-ed5b-4f78-b418-9065e0a0172a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-261089734575726424614007", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9faa27f1-ed5b-4f78-b418-9065e0a0172a", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-02-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b84c99f6-6264-4ac7-babe-4b8e2f1db859", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b84c99f6-6264-4ac7-babe-4b8e2f1db859", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7831bdbb-a48e-43b7-b835-4f56b17045fd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-493621119197100865630404", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b84c99f6-6264-4ac7-babe-4b8e2f1db859", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-493621119197100865630404", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 55, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AYRE", - "eori" : "DE012345678901" - }, - "issueDate" : "2023-06-22", - "version" : 2.3, - "status" : "Invalid" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.6966, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 17 - } - }, - "commercial" : { - "placedOnMarket" : "2023-04-06", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-493621119197100865630404", - "key" : "PartInstanceID" - } ], - "gtin" : " 68168716", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "913525248" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-07-08", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 8.0004 ] - }, - "id" : "LM7328" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : false, - "percentage" : 5, - "name" : "Graphite" - } ], - "critical" : [ "Cobalt" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 115 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AYRE", - "manufacturer" : { - "facilityId" : "BPNL00000003B3NX", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b84c99f6-6264-4ac7-babe-4b8e2f1db859", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:949be2eb-0b61-462e-9e1c-37c06d9ee69e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6aecd80d-6c58-4d11-9e59-63478f7c7680", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:dd708f81-3b3b-4a48-bfe2-a28d94467572", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9ca99e5b-d735-4405-a59e-f685f3fab056", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1a8b3535-789e-40dd-a696-2ff7fa3b6687", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d3102144-7c05-4475-a59a-927c7bfa9f39", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cfb342c1-ce1b-4e2f-8a4d-c99e2311df33", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c65f9853-ae81-438b-9cb1-c4ac2345f16a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:60957685-cffb-408e-8819-107e3c51387b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0d1f67d8-8bb3-4b68-be41-60b7ecd52a93", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:949be2eb-0b61-462e-9e1c-37c06d9ee69e", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:949be2eb-0b61-462e-9e1c-37c06d9ee69e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b84c99f6-6264-4ac7-babe-4b8e2f1db859", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-365743915194938431085623", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:949be2eb-0b61-462e-9e1c-37c06d9ee69e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-365743915194938431085623", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:949be2eb-0b61-462e-9e1c-37c06d9ee69e", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-05-12", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-06", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6aecd80d-6c58-4d11-9e59-63478f7c7680", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6aecd80d-6c58-4d11-9e59-63478f7c7680", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b84c99f6-6264-4ac7-babe-4b8e2f1db859", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-288704925474957079398301", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6aecd80d-6c58-4d11-9e59-63478f7c7680", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-288704925474957079398301", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6aecd80d-6c58-4d11-9e59-63478f7c7680", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-06-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:dd708f81-3b3b-4a48-bfe2-a28d94467572", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:dd708f81-3b3b-4a48-bfe2-a28d94467572", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b84c99f6-6264-4ac7-babe-4b8e2f1db859", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-187590536901419028710376", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:dd708f81-3b3b-4a48-bfe2-a28d94467572", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-187590536901419028710376", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:dd708f81-3b3b-4a48-bfe2-a28d94467572", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-12-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9ca99e5b-d735-4405-a59e-f685f3fab056", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9ca99e5b-d735-4405-a59e-f685f3fab056", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b84c99f6-6264-4ac7-babe-4b8e2f1db859", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-758397904739929479241088", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9ca99e5b-d735-4405-a59e-f685f3fab056", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-758397904739929479241088", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9ca99e5b-d735-4405-a59e-f685f3fab056", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-06-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1a8b3535-789e-40dd-a696-2ff7fa3b6687", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1a8b3535-789e-40dd-a696-2ff7fa3b6687", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b84c99f6-6264-4ac7-babe-4b8e2f1db859", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-514552324575000906017637", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1a8b3535-789e-40dd-a696-2ff7fa3b6687", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-514552324575000906017637", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1a8b3535-789e-40dd-a696-2ff7fa3b6687", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-06-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-03", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d3102144-7c05-4475-a59a-927c7bfa9f39", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d3102144-7c05-4475-a59a-927c7bfa9f39", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b84c99f6-6264-4ac7-babe-4b8e2f1db859", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-367087787257663460835228", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d3102144-7c05-4475-a59a-927c7bfa9f39", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-367087787257663460835228", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d3102144-7c05-4475-a59a-927c7bfa9f39", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-10-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:cfb342c1-ce1b-4e2f-8a4d-c99e2311df33", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cfb342c1-ce1b-4e2f-8a4d-c99e2311df33", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b84c99f6-6264-4ac7-babe-4b8e2f1db859", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-845099233400766807939784", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cfb342c1-ce1b-4e2f-8a4d-c99e2311df33", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-845099233400766807939784", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cfb342c1-ce1b-4e2f-8a4d-c99e2311df33", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-01-03", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c65f9853-ae81-438b-9cb1-c4ac2345f16a", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c65f9853-ae81-438b-9cb1-c4ac2345f16a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b84c99f6-6264-4ac7-babe-4b8e2f1db859", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-876411410678728221117364", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c65f9853-ae81-438b-9cb1-c4ac2345f16a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-876411410678728221117364", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c65f9853-ae81-438b-9cb1-c4ac2345f16a", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-10-14", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:60957685-cffb-408e-8819-107e3c51387b", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:60957685-cffb-408e-8819-107e3c51387b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b84c99f6-6264-4ac7-babe-4b8e2f1db859", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-664621449229044400536974", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:60957685-cffb-408e-8819-107e3c51387b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-664621449229044400536974", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:60957685-cffb-408e-8819-107e3c51387b", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-10-30", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0d1f67d8-8bb3-4b68-be41-60b7ecd52a93", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0d1f67d8-8bb3-4b68-be41-60b7ecd52a93", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b84c99f6-6264-4ac7-babe-4b8e2f1db859", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-641445980618895829016627", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0d1f67d8-8bb3-4b68-be41-60b7ecd52a93", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-641445980618895829016627", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0d1f67d8-8bb3-4b68-be41-60b7ecd52a93", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-06-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:629e9481-bdc0-4219-915a-55e00ee7e8a5", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:629e9481-bdc0-4219-915a-55e00ee7e8a5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7831bdbb-a48e-43b7-b835-4f56b17045fd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-867888554814237482785056", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:629e9481-bdc0-4219-915a-55e00ee7e8a5", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-867888554814237482785056", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 2, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 31, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AYRE", - "eori" : "DE012345678901" - }, - "issueDate" : "2023-07-15", - "version" : 2.9, - "status" : "Expired" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.6693, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 15 - } - }, - "commercial" : { - "placedOnMarket" : "2023-05-26", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-867888554814237482785056", - "key" : "PartInstanceID" - } ], - "gtin" : " 65581415", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "847005943" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "SubstanceOfConcern", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-07-29", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 3.5508 ] - }, - "id" : "VV1721" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : false, - "percentage" : 5, - "name" : "Manganese" - } ], - "critical" : [ "Manganese" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 123 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AYRE", - "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:629e9481-bdc0-4219-915a-55e00ee7e8a5", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:93be052d-103c-4a7f-ac33-a15b42d372a9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d05aee7f-a772-4f6a-a553-c4c4c9461f02", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f4249b79-0f82-4627-9ce3-76429f511931", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:26703097-4b49-4d94-a827-ca48a1136fae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0ed89299-598e-43e6-ac62-e56f67229647", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:52cb1542-0e2f-4e55-b79a-0f3c01d88c0c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0bbba300-7d5e-42b3-95d6-4b999dee4152", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1d1a335a-1622-4e1a-99ea-f1ec839bf47c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:718ba991-50e0-4f9f-9540-0fd15a2c9c8f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f0ce2ce7-aef1-42de-a316-aaa1b0d20f64", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:93be052d-103c-4a7f-ac33-a15b42d372a9", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:93be052d-103c-4a7f-ac33-a15b42d372a9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:629e9481-bdc0-4219-915a-55e00ee7e8a5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-642091802144188798583959", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:93be052d-103c-4a7f-ac33-a15b42d372a9", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-642091802144188798583959", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:93be052d-103c-4a7f-ac33-a15b42d372a9", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-07-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d05aee7f-a772-4f6a-a553-c4c4c9461f02", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d05aee7f-a772-4f6a-a553-c4c4c9461f02", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:629e9481-bdc0-4219-915a-55e00ee7e8a5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-350878763393992292173990", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d05aee7f-a772-4f6a-a553-c4c4c9461f02", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-350878763393992292173990", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d05aee7f-a772-4f6a-a553-c4c4c9461f02", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-02-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f4249b79-0f82-4627-9ce3-76429f511931", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f4249b79-0f82-4627-9ce3-76429f511931", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:629e9481-bdc0-4219-915a-55e00ee7e8a5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-456762106567019646739518", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f4249b79-0f82-4627-9ce3-76429f511931", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-456762106567019646739518", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f4249b79-0f82-4627-9ce3-76429f511931", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-02-13", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:26703097-4b49-4d94-a827-ca48a1136fae", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:26703097-4b49-4d94-a827-ca48a1136fae", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:629e9481-bdc0-4219-915a-55e00ee7e8a5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-376760522312345168215874", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:26703097-4b49-4d94-a827-ca48a1136fae", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-376760522312345168215874", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:26703097-4b49-4d94-a827-ca48a1136fae", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-01-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0ed89299-598e-43e6-ac62-e56f67229647", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0ed89299-598e-43e6-ac62-e56f67229647", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:629e9481-bdc0-4219-915a-55e00ee7e8a5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-384157581149931590603111", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0ed89299-598e-43e6-ac62-e56f67229647", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-384157581149931590603111", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0ed89299-598e-43e6-ac62-e56f67229647", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-10-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:52cb1542-0e2f-4e55-b79a-0f3c01d88c0c", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:52cb1542-0e2f-4e55-b79a-0f3c01d88c0c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:629e9481-bdc0-4219-915a-55e00ee7e8a5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-418243248203972987984419", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:52cb1542-0e2f-4e55-b79a-0f3c01d88c0c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-418243248203972987984419", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:52cb1542-0e2f-4e55-b79a-0f3c01d88c0c", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-04-12", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0bbba300-7d5e-42b3-95d6-4b999dee4152", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0bbba300-7d5e-42b3-95d6-4b999dee4152", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:629e9481-bdc0-4219-915a-55e00ee7e8a5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-286700554789286876551035", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0bbba300-7d5e-42b3-95d6-4b999dee4152", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-286700554789286876551035", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0bbba300-7d5e-42b3-95d6-4b999dee4152", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-12-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1d1a335a-1622-4e1a-99ea-f1ec839bf47c", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1d1a335a-1622-4e1a-99ea-f1ec839bf47c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:629e9481-bdc0-4219-915a-55e00ee7e8a5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-134758950286810175478152", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1d1a335a-1622-4e1a-99ea-f1ec839bf47c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-134758950286810175478152", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1d1a335a-1622-4e1a-99ea-f1ec839bf47c", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-10-31", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:718ba991-50e0-4f9f-9540-0fd15a2c9c8f", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:718ba991-50e0-4f9f-9540-0fd15a2c9c8f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:629e9481-bdc0-4219-915a-55e00ee7e8a5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-820497088324299827412952", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:718ba991-50e0-4f9f-9540-0fd15a2c9c8f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-820497088324299827412952", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:718ba991-50e0-4f9f-9540-0fd15a2c9c8f", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-10-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-16", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f0ce2ce7-aef1-42de-a316-aaa1b0d20f64", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f0ce2ce7-aef1-42de-a316-aaa1b0d20f64", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:629e9481-bdc0-4219-915a-55e00ee7e8a5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-276130290739344384449280", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f0ce2ce7-aef1-42de-a316-aaa1b0d20f64", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-276130290739344384449280", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f0ce2ce7-aef1-42de-a316-aaa1b0d20f64", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-03-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-23", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f9e80080-e325-4b0a-aaee-f4e5d3b04e50", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f9e80080-e325-4b0a-aaee-f4e5d3b04e50", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7831bdbb-a48e-43b7-b835-4f56b17045fd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-181362049522297310630518", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f9e80080-e325-4b0a-aaee-f4e5d3b04e50", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-181362049522297310630518", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 27, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 22, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AYRE", - "eori" : "DE012345678901" - }, - "issueDate" : "2023-08-18", - "version" : 2.3, - "status" : "Invalid" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.69119999999998, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 18 - } - }, - "commercial" : { - "placedOnMarket" : "2021-05-28", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-181362049522297310630518", - "key" : "PartInstanceID" - } ], - "gtin" : " 70317136", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "631880631" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-08-29", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 0.4664 ] - }, - "id" : "JI5290" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : true, - "renewable" : false, - "percentage" : 5, - "name" : "Cobalt" - } ], - "critical" : [ "Lithium" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 113 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003B2OM", - "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f9e80080-e325-4b0a-aaee-f4e5d3b04e50", - "childItems" : [ { - "catenaXId" : "urn:uuid:533543fb-5d09-4270-b4d5-0323de239d9a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b0a74556-d7af-4d60-87ab-6700f0bb1ea5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:da3e663d-5864-409e-8e6d-1835a7080251", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ec12fe71-caf9-4a32-843f-2f2c03bf00e4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f920fafd-b0b2-46a3-b1ae-de453c5f5794", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a7c98a8f-8be9-4e0f-a3dd-dfdc966b7d87", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:645a0e13-31e9-4b11-bccd-b946ce2cdaf3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a28e3258-e3f9-49a2-8050-fe89f6cb1c98", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5dd093cf-65fe-4f4d-b49b-6f6fa74a15b9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a45fbde4-aafd-482e-a77b-b3b407a22f03", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c4b5b208-45be-42b2-ab54-23c07c056ac3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:b0a74556-d7af-4d60-87ab-6700f0bb1ea5", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b0a74556-d7af-4d60-87ab-6700f0bb1ea5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f9e80080-e325-4b0a-aaee-f4e5d3b04e50", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-257778560328923736011025", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b0a74556-d7af-4d60-87ab-6700f0bb1ea5", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-257778560328923736011025", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b0a74556-d7af-4d60-87ab-6700f0bb1ea5", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-11-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:da3e663d-5864-409e-8e6d-1835a7080251", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:da3e663d-5864-409e-8e6d-1835a7080251", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f9e80080-e325-4b0a-aaee-f4e5d3b04e50", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-008325127632335662918227", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:da3e663d-5864-409e-8e6d-1835a7080251", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-008325127632335662918227", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:da3e663d-5864-409e-8e6d-1835a7080251", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-01-10", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:ec12fe71-caf9-4a32-843f-2f2c03bf00e4", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ec12fe71-caf9-4a32-843f-2f2c03bf00e4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f9e80080-e325-4b0a-aaee-f4e5d3b04e50", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-286173602923935121471303", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ec12fe71-caf9-4a32-843f-2f2c03bf00e4", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-286173602923935121471303", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ec12fe71-caf9-4a32-843f-2f2c03bf00e4", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-12-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f920fafd-b0b2-46a3-b1ae-de453c5f5794", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f920fafd-b0b2-46a3-b1ae-de453c5f5794", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f9e80080-e325-4b0a-aaee-f4e5d3b04e50", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-903221124658285017057135", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f920fafd-b0b2-46a3-b1ae-de453c5f5794", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-903221124658285017057135", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f920fafd-b0b2-46a3-b1ae-de453c5f5794", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-08-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a7c98a8f-8be9-4e0f-a3dd-dfdc966b7d87", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a7c98a8f-8be9-4e0f-a3dd-dfdc966b7d87", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f9e80080-e325-4b0a-aaee-f4e5d3b04e50", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-053724072273071869382716", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a7c98a8f-8be9-4e0f-a3dd-dfdc966b7d87", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-053724072273071869382716", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a7c98a8f-8be9-4e0f-a3dd-dfdc966b7d87", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-02-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:645a0e13-31e9-4b11-bccd-b946ce2cdaf3", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:645a0e13-31e9-4b11-bccd-b946ce2cdaf3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f9e80080-e325-4b0a-aaee-f4e5d3b04e50", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-217201927107779747876683", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:645a0e13-31e9-4b11-bccd-b946ce2cdaf3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-217201927107779747876683", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:645a0e13-31e9-4b11-bccd-b946ce2cdaf3", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-07-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a28e3258-e3f9-49a2-8050-fe89f6cb1c98", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a28e3258-e3f9-49a2-8050-fe89f6cb1c98", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f9e80080-e325-4b0a-aaee-f4e5d3b04e50", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-992470016447777688166281", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a28e3258-e3f9-49a2-8050-fe89f6cb1c98", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-992470016447777688166281", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a28e3258-e3f9-49a2-8050-fe89f6cb1c98", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-11-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5dd093cf-65fe-4f4d-b49b-6f6fa74a15b9", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5dd093cf-65fe-4f4d-b49b-6f6fa74a15b9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f9e80080-e325-4b0a-aaee-f4e5d3b04e50", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-196299875913449566412631", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5dd093cf-65fe-4f4d-b49b-6f6fa74a15b9", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-196299875913449566412631", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5dd093cf-65fe-4f4d-b49b-6f6fa74a15b9", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-01-10", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a45fbde4-aafd-482e-a77b-b3b407a22f03", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a45fbde4-aafd-482e-a77b-b3b407a22f03", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f9e80080-e325-4b0a-aaee-f4e5d3b04e50", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-486582370436360029343916", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a45fbde4-aafd-482e-a77b-b3b407a22f03", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-486582370436360029343916", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a45fbde4-aafd-482e-a77b-b3b407a22f03", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-06-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-20", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:c4b5b208-45be-42b2-ab54-23c07c056ac3", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c4b5b208-45be-42b2-ab54-23c07c056ac3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f9e80080-e325-4b0a-aaee-f4e5d3b04e50", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-153814018925644549570460", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c4b5b208-45be-42b2-ab54-23c07c056ac3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-153814018925644549570460", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c4b5b208-45be-42b2-ab54-23c07c056ac3", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-07-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:377fd1d4-1699-40d2-8111-b1ebb6560755", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:377fd1d4-1699-40d2-8111-b1ebb6560755", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7831bdbb-a48e-43b7-b835-4f56b17045fd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-068307704887627153296529", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:377fd1d4-1699-40d2-8111-b1ebb6560755", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-068307704887627153296529", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 28, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AYRE", - "eori" : "DE012345678901" - }, - "issueDate" : "2023-03-01", - "version" : 1.9, - "status" : "Invalid" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.6355, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 19 - } - }, - "commercial" : { - "placedOnMarket" : "2022-11-14", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-068307704887627153296529", - "key" : "PartInstanceID" - } ], - "gtin" : " 79156985", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "221511060" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Compliance", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-08-15", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 9.9364 ] - }, - "id" : "ZR4343" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : true, - "renewable" : false, - "percentage" : 5, - "name" : "Cobalt" - } ], - "critical" : [ "Manganese" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 115 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AXS3", - "manufacturer" : { - "facilityId" : "BPNL00000003AYRE", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:377fd1d4-1699-40d2-8111-b1ebb6560755", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4a3d8e1e-b53b-4780-b7b9-40846a4db18a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b2195e86-310f-4fa1-bca0-b353ee384bdd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3eb498c6-30f4-48a5-9ecf-fd06234ebbe8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7836145b-ea6d-4a86-9bfc-e6a5e46f2d42", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:754e0451-1919-4a65-aab7-77b442543173", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7a51eab3-6b1a-44be-8a78-bb81fbcd51f4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:74875db6-64d4-4f79-93d1-ea4bdf4a0846", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4a791f70-ef6c-43a9-b89e-e5bdea86fdb0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:bd06e0a1-75b2-4a47-ae5d-76028ae4108c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a6f8fc81-c9a0-475c-abd0-b1b426eed41c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:4a3d8e1e-b53b-4780-b7b9-40846a4db18a", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4a3d8e1e-b53b-4780-b7b9-40846a4db18a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:377fd1d4-1699-40d2-8111-b1ebb6560755", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-093147316673177706643399", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4a3d8e1e-b53b-4780-b7b9-40846a4db18a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-093147316673177706643399", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4a3d8e1e-b53b-4780-b7b9-40846a4db18a", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-12-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-03", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b2195e86-310f-4fa1-bca0-b353ee384bdd", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b2195e86-310f-4fa1-bca0-b353ee384bdd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:377fd1d4-1699-40d2-8111-b1ebb6560755", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-503022735415133534592423", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b2195e86-310f-4fa1-bca0-b353ee384bdd", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-503022735415133534592423", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b2195e86-310f-4fa1-bca0-b353ee384bdd", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-06-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3eb498c6-30f4-48a5-9ecf-fd06234ebbe8", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3eb498c6-30f4-48a5-9ecf-fd06234ebbe8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:377fd1d4-1699-40d2-8111-b1ebb6560755", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-121990643415701168914707", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3eb498c6-30f4-48a5-9ecf-fd06234ebbe8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-121990643415701168914707", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3eb498c6-30f4-48a5-9ecf-fd06234ebbe8", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-09-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-20", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7836145b-ea6d-4a86-9bfc-e6a5e46f2d42", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7836145b-ea6d-4a86-9bfc-e6a5e46f2d42", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:377fd1d4-1699-40d2-8111-b1ebb6560755", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-953446928621860802770129", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7836145b-ea6d-4a86-9bfc-e6a5e46f2d42", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-953446928621860802770129", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7836145b-ea6d-4a86-9bfc-e6a5e46f2d42", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-06-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:754e0451-1919-4a65-aab7-77b442543173", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:754e0451-1919-4a65-aab7-77b442543173", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:377fd1d4-1699-40d2-8111-b1ebb6560755", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-826934316558032600646819", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:754e0451-1919-4a65-aab7-77b442543173", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-826934316558032600646819", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:754e0451-1919-4a65-aab7-77b442543173", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-07-31", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7a51eab3-6b1a-44be-8a78-bb81fbcd51f4", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7a51eab3-6b1a-44be-8a78-bb81fbcd51f4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:377fd1d4-1699-40d2-8111-b1ebb6560755", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-162911701558465875894337", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7a51eab3-6b1a-44be-8a78-bb81fbcd51f4", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-162911701558465875894337", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7a51eab3-6b1a-44be-8a78-bb81fbcd51f4", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-01-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-04", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:74875db6-64d4-4f79-93d1-ea4bdf4a0846", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:74875db6-64d4-4f79-93d1-ea4bdf4a0846", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:377fd1d4-1699-40d2-8111-b1ebb6560755", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-659496605521794447911377", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:74875db6-64d4-4f79-93d1-ea4bdf4a0846", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-659496605521794447911377", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:74875db6-64d4-4f79-93d1-ea4bdf4a0846", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-04-10", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4a791f70-ef6c-43a9-b89e-e5bdea86fdb0", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4a791f70-ef6c-43a9-b89e-e5bdea86fdb0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:377fd1d4-1699-40d2-8111-b1ebb6560755", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-613015129886146912240016", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4a791f70-ef6c-43a9-b89e-e5bdea86fdb0", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-613015129886146912240016", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4a791f70-ef6c-43a9-b89e-e5bdea86fdb0", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-11-03", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-11", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:bd06e0a1-75b2-4a47-ae5d-76028ae4108c", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bd06e0a1-75b2-4a47-ae5d-76028ae4108c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:377fd1d4-1699-40d2-8111-b1ebb6560755", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-275740882804667917475167", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:bd06e0a1-75b2-4a47-ae5d-76028ae4108c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-275740882804667917475167", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bd06e0a1-75b2-4a47-ae5d-76028ae4108c", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-10-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-20", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a6f8fc81-c9a0-475c-abd0-b1b426eed41c", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a6f8fc81-c9a0-475c-abd0-b1b426eed41c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:377fd1d4-1699-40d2-8111-b1ebb6560755", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-953686946812635028483453", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a6f8fc81-c9a0-475c-abd0-b1b426eed41c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-953686946812635028483453", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a6f8fc81-c9a0-475c-abd0-b1b426eed41c", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-10-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Kombilimousine", - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "engine" : { - "size" : 2998, - "power" : 143 - }, - "emptyWeight" : 1.73, - "fuel" : "Elektro", - "vehicleModel" : "Vehicle Fully Electric", - "productionDateGMT" : "2010-01-01", - "equipmentVariants" : [ { - "code" : "B298B", - "description" : "keyless entry", - "group" : "special equipment" - }, { - "code" : "A01CR", - "description" : "remote engine start", - "group" : "special equipment" - }, { - "code" : "A248B", - "description" : "steering wheel heating", - "group" : "special equipment" - }, { - "code" : "C247R", - "description" : "trailer hitch", - "group" : "special equipment" - } ], - "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", - "mileage" : [ { - "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2020-11-23", - "mileageDistance" : 120000 - } ] - } ], - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "SR-78", - "key" : "manufacturerPartId" - }, { - "value" : "OMABMYPUABIAZEQDM", - "key" : "partInstanceId" - }, { - "value" : "OMABMYPUABIAZEQDM", - "key" : "van" - } ], - "manufacturingInformation" : { - "date" : "2015-02-24T06:42:54.000Z", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "partTypeInformation" : { - "manufacturerPartId" : "SR-78", - "classification" : "product", - "nameAtManufacturer" : "Vehicle Fully Electric" - } - } ], - "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" : 81, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 163.8 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "PE221" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 53, - "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" : 27, - "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" : 32, - "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" : 17, - "materialClass" : "5.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 7.8 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "R22" - }, { - "materialName" : "Textiles", - "recycledContent" : 24, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 5.12 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "TEX1" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "childItems" : [ { - "catenaXId" : "urn:uuid:34c94e3e-c1db-4e41-aaf8-c7e604f63754", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:bd4a4a62-62ed-49da-afa9-a55694b5e1cb", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d72d4952-e8af-4df9-b69d-539c290144d5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7ed35075-ed17-46bd-8044-178d2cd83836", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e5b0d9d8-8ce7-446d-9c9c-0d400e8e635e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8cecfcd7-cba5-44cc-a549-10051d1d0329", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ff25c9c4-0b88-4c88-9bfe-d11867fa71e1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f22b3bc8-b077-471a-9c36-838a852ee15d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:dd2458cc-7887-4f51-a7b6-1dec54063e2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4c508405-0866-49d0-8150-1f73a787eb35", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8a19de9c-0425-44ca-813c-d43b27c9eb4e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:38172a85-2ce1-4738-9e67-a921f3a4bf6c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:94f0bb08-db41-4abf-a8b0-2fe2355dfcfa", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:fa64bd05-80e9-460c-8b29-202ea13806e8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b0469f85-979b-4251-a693-997650c44b39", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a8b13d82-dc6d-4375-8c09-f6c363365603", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:eb47ff40-490d-45c1-8874-5c12242c5f25", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f6532e01-aa25-4802-a683-a2b03d8d5488", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9b068947-75b8-40ad-ae77-a4043a0d808d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:48820f4d-5774-4638-8685-708213db3986", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c078e944-b004-4bd5-8a5b-61ad27fe5890", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:745a650a-ecff-49e8-957f-611566a43b7b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:37f3ed33-2fb1-42db-9296-dc47043acafe", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c0b9b772-61c6-4ceb-a79e-d862bb3b893c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:062a9e3d-8a7c-498a-b359-cbc8bc1a6ead", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cb040091-771b-406c-9645-24ee8e404a16", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:737be888-ead8-4cf1-ad55-51c5f140328d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7426d46d-d2f1-4955-9138-2255cabc695e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f286439a-c685-4c8c-a7c3-d8fa8dce659c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:79119830-42b7-4645-98db-d5f6638ca146", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B2OM", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c90b1ad5-2007-411d-8f0d-1e041be4faf6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B5MJ", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0d5ef250-56cf-47ba-84fa-553c4ec55876", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:34c94e3e-c1db-4e41-aaf8-c7e604f63754", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:34c94e3e-c1db-4e41-aaf8-c7e604f63754", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "73849201-61", - "key" : "manufacturerPartId" - }, { - "value" : "NO-839038852137584148594158", - "key" : "partInstanceId" - }, { - "value" : "Company 10", - "key" : "company" - }, { - "value" : "Brand 10", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:34c94e3e-c1db-4e41-aaf8-c7e604f63754", - "partTypeInformation" : { - "manufacturerPartId" : "73849201-61", - "customerPartId" : "73849201-61", - "classification" : "component", - "nameAtManufacturer" : "Catalysator", - "nameAtCustomer" : "Catalysator" - } - } ] - }, { - "catenaXId" : "urn:uuid:bd4a4a62-62ed-49da-afa9-a55694b5e1cb", - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bd4a4a62-62ed-49da-afa9-a55694b5e1cb", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "22782277-50", - "key" : "manufacturerPartId" - }, { - "value" : "NO-720759155452643553843394", - "key" : "partInstanceId" - }, { - "value" : "Company 3", - "key" : "company" - }, { - "value" : "Brand 3", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:bd4a4a62-62ed-49da-afa9-a55694b5e1cb", - "partTypeInformation" : { - "manufacturerPartId" : "22782277-50", - "customerPartId" : "22782277-50", - "classification" : "component", - "nameAtManufacturer" : "Door f-l", - "nameAtCustomer" : "Door front-left" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bd4a4a62-62ed-49da-afa9-a55694b5e1cb", - "childItems" : [ { - "catenaXId" : "urn:uuid:90ecf67f-ea13-47bc-b9dd-3d54d6804654", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:90ecf67f-ea13-47bc-b9dd-3d54d6804654", - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:90ecf67f-ea13-47bc-b9dd-3d54d6804654", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bd4a4a62-62ed-49da-afa9-a55694b5e1cb", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-083265702341699803848608", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:90ecf67f-ea13-47bc-b9dd-3d54d6804654", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "33355704YAS", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:90ecf67f-ea13-47bc-b9dd-3d54d6804654", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:d72d4952-e8af-4df9-b69d-539c290144d5", - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d72d4952-e8af-4df9-b69d-539c290144d5", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "95657362-64", - "key" : "manufacturerPartId" - }, { - "value" : "NO-723054396373739424087746", - "key" : "partInstanceId" - }, { - "value" : "Company 4", - "key" : "company" - }, { - "value" : "Brand 4", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d72d4952-e8af-4df9-b69d-539c290144d5", - "partTypeInformation" : { - "manufacturerPartId" : "33740332-54", - "customerPartId" : "33740332-54", - "classification" : "component", - "nameAtManufacturer" : "Door f-r", - "nameAtCustomer" : "Door front-right" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d72d4952-e8af-4df9-b69d-539c290144d5", - "childItems" : [ { - "catenaXId" : "urn:uuid:62e77c0d-3faf-417e-8974-0d19408e37ee", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:62e77c0d-3faf-417e-8974-0d19408e37ee", - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:62e77c0d-3faf-417e-8974-0d19408e37ee", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d72d4952-e8af-4df9-b69d-539c290144d5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-130660866151998527931971", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:62e77c0d-3faf-417e-8974-0d19408e37ee", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "28402937CMF", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:62e77c0d-3faf-417e-8974-0d19408e37ee", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:7ed35075-ed17-46bd-8044-178d2cd83836", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7ed35075-ed17-46bd-8044-178d2cd83836", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "15635759-16", - "key" : "manufacturerPartId" - }, { - "value" : "NO-444238379826682777717099", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7ed35075-ed17-46bd-8044-178d2cd83836", - "partTypeInformation" : { - "manufacturerPartId" : "15635759-16", - "customerPartId" : "15635759-16", - "classification" : "component", - "nameAtManufacturer" : "Door r-l", - "nameAtCustomer" : "Door rear-left" - } - } ] - }, { - "catenaXId" : "urn:uuid:e5b0d9d8-8ce7-446d-9c9c-0d400e8e635e", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e5b0d9d8-8ce7-446d-9c9c-0d400e8e635e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "28673126-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-313381427439521806691257", - "key" : "partInstanceId" - }, { - "value" : "Company 5", - "key" : "company" - }, { - "value" : "Brand 5", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e5b0d9d8-8ce7-446d-9c9c-0d400e8e635e", - "partTypeInformation" : { - "manufacturerPartId" : "28673126-98", - "customerPartId" : "28673126-98", - "classification" : "component", - "nameAtManufacturer" : "Door r-r", - "nameAtCustomer" : "Door rear-right" - } - } ] - }, { - "catenaXId" : "urn:uuid:8cecfcd7-cba5-44cc-a549-10051d1d0329", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8cecfcd7-cba5-44cc-a549-10051d1d0329", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "94421589-82", - "key" : "manufacturerPartId" - }, { - "value" : "NO-731468958987919961009384", - "key" : "partInstanceId" - }, { - "value" : "Company 6", - "key" : "company" - }, { - "value" : "Brand 6", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8cecfcd7-cba5-44cc-a549-10051d1d0329", - "partTypeInformation" : { - "manufacturerPartId" : "94421589-82", - "customerPartId" : "94421589-82", - "classification" : "component", - "nameAtManufacturer" : "Engine hood", - "nameAtCustomer" : "Engine hood" - } - } ] - }, { - "catenaXId" : "urn:uuid:ff25c9c4-0b88-4c88-9bfe-d11867fa71e1", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ff25c9c4-0b88-4c88-9bfe-d11867fa71e1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "85023955-75", - "key" : "manufacturerPartId" - }, { - "value" : "NO-842974123141671332896352", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ff25c9c4-0b88-4c88-9bfe-d11867fa71e1", - "partTypeInformation" : { - "manufacturerPartId" : "85023955-75", - "customerPartId" : "85023955-75", - "classification" : "component", - "nameAtManufacturer" : "Tailgate", - "nameAtCustomer" : "Tailgate" - } - } ] - }, { - "catenaXId" : "urn:uuid:f22b3bc8-b077-471a-9c36-838a852ee15d", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f22b3bc8-b077-471a-9c36-838a852ee15d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "13769860-47", - "key" : "manufacturerPartId" - }, { - "value" : "NO-701839551588647128094407", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f22b3bc8-b077-471a-9c36-838a852ee15d", - "partTypeInformation" : { - "manufacturerPartId" : "13769860-47", - "customerPartId" : "13769860-47", - "classification" : "component", - "nameAtManufacturer" : "Fender left", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:dd2458cc-7887-4f51-a7b6-1dec54063e2f", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:dd2458cc-7887-4f51-a7b6-1dec54063e2f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "36643162-35", - "key" : "manufacturerPartId" - }, { - "value" : "NO-325017528253741930285680", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:dd2458cc-7887-4f51-a7b6-1dec54063e2f", - "partTypeInformation" : { - "manufacturerPartId" : "36643162-35", - "customerPartId" : "36643162-35", - "classification" : "component", - "nameAtManufacturer" : "Fender right", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:4c508405-0866-49d0-8150-1f73a787eb35", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4c508405-0866-49d0-8150-1f73a787eb35", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "54165444-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-281809895225107838693839", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4c508405-0866-49d0-8150-1f73a787eb35", - "partTypeInformation" : { - "manufacturerPartId" : "54165444-59", - "customerPartId" : "54165444-59", - "classification" : "component", - "nameAtManufacturer" : "Bumper front", - "nameAtCustomer" : "Bumper front" - } - } ] - }, { - "catenaXId" : "urn:uuid:8a19de9c-0425-44ca-813c-d43b27c9eb4e", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8a19de9c-0425-44ca-813c-d43b27c9eb4e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "22768257-25", - "key" : "manufacturerPartId" - }, { - "value" : "NO-428521962412672194800140", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8a19de9c-0425-44ca-813c-d43b27c9eb4e", - "partTypeInformation" : { - "manufacturerPartId" : "22768257-25", - "customerPartId" : "22768257-25", - "classification" : "component", - "nameAtManufacturer" : "Bumper rear", - "nameAtCustomer" : "Bumper rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:38172a85-2ce1-4738-9e67-a921f3a4bf6c", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:38172a85-2ce1-4738-9e67-a921f3a4bf6c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "65529521-37", - "key" : "manufacturerPartId" - }, { - "value" : "NO-177433206781329658246434", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:38172a85-2ce1-4738-9e67-a921f3a4bf6c", - "partTypeInformation" : { - "manufacturerPartId" : "65529521-37", - "customerPartId" : "65529521-37", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror left", - "nameAtCustomer" : "Exterior mirror left" - } - } ] - }, { - "catenaXId" : "urn:uuid:94f0bb08-db41-4abf-a8b0-2fe2355dfcfa", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:94f0bb08-db41-4abf-a8b0-2fe2355dfcfa", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "58471477-24", - "key" : "manufacturerPartId" - }, { - "value" : "NO-069348730287537490500340", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:94f0bb08-db41-4abf-a8b0-2fe2355dfcfa", - "partTypeInformation" : { - "manufacturerPartId" : "58471477-24", - "customerPartId" : "58471477-24", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror right", - "nameAtCustomer" : "Exterior mirror right" - } - } ] - }, { - "catenaXId" : "urn:uuid:fa64bd05-80e9-460c-8b29-202ea13806e8", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fa64bd05-80e9-460c-8b29-202ea13806e8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "09002013-68", - "key" : "manufacturerPartId" - }, { - "value" : "NO-751761899580007666472200", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:fa64bd05-80e9-460c-8b29-202ea13806e8", - "partTypeInformation" : { - "manufacturerPartId" : "09002013-68", - "customerPartId" : "09002013-68", - "classification" : "component", - "nameAtManufacturer" : "Trailer coupling", - "nameAtCustomer" : "Tailer coupling" - } - } ] - }, { - "catenaXId" : "urn:uuid:b0469f85-979b-4251-a693-997650c44b39", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b0469f85-979b-4251-a693-997650c44b39", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "43501996-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-991817993609588243288539", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b0469f85-979b-4251-a693-997650c44b39", - "partTypeInformation" : { - "manufacturerPartId" : "43501996-98", - "customerPartId" : "43501996-98", - "classification" : "component", - "nameAtManufacturer" : "Dashboard", - "nameAtCustomer" : "Dashboard" - } - } ] - }, { - "catenaXId" : "urn:uuid:a8b13d82-dc6d-4375-8c09-f6c363365603", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a8b13d82-dc6d-4375-8c09-f6c363365603", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "77795937-13", - "key" : "manufacturerPartId" - }, { - "value" : "NO-088241816105321300162547", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a8b13d82-dc6d-4375-8c09-f6c363365603", - "partTypeInformation" : { - "manufacturerPartId" : "77795937-13", - "customerPartId" : "77795937-13", - "classification" : "component", - "nameAtManufacturer" : "Steering wheel", - "nameAtCustomer" : "Steering wheel" - } - } ] - }, { - "catenaXId" : "urn:uuid:eb47ff40-490d-45c1-8874-5c12242c5f25", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:eb47ff40-490d-45c1-8874-5c12242c5f25", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "20125432-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-803469367682826365531692", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:eb47ff40-490d-45c1-8874-5c12242c5f25", - "partTypeInformation" : { - "manufacturerPartId" : "20125432-59", - "customerPartId" : "20125432-59", - "classification" : "component", - "nameAtManufacturer" : "Indicator left", - "nameAtCustomer" : "Indicator left" - } - } ] - }, { - "catenaXId" : "urn:uuid:f6532e01-aa25-4802-a683-a2b03d8d5488", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f6532e01-aa25-4802-a683-a2b03d8d5488", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "19073706-76", - "key" : "manufacturerPartId" - }, { - "value" : "NO-266818832328814841436646", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f6532e01-aa25-4802-a683-a2b03d8d5488", - "partTypeInformation" : { - "manufacturerPartId" : "19073706-76", - "customerPartId" : "19073706-76", - "classification" : "component", - "nameAtManufacturer" : "Indicator right", - "nameAtCustomer" : "Indicator right" - } - } ] - }, { - "catenaXId" : "urn:uuid:9b068947-75b8-40ad-ae77-a4043a0d808d", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9b068947-75b8-40ad-ae77-a4043a0d808d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "45415162-57", - "key" : "manufacturerPartId" - }, { - "value" : "NO-932238886152827949163978", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9b068947-75b8-40ad-ae77-a4043a0d808d", - "partTypeInformation" : { - "manufacturerPartId" : "45415162-57", - "customerPartId" : "45415162-57", - "classification" : "component", - "nameAtManufacturer" : "Led headlight", - "nameAtCustomer" : "Led headlight" - } - } ] - }, { - "catenaXId" : "urn:uuid:48820f4d-5774-4638-8685-708213db3986", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:48820f4d-5774-4638-8685-708213db3986", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "78141846-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-095267817673905358139124", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:48820f4d-5774-4638-8685-708213db3986", - "partTypeInformation" : { - "manufacturerPartId" : "78141846-87", - "customerPartId" : "78141846-87", - "classification" : "component", - "nameAtManufacturer" : "Starter motor", - "nameAtCustomer" : "Starter motor" - } - } ] - }, { - "catenaXId" : "urn:uuid:c078e944-b004-4bd5-8a5b-61ad27fe5890", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c078e944-b004-4bd5-8a5b-61ad27fe5890", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "81324139-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-585152323518563928641543", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c078e944-b004-4bd5-8a5b-61ad27fe5890", - "partTypeInformation" : { - "manufacturerPartId" : "81324139-23", - "customerPartId" : "81324139-23", - "classification" : "component", - "nameAtManufacturer" : "Alternator", - "nameAtCustomer" : "Alternator" - } - } ] - }, { - "catenaXId" : "urn:uuid:745a650a-ecff-49e8-957f-611566a43b7b", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:745a650a-ecff-49e8-957f-611566a43b7b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "57929013-09", - "key" : "manufacturerPartId" - }, { - "value" : "NO-782704022021261157013718", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:745a650a-ecff-49e8-957f-611566a43b7b", - "partTypeInformation" : { - "manufacturerPartId" : "57929013-09", - "customerPartId" : "57929013-09", - "classification" : "component", - "nameAtManufacturer" : "AC compressor", - "nameAtCustomer" : "Air conditioning compressor" - } - } ] - }, { - "catenaXId" : "urn:uuid:37f3ed33-2fb1-42db-9296-dc47043acafe", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:37f3ed33-2fb1-42db-9296-dc47043acafe", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "61184040-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-937911291222208172203328", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:37f3ed33-2fb1-42db-9296-dc47043acafe", - "partTypeInformation" : { - "manufacturerPartId" : "61184040-23", - "customerPartId" : "61184040-23", - "classification" : "component", - "nameAtManufacturer" : "Taillight rear", - "nameAtCustomer" : "Taillight rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:c0b9b772-61c6-4ceb-a79e-d862bb3b893c", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c0b9b772-61c6-4ceb-a79e-d862bb3b893c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "78744126-74", - "key" : "manufacturerPartId" - }, { - "value" : "NO-100866548483486626925340", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c0b9b772-61c6-4ceb-a79e-d862bb3b893c", - "partTypeInformation" : { - "manufacturerPartId" : "78744126-74", - "customerPartId" : "78744126-74", - "classification" : "component", - "nameAtManufacturer" : "Taillight front", - "nameAtCustomer" : "Taillight front" - } - } ] - }, { - "catenaXId" : "urn:uuid:062a9e3d-8a7c-498a-b359-cbc8bc1a6ead", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:062a9e3d-8a7c-498a-b359-cbc8bc1a6ead", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "12093297-03", - "key" : "manufacturerPartId" - }, { - "value" : "NO-382465833555048234948273", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:062a9e3d-8a7c-498a-b359-cbc8bc1a6ead", - "partTypeInformation" : { - "manufacturerPartId" : "12093297-03", - "customerPartId" : "12093297-03", - "classification" : "component", - "nameAtManufacturer" : "Axle part front", - "nameAtCustomer" : "Axle part front" - } - } ] - }, { - "catenaXId" : "urn:uuid:cb040091-771b-406c-9645-24ee8e404a16", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cb040091-771b-406c-9645-24ee8e404a16", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "88111709-49", - "key" : "manufacturerPartId" - }, { - "value" : "NO-451266789445704815129387", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cb040091-771b-406c-9645-24ee8e404a16", - "partTypeInformation" : { - "manufacturerPartId" : "88111709-49", - "customerPartId" : "88111709-49", - "classification" : "component", - "nameAtManufacturer" : "Axle part rear", - "nameAtCustomer" : "Axle part rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:737be888-ead8-4cf1-ad55-51c5f140328d", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:737be888-ead8-4cf1-ad55-51c5f140328d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "00871379-44", - "key" : "manufacturerPartId" - }, { - "value" : "NO-923477282535984545231074", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:737be888-ead8-4cf1-ad55-51c5f140328d", - "partTypeInformation" : { - "manufacturerPartId" : "00871379-44", - "customerPartId" : "00871379-44", - "classification" : "component", - "nameAtManufacturer" : "Chassis", - "nameAtCustomer" : "Chassis" - } - } ] - }, { - "catenaXId" : "urn:uuid:7426d46d-d2f1-4955-9138-2255cabc695e", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7426d46d-d2f1-4955-9138-2255cabc695e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "08901347-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-313882481301831511176147", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7426d46d-d2f1-4955-9138-2255cabc695e", - "partTypeInformation" : { - "manufacturerPartId" : "08901347-87", - "customerPartId" : "08901347-87", - "classification" : "component", - "nameAtManufacturer" : "Rims", - "nameAtCustomer" : "Rims" - } - } ] - }, { - "catenaXId" : "urn:uuid:f286439a-c685-4c8c-a7c3-d8fa8dce659c", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f286439a-c685-4c8c-a7c3-d8fa8dce659c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "45863316-60", - "key" : "manufacturerPartId" - }, { - "value" : "NO-738623240637696180411718", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f286439a-c685-4c8c-a7c3-d8fa8dce659c", - "partTypeInformation" : { - "manufacturerPartId" : "45863316-60", - "customerPartId" : "45863316-60", - "classification" : "component", - "nameAtManufacturer" : "Tires", - "nameAtCustomer" : "Tires" - } - } ] - }, { - "catenaXId" : "urn:uuid:79119830-42b7-4645-98db-d5f6638ca146", - "bpnl" : "BPNL00000003B2OM", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:79119830-42b7-4645-98db-d5f6638ca146", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B2OM", - "key" : "manufacturerId" - }, { - "value" : "1O222E8-43", - "key" : "manufacturerPartId" - }, { - "value" : "NO-270845650964242897182466", - "key" : "partInstanceId" - }, { - "value" : "Company 2", - "key" : "company" - }, { - "value" : "Brand 2", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:79119830-42b7-4645-98db-d5f6638ca146", - "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:79119830-42b7-4645-98db-d5f6638ca146", - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-270845650964242897182466", - "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.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "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" : 5, - "materialClass" : "9.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 6.9 - }, - "aggregateState" : "liquid", - "materialAbbreviation" : "SAE40" - }, { - "materialName" : "Copper", - "recycledContent" : 62, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:79119830-42b7-4645-98db-d5f6638ca146", - "childItems" : [ { - "catenaXId" : "urn:uuid:3f1e9545-ddba-4eec-92d2-29727ca6a599", - "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9ffbd422-78a9-47c6-bf72-0060dae71c0d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a4232715-bd1f-40c5-9545-5d30e5db15b5", - "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:3f1e9545-ddba-4eec-92d2-29727ca6a599", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:3f1e9545-ddba-4eec-92d2-29727ca6a599", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3f1e9545-ddba-4eec-92d2-29727ca6a599", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:79119830-42b7-4645-98db-d5f6638ca146", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn: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" : 36, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 30 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:9ffbd422-78a9-47c6-bf72-0060dae71c0d", - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9ffbd422-78a9-47c6-bf72-0060dae71c0d", - "customers" : [ { - "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:79119830-42b7-4645-98db-d5f6638ca146", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "33309Z1-60", - "key" : "manufacturerPartId" - }, { - "value" : "NO-235042632371471760705036", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9ffbd422-78a9-47c6-bf72-0060dae71c0d", - "partTypeInformation" : { - "manufacturerPartId" : "33309Z1-60", - "customerPartId" : "33309Z1-60", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9ffbd422-78a9-47c6-bf72-0060dae71c0d", - "childItems" : [ { - "catenaXId" : "urn:uuid:781af0d0-909b-40a6-9204-d6bbd2f8934c", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:781af0d0-909b-40a6-9204-d6bbd2f8934c", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:781af0d0-909b-40a6-9204-d6bbd2f8934c", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "NTIER Product" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:781af0d0-909b-40a6-9204-d6bbd2f8934c", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:9ffbd422-78a9-47c6-bf72-0060dae71c0d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn: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" : 73, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:percent", - "value" : 40 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:a4232715-bd1f-40c5-9545-5d30e5db15b5", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:a4232715-bd1f-40c5-9545-5d30e5db15b5", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a4232715-bd1f-40c5-9545-5d30e5db15b5", - "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:79119830-42b7-4645-98db-d5f6638ca146", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.2341", - "materialAbbreviation" : "GL338" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a4232715-bd1f-40c5-9545-5d30e5db15b5", - "childItems" : [ ] - } ] - }, { - "catenaXId" : "urn:uuid:c90b1ad5-2007-411d-8f0d-1e041be4faf6", - "bpnl" : "BPNL00000003B5MJ", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c90b1ad5-2007-411d-8f0d-1e041be4faf6", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", - "key" : "manufacturerId" - }, { - "value" : "17066B2-11", - "key" : "manufacturerPartId" - }, { - "value" : "NO-366499561044581456626056", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c90b1ad5-2007-411d-8f0d-1e041be4faf6", - "partTypeInformation" : { - "manufacturerPartId" : "17066B2-11", - "customerPartId" : "17066B2-11", - "classification" : "component", - "nameAtManufacturer" : "ECU", - "nameAtCustomer" : "ECU" - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "recycledContent" : 30, - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.3301 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GL338" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c90b1ad5-2007-411d-8f0d-1e041be4faf6", - "childItems" : [ { - "catenaXId" : "urn:uuid:cdb7f2fc-0faa-4e8d-b4a5-5635ada29743", - "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4643c7f1-5928-4a06-85a1-812094a7b2aa", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7248f37f-e379-4c96-949c-60df35555d70", - "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:cdb7f2fc-0faa-4e8d-b4a5-5635ada29743", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:cdb7f2fc-0faa-4e8d-b4a5-5635ada29743", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cdb7f2fc-0faa-4e8d-b4a5-5635ada29743", - "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c90b1ad5-2007-411d-8f0d-1e041be4faf6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Glue", - "materialClass" : "5.5", - "component" : [ { - "materialName" : "Aluminium oxide", - "recycledContent" : 35, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "AL7" - }, { - "materialName" : "Other", - "recycledContent" : 58, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:4643c7f1-5928-4a06-85a1-812094a7b2aa", - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4643c7f1-5928-4a06-85a1-812094a7b2aa", - "customers" : [ { - "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c90b1ad5-2007-411d-8f0d-1e041be4faf6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "23029S5-65", - "key" : "manufacturerPartId" - }, { - "value" : "NO-587651096418700714883314", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4643c7f1-5928-4a06-85a1-812094a7b2aa", - "partTypeInformation" : { - "manufacturerPartId" : "23029S5-65", - "customerPartId" : "23029S5-65", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4643c7f1-5928-4a06-85a1-812094a7b2aa", - "childItems" : [ { - "catenaXId" : "urn:uuid:ab873981-57f3-4f81-9b0d-0ecbaf5c4606", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:ab873981-57f3-4f81-9b0d-0ecbaf5c4606", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:ab873981-57f3-4f81-9b0d-0ecbaf5c4606", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ab873981-57f3-4f81-9b0d-0ecbaf5c4606", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4643c7f1-5928-4a06-85a1-812094a7b2aa", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Engineering Plastics", - "materialClass" : "5.1", - "component" : [ { - "materialName" : "PA66", - "recycledContent" : 65, - "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:7248f37f-e379-4c96-949c-60df35555d70", - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7248f37f-e379-4c96-949c-60df35555d70", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c90b1ad5-2007-411d-8f0d-1e041be4faf6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "26107S8-15", - "key" : "manufacturerPartId" - }, { - "value" : "NO-986685800107352056530898", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7248f37f-e379-4c96-949c-60df35555d70", - "partTypeInformation" : { - "manufacturerPartId" : "26107S8-15", - "customerPartId" : "26107S8-15", - "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" : 89, - "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" - } ], - "catenaXId" : "urn:uuid:0d5ef250-56cf-47ba-84fa-553c4ec55876", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0d5ef250-56cf-47ba-84fa-553c4ec55876", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:825ec3b7-8b43-4746-87e6-99cca6f4cfa8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "38049661-08", - "key" : "manufacturerPartId" - }, { - "value" : "NO-069081326382682898034441", - "key" : "partInstanceId" - }, { - "value" : "Company 1", - "key" : "company" - }, { - "value" : "Brand 1", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0d5ef250-56cf-47ba-84fa-553c4ec55876", - "partTypeInformation" : { - "manufacturerPartId" : "38049661-08", - "customerPartId" : "38049661-08", - "classification" : "component", - "nameAtManufacturer" : "Battery", - "nameAtCustomer" : "Battery" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "pack" - } ], - "productType" : "pack" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-069081326382682898034441", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 5.4 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 24, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 11.75 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 71, - "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" : false, - "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" : "38049661-08", - "technicalSpecification" : [ { - "technicalValue" : "RYtGKbgicZaHCBRQDSx", - "key" : "JxkyvRnL" - } ], - "productLink" : "https://123", - "oeNumber" : "NO-069081326382682898034441", - "category" : { - "subCategory" : [ "Battery" ], - "mainCategory" : [ "Audio, video, navigation" ] - }, - "originalManufacturer" : "Company 1", - "brand" : "Brand 1", - "productDescription" : "Battery" - }, - "sku" : "1002090, xYz.09, ABcXYZ", - "mileage" : 120000.06 - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "38049661-08", - "manufacturerPartId" : "38049661-08" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a Battery", - "class" : { - "code" : "27-05-02-91", - "definition" : "Traction battery, starter battery (parts)" - }, - "nameAtManufacturer" : "Battery", - "nameAtCustomer" : "Battery" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AYRE", - "eori" : "DE012345678901" - }, - "issueDate" : "2023-08-25", - "version" : 1.6, - "status" : "Approved" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 1343.0703, - "width" : 1343, - "length" : 2540, - "weight" : 601, - "height" : 367 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 15 - } - }, - "commercial" : { - "placedOnMarket" : "2022-06-10", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-069081326382682898034441", - "key" : "PartInstanceID" - } ], - "gtin" : " 29080743", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "793389747" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-09-05", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : false, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 8.2386 ] - }, - "id" : "JG7461" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : false, - "percentage" : 5, - "name" : "Sealant" - } ], - "critical" : [ "Lithium" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 112 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003B2OM", - "manufacturer" : { - "facilityId" : "BPNL00000003B3NX", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0d5ef250-56cf-47ba-84fa-553c4ec55876", - "childItems" : [ { - "catenaXId" : "urn:uuid:b9fc658d-1d24-4749-a97b-e230d0c552a3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:dd13d210-598b-494e-8bdf-a0b237966fc1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:da788a42-1ffb-434f-8862-5f3b445ebb32", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:655edc64-da88-4ced-9779-5acd02cf50e3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5c03d9ae-6335-4d7b-beaa-276bcc8756cc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0246dfab-1deb-4f9b-9ae2-43a8b9ea3612", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:b9fc658d-1d24-4749-a97b-e230d0c552a3", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b9fc658d-1d24-4749-a97b-e230d0c552a3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:0d5ef250-56cf-47ba-84fa-553c4ec55876", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-608192764768109447938276", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b9fc658d-1d24-4749-a97b-e230d0c552a3", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-608192764768109447938276", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 41, - "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" : 54, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AYRE", - "eori" : "DE012345678901" - }, - "issueDate" : "2022-10-05", - "version" : 1.5, - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.6693, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 17 - } - }, - "commercial" : { - "placedOnMarket" : "2021-12-26", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-608192764768109447938276", - "key" : "PartInstanceID" - } ], - "gtin" : " 66802912", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "504473490" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "SubstanceOfConcern", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2022-10-21", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : false, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 2.4421 ] - }, - "id" : "LK2643" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : false, - "percentage" : 5, - "name" : "Manganese" - } ], - "critical" : [ "Lithium" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 111 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AYRE", - "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b9fc658d-1d24-4749-a97b-e230d0c552a3", - "childItems" : [ { - "catenaXId" : "urn:uuid:533543fb-5d09-4270-b4d5-0323de239d9a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c20b02e2-baf0-40c8-b911-4be59a3c2e73", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:64913ed7-a0fd-434b-9232-177af7f96e48", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e8ec0f5d-3059-480a-9686-85a01f04bf58", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:51aa60cd-63ce-46c3-80ab-0b4eb5eab13f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ae0de25e-6fe7-4d50-85ee-37282d025ab3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:50c1a869-1f2f-4c21-8bd7-f33ad6e1534a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0f4e0614-5dfa-40d0-b488-104455a29011", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:bff8e5b3-6a3f-4253-894e-3ee2912f8d29", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4f435586-3454-437e-ac5a-404a74ec28e3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ea5ae1f1-4037-4ecb-a696-97d7675688a0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:c20b02e2-baf0-40c8-b911-4be59a3c2e73", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c20b02e2-baf0-40c8-b911-4be59a3c2e73", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b9fc658d-1d24-4749-a97b-e230d0c552a3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-922372736915776314348946", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c20b02e2-baf0-40c8-b911-4be59a3c2e73", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-922372736915776314348946", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c20b02e2-baf0-40c8-b911-4be59a3c2e73", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-08-14", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-20", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:64913ed7-a0fd-434b-9232-177af7f96e48", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:64913ed7-a0fd-434b-9232-177af7f96e48", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b9fc658d-1d24-4749-a97b-e230d0c552a3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-458108876691126518508880", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:64913ed7-a0fd-434b-9232-177af7f96e48", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-458108876691126518508880", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:64913ed7-a0fd-434b-9232-177af7f96e48", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-03-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e8ec0f5d-3059-480a-9686-85a01f04bf58", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e8ec0f5d-3059-480a-9686-85a01f04bf58", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b9fc658d-1d24-4749-a97b-e230d0c552a3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-989911457567851660795375", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e8ec0f5d-3059-480a-9686-85a01f04bf58", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-989911457567851660795375", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e8ec0f5d-3059-480a-9686-85a01f04bf58", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-11-24", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:51aa60cd-63ce-46c3-80ab-0b4eb5eab13f", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:51aa60cd-63ce-46c3-80ab-0b4eb5eab13f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b9fc658d-1d24-4749-a97b-e230d0c552a3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-713237952524769313944433", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:51aa60cd-63ce-46c3-80ab-0b4eb5eab13f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-713237952524769313944433", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:51aa60cd-63ce-46c3-80ab-0b4eb5eab13f", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-05-09", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:ae0de25e-6fe7-4d50-85ee-37282d025ab3", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ae0de25e-6fe7-4d50-85ee-37282d025ab3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b9fc658d-1d24-4749-a97b-e230d0c552a3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-144364032083118656901598", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ae0de25e-6fe7-4d50-85ee-37282d025ab3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-144364032083118656901598", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ae0de25e-6fe7-4d50-85ee-37282d025ab3", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-10-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:50c1a869-1f2f-4c21-8bd7-f33ad6e1534a", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:50c1a869-1f2f-4c21-8bd7-f33ad6e1534a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b9fc658d-1d24-4749-a97b-e230d0c552a3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-230434542333541599332115", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:50c1a869-1f2f-4c21-8bd7-f33ad6e1534a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-230434542333541599332115", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:50c1a869-1f2f-4c21-8bd7-f33ad6e1534a", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-01-31", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-06", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0f4e0614-5dfa-40d0-b488-104455a29011", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f4e0614-5dfa-40d0-b488-104455a29011", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b9fc658d-1d24-4749-a97b-e230d0c552a3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-463943491249283837484732", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0f4e0614-5dfa-40d0-b488-104455a29011", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-463943491249283837484732", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f4e0614-5dfa-40d0-b488-104455a29011", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-03-09", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:bff8e5b3-6a3f-4253-894e-3ee2912f8d29", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bff8e5b3-6a3f-4253-894e-3ee2912f8d29", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b9fc658d-1d24-4749-a97b-e230d0c552a3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-700252093733933903040817", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:bff8e5b3-6a3f-4253-894e-3ee2912f8d29", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-700252093733933903040817", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bff8e5b3-6a3f-4253-894e-3ee2912f8d29", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-04-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4f435586-3454-437e-ac5a-404a74ec28e3", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4f435586-3454-437e-ac5a-404a74ec28e3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b9fc658d-1d24-4749-a97b-e230d0c552a3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-272900811582538956022382", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4f435586-3454-437e-ac5a-404a74ec28e3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-272900811582538956022382", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4f435586-3454-437e-ac5a-404a74ec28e3", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-09-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:ea5ae1f1-4037-4ecb-a696-97d7675688a0", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ea5ae1f1-4037-4ecb-a696-97d7675688a0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b9fc658d-1d24-4749-a97b-e230d0c552a3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-415693008978893456800354", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ea5ae1f1-4037-4ecb-a696-97d7675688a0", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-415693008978893456800354", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ea5ae1f1-4037-4ecb-a696-97d7675688a0", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-10-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:dd13d210-598b-494e-8bdf-a0b237966fc1", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:dd13d210-598b-494e-8bdf-a0b237966fc1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:0d5ef250-56cf-47ba-84fa-553c4ec55876", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-463961923994932997874519", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:dd13d210-598b-494e-8bdf-a0b237966fc1", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-463961923994932997874519", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 43, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AYRE", - "eori" : "DE012345678901" - }, - "issueDate" : "2022-04-18", - "version" : 1.8, - "status" : "Approved" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.6218, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 18 - } - }, - "commercial" : { - "placedOnMarket" : "2021-12-16", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-463961923994932997874519", - "key" : "PartInstanceID" - } ], - "gtin" : " 43275585", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "546540504" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "SubstanceOfConcern", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-05-06", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 6.8883 ] - }, - "id" : "FG4692" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : false, - "percentage" : 5, - "name" : "Insulator" - } ], - "critical" : [ "Manganese" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 120 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003B2OM", - "manufacturer" : { - "facilityId" : "BPNL00000003AYRE", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:dd13d210-598b-494e-8bdf-a0b237966fc1", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ee027879-2b4d-45fd-9d9f-20cac233bbac", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:08a76f2e-0037-403f-90e8-fa0adc7b40e6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b281342a-e56b-4a64-8fd1-d7a4136e18b6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f0917c5c-5ade-40e3-82bb-ef55ea162cae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8c748953-e0ed-4b4b-938e-94e3784618b9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:bfcaf958-c55a-4a6a-b935-d75acc7c8598", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1c9bf659-405c-43f8-866c-6f1660068c2a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4d54b630-2adf-4204-9ff9-5feddface557", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:95242a8c-3f63-448a-a90e-096ae56b6a3a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cc212859-1aca-4c42-8d5b-1830aae6e4a8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:ee027879-2b4d-45fd-9d9f-20cac233bbac", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ee027879-2b4d-45fd-9d9f-20cac233bbac", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dd13d210-598b-494e-8bdf-a0b237966fc1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-773119114187404479969114", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ee027879-2b4d-45fd-9d9f-20cac233bbac", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-773119114187404479969114", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ee027879-2b4d-45fd-9d9f-20cac233bbac", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-03-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:08a76f2e-0037-403f-90e8-fa0adc7b40e6", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:08a76f2e-0037-403f-90e8-fa0adc7b40e6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dd13d210-598b-494e-8bdf-a0b237966fc1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-872638155665100361832396", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:08a76f2e-0037-403f-90e8-fa0adc7b40e6", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-872638155665100361832396", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:08a76f2e-0037-403f-90e8-fa0adc7b40e6", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-08-18", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-28", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:b281342a-e56b-4a64-8fd1-d7a4136e18b6", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b281342a-e56b-4a64-8fd1-d7a4136e18b6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dd13d210-598b-494e-8bdf-a0b237966fc1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-394013381995894314901186", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b281342a-e56b-4a64-8fd1-d7a4136e18b6", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-394013381995894314901186", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b281342a-e56b-4a64-8fd1-d7a4136e18b6", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-09-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f0917c5c-5ade-40e3-82bb-ef55ea162cae", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f0917c5c-5ade-40e3-82bb-ef55ea162cae", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dd13d210-598b-494e-8bdf-a0b237966fc1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-660432861537328709047027", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f0917c5c-5ade-40e3-82bb-ef55ea162cae", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-660432861537328709047027", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f0917c5c-5ade-40e3-82bb-ef55ea162cae", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-11-24", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-16", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8c748953-e0ed-4b4b-938e-94e3784618b9", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8c748953-e0ed-4b4b-938e-94e3784618b9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dd13d210-598b-494e-8bdf-a0b237966fc1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-409481554062094330189502", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8c748953-e0ed-4b4b-938e-94e3784618b9", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-409481554062094330189502", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8c748953-e0ed-4b4b-938e-94e3784618b9", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-01-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:bfcaf958-c55a-4a6a-b935-d75acc7c8598", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bfcaf958-c55a-4a6a-b935-d75acc7c8598", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dd13d210-598b-494e-8bdf-a0b237966fc1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-270898818611453252659538", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:bfcaf958-c55a-4a6a-b935-d75acc7c8598", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-270898818611453252659538", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bfcaf958-c55a-4a6a-b935-d75acc7c8598", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-07-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1c9bf659-405c-43f8-866c-6f1660068c2a", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c9bf659-405c-43f8-866c-6f1660068c2a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dd13d210-598b-494e-8bdf-a0b237966fc1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-509719447982150715831015", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1c9bf659-405c-43f8-866c-6f1660068c2a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-509719447982150715831015", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c9bf659-405c-43f8-866c-6f1660068c2a", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-10-27", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:4d54b630-2adf-4204-9ff9-5feddface557", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4d54b630-2adf-4204-9ff9-5feddface557", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dd13d210-598b-494e-8bdf-a0b237966fc1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-555595155094164934181442", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4d54b630-2adf-4204-9ff9-5feddface557", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-555595155094164934181442", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4d54b630-2adf-4204-9ff9-5feddface557", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-11-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:95242a8c-3f63-448a-a90e-096ae56b6a3a", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:95242a8c-3f63-448a-a90e-096ae56b6a3a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dd13d210-598b-494e-8bdf-a0b237966fc1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-299561110591366000649409", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:95242a8c-3f63-448a-a90e-096ae56b6a3a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-299561110591366000649409", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:95242a8c-3f63-448a-a90e-096ae56b6a3a", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-06-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-28", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:cc212859-1aca-4c42-8d5b-1830aae6e4a8", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cc212859-1aca-4c42-8d5b-1830aae6e4a8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dd13d210-598b-494e-8bdf-a0b237966fc1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-629808451548045509345409", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cc212859-1aca-4c42-8d5b-1830aae6e4a8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-629808451548045509345409", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cc212859-1aca-4c42-8d5b-1830aae6e4a8", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-06-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-31", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:da788a42-1ffb-434f-8862-5f3b445ebb32", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:da788a42-1ffb-434f-8862-5f3b445ebb32", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:0d5ef250-56cf-47ba-84fa-553c4ec55876", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-157450264033503891282455", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:da788a42-1ffb-434f-8862-5f3b445ebb32", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-157450264033503891282455", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 25, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AYRE", - "eori" : "DE012345678901" - }, - "issueDate" : "2022-04-08", - "version" : 1.7, - "status" : "Invalid" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.69639999999998, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 17 - } - }, - "commercial" : { - "placedOnMarket" : "2022-02-18", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-157450264033503891282455", - "key" : "PartInstanceID" - } ], - "gtin" : " 93553571", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "582193773" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Passport", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2022-08-27", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 2.1681 ] - }, - "id" : "IF2406" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : false, - "percentage" : 5, - "name" : "Insulator" - } ], - "critical" : [ "Lithium" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 111 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AYRE", - "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:da788a42-1ffb-434f-8862-5f3b445ebb32", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0b1d4628-7db5-46d1-9f63-6c0278d17687", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f596144f-1a43-4539-bd27-566d80f09fe3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a604da53-e507-4357-bea1-63207a365070", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:16ba8242-c626-4ff7-bdbe-379cf9217d31", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:12add9e0-643b-421b-9a2c-f409e018531a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a4cfb58e-5c3e-4c60-9b74-46a8bda2419f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:313f238c-03ae-4c1e-9999-36c1076202e6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5eadbf6c-c007-451d-a810-a7832449dcf0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5d708d78-82bd-4974-9338-006c7f5c4601", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6f562450-11dc-4f9b-8f25-22bf56e163af", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:0b1d4628-7db5-46d1-9f63-6c0278d17687", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0b1d4628-7db5-46d1-9f63-6c0278d17687", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:da788a42-1ffb-434f-8862-5f3b445ebb32", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-446944896702970780386135", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0b1d4628-7db5-46d1-9f63-6c0278d17687", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-446944896702970780386135", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0b1d4628-7db5-46d1-9f63-6c0278d17687", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-04-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-04", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f596144f-1a43-4539-bd27-566d80f09fe3", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f596144f-1a43-4539-bd27-566d80f09fe3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:da788a42-1ffb-434f-8862-5f3b445ebb32", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-600739555484548994851355", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f596144f-1a43-4539-bd27-566d80f09fe3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-600739555484548994851355", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f596144f-1a43-4539-bd27-566d80f09fe3", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-07-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a604da53-e507-4357-bea1-63207a365070", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a604da53-e507-4357-bea1-63207a365070", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:da788a42-1ffb-434f-8862-5f3b445ebb32", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-599640350218306440671929", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a604da53-e507-4357-bea1-63207a365070", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-599640350218306440671929", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a604da53-e507-4357-bea1-63207a365070", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-09-20", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:16ba8242-c626-4ff7-bdbe-379cf9217d31", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:16ba8242-c626-4ff7-bdbe-379cf9217d31", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:da788a42-1ffb-434f-8862-5f3b445ebb32", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-843814528599608641888584", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:16ba8242-c626-4ff7-bdbe-379cf9217d31", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-843814528599608641888584", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:16ba8242-c626-4ff7-bdbe-379cf9217d31", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-08-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:12add9e0-643b-421b-9a2c-f409e018531a", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:12add9e0-643b-421b-9a2c-f409e018531a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:da788a42-1ffb-434f-8862-5f3b445ebb32", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-703389419189932673533978", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:12add9e0-643b-421b-9a2c-f409e018531a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-703389419189932673533978", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:12add9e0-643b-421b-9a2c-f409e018531a", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-09-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a4cfb58e-5c3e-4c60-9b74-46a8bda2419f", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a4cfb58e-5c3e-4c60-9b74-46a8bda2419f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:da788a42-1ffb-434f-8862-5f3b445ebb32", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-796091151401430615111501", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a4cfb58e-5c3e-4c60-9b74-46a8bda2419f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-796091151401430615111501", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a4cfb58e-5c3e-4c60-9b74-46a8bda2419f", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-08-18", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:313f238c-03ae-4c1e-9999-36c1076202e6", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:313f238c-03ae-4c1e-9999-36c1076202e6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:da788a42-1ffb-434f-8862-5f3b445ebb32", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-800958908498711252401249", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:313f238c-03ae-4c1e-9999-36c1076202e6", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-800958908498711252401249", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:313f238c-03ae-4c1e-9999-36c1076202e6", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-09-10", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5eadbf6c-c007-451d-a810-a7832449dcf0", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5eadbf6c-c007-451d-a810-a7832449dcf0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:da788a42-1ffb-434f-8862-5f3b445ebb32", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-686873329400412566667872", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5eadbf6c-c007-451d-a810-a7832449dcf0", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-686873329400412566667872", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5eadbf6c-c007-451d-a810-a7832449dcf0", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-05-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-11", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5d708d78-82bd-4974-9338-006c7f5c4601", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5d708d78-82bd-4974-9338-006c7f5c4601", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:da788a42-1ffb-434f-8862-5f3b445ebb32", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-568025168082017673624973", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5d708d78-82bd-4974-9338-006c7f5c4601", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-568025168082017673624973", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5d708d78-82bd-4974-9338-006c7f5c4601", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-05-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-20", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6f562450-11dc-4f9b-8f25-22bf56e163af", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6f562450-11dc-4f9b-8f25-22bf56e163af", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:da788a42-1ffb-434f-8862-5f3b445ebb32", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-836983193555759585514877", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6f562450-11dc-4f9b-8f25-22bf56e163af", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-836983193555759585514877", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6f562450-11dc-4f9b-8f25-22bf56e163af", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-09-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:655edc64-da88-4ced-9779-5acd02cf50e3", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:655edc64-da88-4ced-9779-5acd02cf50e3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:0d5ef250-56cf-47ba-84fa-553c4ec55876", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-311123043560054933388320", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:655edc64-da88-4ced-9779-5acd02cf50e3", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-311123043560054933388320", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 38, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AYRE", - "eori" : "DE012345678901" - }, - "issueDate" : "2022-05-31", - "version" : 2.1, - "status" : "Approved" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.6361, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 19 - } - }, - "commercial" : { - "placedOnMarket" : "2021-05-21", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-311123043560054933388320", - "key" : "PartInstanceID" - } ], - "gtin" : " 22460502", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "160138464" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Passport", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-05-15", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 6.8899 ] - }, - "id" : "HB2193" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : false, - "percentage" : 5, - "name" : "Nickel" - } ], - "critical" : [ "Nickel" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 113 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AXS3", - "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:655edc64-da88-4ced-9779-5acd02cf50e3", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9d83e3cd-af09-48ee-a991-dd2cee129259", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:14cd76df-9f5f-407b-9269-7768568ab849", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7d92dba4-5a4e-4c11-aa4b-ee8708580390", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9208f902-6df0-4d4e-9f4b-1be87f403c59", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:75651d64-ab01-4313-92b4-ffe3e2b3cade", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:32ffac0b-5c2e-4744-8723-2595711a9140", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:452be520-ba00-457d-8e08-b4d9643ccb85", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d5a37e87-b6f8-4deb-a245-31f9ea9f3cb3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:da5f2f0c-9a3b-4d81-b1c0-d6ceb7c97e31", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:81797e0e-2fba-41db-828f-ff4b6a0f599b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:9d83e3cd-af09-48ee-a991-dd2cee129259", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9d83e3cd-af09-48ee-a991-dd2cee129259", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:655edc64-da88-4ced-9779-5acd02cf50e3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-890590304516027782356372", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9d83e3cd-af09-48ee-a991-dd2cee129259", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-890590304516027782356372", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9d83e3cd-af09-48ee-a991-dd2cee129259", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-06-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:14cd76df-9f5f-407b-9269-7768568ab849", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:14cd76df-9f5f-407b-9269-7768568ab849", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:655edc64-da88-4ced-9779-5acd02cf50e3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-907806443250087968906457", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:14cd76df-9f5f-407b-9269-7768568ab849", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-907806443250087968906457", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:14cd76df-9f5f-407b-9269-7768568ab849", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-09-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-06", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7d92dba4-5a4e-4c11-aa4b-ee8708580390", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7d92dba4-5a4e-4c11-aa4b-ee8708580390", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:655edc64-da88-4ced-9779-5acd02cf50e3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-257318696623039438072872", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7d92dba4-5a4e-4c11-aa4b-ee8708580390", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-257318696623039438072872", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7d92dba4-5a4e-4c11-aa4b-ee8708580390", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-09-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9208f902-6df0-4d4e-9f4b-1be87f403c59", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9208f902-6df0-4d4e-9f4b-1be87f403c59", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:655edc64-da88-4ced-9779-5acd02cf50e3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-515632049232593164433380", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9208f902-6df0-4d4e-9f4b-1be87f403c59", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-515632049232593164433380", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9208f902-6df0-4d4e-9f4b-1be87f403c59", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-05-24", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:75651d64-ab01-4313-92b4-ffe3e2b3cade", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:75651d64-ab01-4313-92b4-ffe3e2b3cade", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:655edc64-da88-4ced-9779-5acd02cf50e3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-444559767988679216267692", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:75651d64-ab01-4313-92b4-ffe3e2b3cade", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-444559767988679216267692", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:75651d64-ab01-4313-92b4-ffe3e2b3cade", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-05-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:32ffac0b-5c2e-4744-8723-2595711a9140", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:32ffac0b-5c2e-4744-8723-2595711a9140", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:655edc64-da88-4ced-9779-5acd02cf50e3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-680348547456882396442670", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:32ffac0b-5c2e-4744-8723-2595711a9140", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-680348547456882396442670", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:32ffac0b-5c2e-4744-8723-2595711a9140", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-12-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:452be520-ba00-457d-8e08-b4d9643ccb85", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:452be520-ba00-457d-8e08-b4d9643ccb85", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:655edc64-da88-4ced-9779-5acd02cf50e3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-059709896602518915686228", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:452be520-ba00-457d-8e08-b4d9643ccb85", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-059709896602518915686228", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:452be520-ba00-457d-8e08-b4d9643ccb85", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-09-18", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-19", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d5a37e87-b6f8-4deb-a245-31f9ea9f3cb3", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d5a37e87-b6f8-4deb-a245-31f9ea9f3cb3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:655edc64-da88-4ced-9779-5acd02cf50e3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-503768807415618806106636", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d5a37e87-b6f8-4deb-a245-31f9ea9f3cb3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-503768807415618806106636", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d5a37e87-b6f8-4deb-a245-31f9ea9f3cb3", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-03-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-03", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:da5f2f0c-9a3b-4d81-b1c0-d6ceb7c97e31", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:da5f2f0c-9a3b-4d81-b1c0-d6ceb7c97e31", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:655edc64-da88-4ced-9779-5acd02cf50e3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-199007379766064617386491", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:da5f2f0c-9a3b-4d81-b1c0-d6ceb7c97e31", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-199007379766064617386491", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:da5f2f0c-9a3b-4d81-b1c0-d6ceb7c97e31", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-12-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:81797e0e-2fba-41db-828f-ff4b6a0f599b", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:81797e0e-2fba-41db-828f-ff4b6a0f599b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:655edc64-da88-4ced-9779-5acd02cf50e3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-563028236953919060316165", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:81797e0e-2fba-41db-828f-ff4b6a0f599b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-563028236953919060316165", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:81797e0e-2fba-41db-828f-ff4b6a0f599b", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-06-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-03", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5c03d9ae-6335-4d7b-beaa-276bcc8756cc", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5c03d9ae-6335-4d7b-beaa-276bcc8756cc", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:0d5ef250-56cf-47ba-84fa-553c4ec55876", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-311356991123682639383128", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5c03d9ae-6335-4d7b-beaa-276bcc8756cc", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-311356991123682639383128", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 63, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AYRE", - "eori" : "DE012345678901" - }, - "issueDate" : "2023-07-13", - "version" : 1.8, - "status" : "Invalid" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.6602, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 18 - } - }, - "commercial" : { - "placedOnMarket" : "2023-02-20", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-311356991123682639383128", - "key" : "PartInstanceID" - } ], - "gtin" : " 90664320", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "518877264" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "SubstanceOfConcern", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-08-17", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 0.6999 ] - }, - "id" : "QX2836" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : true, - "renewable" : false, - "percentage" : 5, - "name" : "Steel" - } ], - "critical" : [ "Lithium" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 110 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AYRE", - "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5c03d9ae-6335-4d7b-beaa-276bcc8756cc", - "childItems" : [ { - "catenaXId" : "urn:uuid:533543fb-5d09-4270-b4d5-0323de239d9a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0d226196-81a0-428b-b7e2-074c72135a76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9b0396d5-d465-4da8-8f06-320859f289a5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0f100a0d-4d02-4e93-8d4f-cb198dea84d2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cfdbd115-797e-4f70-ba66-9a995376e525", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1035e8f3-6067-410b-8a37-f0d2c5e9bb64", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:20302470-a8fa-4009-938a-cec008f03a05", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e8d65265-d9da-4ed0-970d-99ddc53d72fe", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e216cb12-f50f-40c5-8fc5-90b4d1a79ba7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5194f37d-9f31-4c58-9448-d5d99fe2b99c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d24dc369-cce3-4a6a-a0eb-06ff57c28225", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:0d226196-81a0-428b-b7e2-074c72135a76", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0d226196-81a0-428b-b7e2-074c72135a76", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5c03d9ae-6335-4d7b-beaa-276bcc8756cc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-832550879585520205373455", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0d226196-81a0-428b-b7e2-074c72135a76", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-832550879585520205373455", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0d226196-81a0-428b-b7e2-074c72135a76", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-11-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9b0396d5-d465-4da8-8f06-320859f289a5", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9b0396d5-d465-4da8-8f06-320859f289a5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5c03d9ae-6335-4d7b-beaa-276bcc8756cc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-991528709183542019913657", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9b0396d5-d465-4da8-8f06-320859f289a5", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-991528709183542019913657", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9b0396d5-d465-4da8-8f06-320859f289a5", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-03-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0f100a0d-4d02-4e93-8d4f-cb198dea84d2", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f100a0d-4d02-4e93-8d4f-cb198dea84d2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5c03d9ae-6335-4d7b-beaa-276bcc8756cc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-054027318908764258844866", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0f100a0d-4d02-4e93-8d4f-cb198dea84d2", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-054027318908764258844866", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f100a0d-4d02-4e93-8d4f-cb198dea84d2", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-07-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:cfdbd115-797e-4f70-ba66-9a995376e525", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cfdbd115-797e-4f70-ba66-9a995376e525", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5c03d9ae-6335-4d7b-beaa-276bcc8756cc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-957765082927938986300394", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cfdbd115-797e-4f70-ba66-9a995376e525", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-957765082927938986300394", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cfdbd115-797e-4f70-ba66-9a995376e525", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-08-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-03", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1035e8f3-6067-410b-8a37-f0d2c5e9bb64", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1035e8f3-6067-410b-8a37-f0d2c5e9bb64", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5c03d9ae-6335-4d7b-beaa-276bcc8756cc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-172943896577027362153669", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1035e8f3-6067-410b-8a37-f0d2c5e9bb64", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-172943896577027362153669", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1035e8f3-6067-410b-8a37-f0d2c5e9bb64", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-10-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:20302470-a8fa-4009-938a-cec008f03a05", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:20302470-a8fa-4009-938a-cec008f03a05", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5c03d9ae-6335-4d7b-beaa-276bcc8756cc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-855438856667880181382885", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:20302470-a8fa-4009-938a-cec008f03a05", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-855438856667880181382885", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:20302470-a8fa-4009-938a-cec008f03a05", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-03-15", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e8d65265-d9da-4ed0-970d-99ddc53d72fe", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e8d65265-d9da-4ed0-970d-99ddc53d72fe", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5c03d9ae-6335-4d7b-beaa-276bcc8756cc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-681075612810281787411299", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e8d65265-d9da-4ed0-970d-99ddc53d72fe", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-681075612810281787411299", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e8d65265-d9da-4ed0-970d-99ddc53d72fe", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-04-24", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-20", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:e216cb12-f50f-40c5-8fc5-90b4d1a79ba7", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e216cb12-f50f-40c5-8fc5-90b4d1a79ba7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5c03d9ae-6335-4d7b-beaa-276bcc8756cc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-376674711595154257072017", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e216cb12-f50f-40c5-8fc5-90b4d1a79ba7", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-376674711595154257072017", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e216cb12-f50f-40c5-8fc5-90b4d1a79ba7", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-07-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-23", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5194f37d-9f31-4c58-9448-d5d99fe2b99c", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5194f37d-9f31-4c58-9448-d5d99fe2b99c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5c03d9ae-6335-4d7b-beaa-276bcc8756cc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-145287530370579797132962", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5194f37d-9f31-4c58-9448-d5d99fe2b99c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-145287530370579797132962", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5194f37d-9f31-4c58-9448-d5d99fe2b99c", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-04-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-02", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d24dc369-cce3-4a6a-a0eb-06ff57c28225", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d24dc369-cce3-4a6a-a0eb-06ff57c28225", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5c03d9ae-6335-4d7b-beaa-276bcc8756cc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-917582813545788973731261", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d24dc369-cce3-4a6a-a0eb-06ff57c28225", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-917582813545788973731261", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d24dc369-cce3-4a6a-a0eb-06ff57c28225", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-04-24", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0246dfab-1deb-4f9b-9ae2-43a8b9ea3612", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0246dfab-1deb-4f9b-9ae2-43a8b9ea3612", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:0d5ef250-56cf-47ba-84fa-553c4ec55876", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-440674234381350384597706", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0246dfab-1deb-4f9b-9ae2-43a8b9ea3612", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-440674234381350384597706", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 31, - "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" : 81, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AYRE", - "eori" : "DE012345678901" - }, - "issueDate" : "2022-01-16", - "version" : 2.2, - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.6631, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 15 - } - }, - "commercial" : { - "placedOnMarket" : "2022-01-11", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-440674234381350384597706", - "key" : "PartInstanceID" - } ], - "gtin" : " 17760852", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "733564272" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2022-10-19", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 8.1432 ] - }, - "id" : "JC7518" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : false, - "percentage" : 5, - "name" : "Graphite" - } ], - "critical" : [ "Cobalt" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 119 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003B2OM", - "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0246dfab-1deb-4f9b-9ae2-43a8b9ea3612", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4e27d5d6-3284-42d9-b78d-31c769ea7fbe", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:293b5976-023d-4ed3-9270-e1afd2dec0c5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:de7b8f1a-4bce-4065-b821-7a873728ca69", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:be8ec27e-1efe-4b4b-9850-8e53da8cce8b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0f11ffaf-ec68-47cf-8530-45c337383e9d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6d5f51f6-af19-4022-8cbe-983626a4ff4e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cbe59a12-99da-4c71-b511-4e0c1279c21d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6ddfcae2-69be-46ef-8c05-62999140370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:72e3bad7-4ef9-458c-ad99-da87019dc93b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:264ed1cf-70dc-40bd-ae5c-349ae35c5bf6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:4e27d5d6-3284-42d9-b78d-31c769ea7fbe", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4e27d5d6-3284-42d9-b78d-31c769ea7fbe", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:0246dfab-1deb-4f9b-9ae2-43a8b9ea3612", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-837166063886216253669932", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4e27d5d6-3284-42d9-b78d-31c769ea7fbe", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-837166063886216253669932", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4e27d5d6-3284-42d9-b78d-31c769ea7fbe", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-04-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:293b5976-023d-4ed3-9270-e1afd2dec0c5", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:293b5976-023d-4ed3-9270-e1afd2dec0c5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:0246dfab-1deb-4f9b-9ae2-43a8b9ea3612", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-676379588857147045040362", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:293b5976-023d-4ed3-9270-e1afd2dec0c5", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-676379588857147045040362", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:293b5976-023d-4ed3-9270-e1afd2dec0c5", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-10-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-10", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:de7b8f1a-4bce-4065-b821-7a873728ca69", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:de7b8f1a-4bce-4065-b821-7a873728ca69", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:0246dfab-1deb-4f9b-9ae2-43a8b9ea3612", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-404432758661344971098153", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:de7b8f1a-4bce-4065-b821-7a873728ca69", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-404432758661344971098153", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:de7b8f1a-4bce-4065-b821-7a873728ca69", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-10-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-01", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:be8ec27e-1efe-4b4b-9850-8e53da8cce8b", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:be8ec27e-1efe-4b4b-9850-8e53da8cce8b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:0246dfab-1deb-4f9b-9ae2-43a8b9ea3612", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-957145715301892831364395", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:be8ec27e-1efe-4b4b-9850-8e53da8cce8b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-957145715301892831364395", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:be8ec27e-1efe-4b4b-9850-8e53da8cce8b", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-08-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-11", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0f11ffaf-ec68-47cf-8530-45c337383e9d", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f11ffaf-ec68-47cf-8530-45c337383e9d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:0246dfab-1deb-4f9b-9ae2-43a8b9ea3612", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-587366587015043366128801", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0f11ffaf-ec68-47cf-8530-45c337383e9d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-587366587015043366128801", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f11ffaf-ec68-47cf-8530-45c337383e9d", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-05-10", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-29", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6d5f51f6-af19-4022-8cbe-983626a4ff4e", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6d5f51f6-af19-4022-8cbe-983626a4ff4e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:0246dfab-1deb-4f9b-9ae2-43a8b9ea3612", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-782195049030685641373025", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6d5f51f6-af19-4022-8cbe-983626a4ff4e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-782195049030685641373025", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6d5f51f6-af19-4022-8cbe-983626a4ff4e", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-03-18", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:cbe59a12-99da-4c71-b511-4e0c1279c21d", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cbe59a12-99da-4c71-b511-4e0c1279c21d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:0246dfab-1deb-4f9b-9ae2-43a8b9ea3612", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-166403056366471671116873", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cbe59a12-99da-4c71-b511-4e0c1279c21d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-166403056366471671116873", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cbe59a12-99da-4c71-b511-4e0c1279c21d", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-01-24", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6ddfcae2-69be-46ef-8c05-62999140370b", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6ddfcae2-69be-46ef-8c05-62999140370b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:0246dfab-1deb-4f9b-9ae2-43a8b9ea3612", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-612864633343392243110282", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6ddfcae2-69be-46ef-8c05-62999140370b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-612864633343392243110282", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6ddfcae2-69be-46ef-8c05-62999140370b", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-02-09", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-16", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:72e3bad7-4ef9-458c-ad99-da87019dc93b", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:72e3bad7-4ef9-458c-ad99-da87019dc93b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:0246dfab-1deb-4f9b-9ae2-43a8b9ea3612", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-541312733272587870647760", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:72e3bad7-4ef9-458c-ad99-da87019dc93b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-541312733272587870647760", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:72e3bad7-4ef9-458c-ad99-da87019dc93b", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-10-13", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:264ed1cf-70dc-40bd-ae5c-349ae35c5bf6", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:264ed1cf-70dc-40bd-ae5c-349ae35c5bf6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:0246dfab-1deb-4f9b-9ae2-43a8b9ea3612", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-962741341305075587751706", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:264ed1cf-70dc-40bd-ae5c-349ae35c5bf6", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-962741341305075587751706", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:264ed1cf-70dc-40bd-ae5c-349ae35c5bf6", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-12-12", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Limousine", - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "engine" : { - "size" : 2998, - "power" : 143 - }, - "emptyWeight" : 1.73, - "fuel" : "Elektro", - "vehicleModel" : "Vehicle Fully Electric", - "productionDateGMT" : "2010-01-01", - "equipmentVariants" : [ { - "code" : "S2AVB", - "description" : "adaptive drive", - "group" : "special equipment" - }, { - "code" : "A248B", - "description" : "steering wheel heating", - "group" : "special equipment" - }, { - "code" : "S378B", - "description" : "integrated child seats", - "group" : "special equipment" - }, { - "code" : "S388C", - "description" : "security plus", - "group" : "special equipment" - } ], - "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", - "mileage" : [ { - "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2019-10-05", - "mileageDistance" : 120000 - } ] - } ], - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "ZL-75", - "key" : "manufacturerPartId" - }, { - "value" : "OMCXMDWEHGHCNDAUN", - "key" : "partInstanceId" - }, { - "value" : "OMCXMDWEHGHCNDAUN", - "key" : "van" - } ], - "manufacturingInformation" : { - "date" : "2015-06-07T20:56:47.000Z", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "partTypeInformation" : { - "manufacturerPartId" : "ZL-75", - "classification" : "product", - "nameAtManufacturer" : "Vehicle Fully Electric" - } - } ], - "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" : 79, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 163.8 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "PE221" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 88, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 40.95 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Aluminium", - "recycledContent" : 74, - "materialClass" : "2.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 286.65 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "ALU331" - }, { - "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", - "recycledContent" : 43, - "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" : 6, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 382.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - }, { - "materialName" : "Cooper", - "recycledContent" : 18, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 250.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Rubber", - "recycledContent" : 11, - "materialClass" : "5.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 7.8 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "R22" - }, { - "materialName" : "Textiles", - "recycledContent" : 43, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 5.12 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "TEX1" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "childItems" : [ { - "catenaXId" : "urn:uuid:6d9216aa-6ceb-4767-918a-2e8f71707e3e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6549bed6-3aaa-49df-bb1b-423b5e02ace8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f19fde75-7a8c-46b3-bf13-6bdc33634df2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CSGV", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2043dc37-e31b-4838-8cf4-5c0b90f12525", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f65b2507-64b0-4712-8af8-ce832ad51ace", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:802fdbc6-a7a7-45f1-bb9e-f7938726f28b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:21be6361-6882-44c0-a6e3-7ecf2e048110", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:4d80c1ee-828e-483a-b309-99ea538e23c8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e44bee5b-02a8-4e64-a020-1b59fcd4f7fc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e1ddf527-7d35-4ab8-b808-4f91b46c9489", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e2a39d76-cb03-4efa-acb9-de9d687f9e2a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:26f506a1-59d2-4832-8f1c-9f3e9b826097", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f1985439-90f0-4e0e-a6a1-33a11c74366d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:76ad939b-c3ea-4b5e-8fdb-db79aa3d800c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1d82b759-4897-4597-9b0a-424129eda34a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:720830a4-3500-44c0-8e95-5abbdecf4ae7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:988a28a9-48da-47c7-b311-3f70db4b0db3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c7e966ac-e9f7-4a43-865c-ec0ee3d54812", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:33045a50-5575-44b6-b23b-2522f4d1d8d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c21bfcce-6669-49ff-bfc9-601e90b0e6e4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a8759250-f346-41d0-ba69-795dd662f6df", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:30ee282f-673d-470b-b3e2-ea677290c3e8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f1793250-56a7-40f5-a043-acab11361c2c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:09da8da9-5a00-4852-9bb1-30093d676d08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b21695ef-529d-4b1d-8a3a-7bb448f00a70", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:96e22bab-5f9d-4d47-b605-d339a825eeb3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:07abb618-a269-4cbf-8c8f-1ca6dd8664c9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:67096773-383c-46a2-928f-8803872a353d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:328d7015-72c3-4b1d-ba1d-68d89ce63b63", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:25ce77a6-008b-4d4a-b629-f1c94dbcef9e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B2OM", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:43fbb4ac-5a7d-4d66-a8e7-661257ed78b9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B5MJ", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:05c167bd-1eaf-45a2-9cb1-bf44efb8b976", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:6d9216aa-6ceb-4767-918a-2e8f71707e3e", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6d9216aa-6ceb-4767-918a-2e8f71707e3e", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "73849201-61", - "key" : "manufacturerPartId" - }, { - "value" : "NO-745545990473377169651348", - "key" : "partInstanceId" - }, { - "value" : "Company 10", - "key" : "company" - }, { - "value" : "Brand 10", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6d9216aa-6ceb-4767-918a-2e8f71707e3e", - "partTypeInformation" : { - "manufacturerPartId" : "73849201-61", - "customerPartId" : "73849201-61", - "classification" : "component", - "nameAtManufacturer" : "Catalysator", - "nameAtCustomer" : "Catalysator" - } - } ] - }, { - "catenaXId" : "urn:uuid:6549bed6-3aaa-49df-bb1b-423b5e02ace8", - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6549bed6-3aaa-49df-bb1b-423b5e02ace8", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "22782277-50", - "key" : "manufacturerPartId" - }, { - "value" : "NO-227368647792396410352730", - "key" : "partInstanceId" - }, { - "value" : "Company 3", - "key" : "company" - }, { - "value" : "Brand 3", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6549bed6-3aaa-49df-bb1b-423b5e02ace8", - "partTypeInformation" : { - "manufacturerPartId" : "22782277-50", - "customerPartId" : "22782277-50", - "classification" : "component", - "nameAtManufacturer" : "Door f-l", - "nameAtCustomer" : "Door front-left" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6549bed6-3aaa-49df-bb1b-423b5e02ace8", - "childItems" : [ { - "catenaXId" : "urn:uuid:b03d541a-cefa-4622-8721-b613ba916679", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:b03d541a-cefa-4622-8721-b613ba916679", - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b03d541a-cefa-4622-8721-b613ba916679", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6549bed6-3aaa-49df-bb1b-423b5e02ace8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-938145381086817299192347", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b03d541a-cefa-4622-8721-b613ba916679", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "66092013KZT", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:b03d541a-cefa-4622-8721-b613ba916679", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:f19fde75-7a8c-46b3-bf13-6bdc33634df2", - "bpnl" : "BPNL00000003CSGV", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f19fde75-7a8c-46b3-bf13-6bdc33634df2", - "customers" : [ { - "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "95657362-64", - "key" : "manufacturerPartId" - }, { - "value" : "NO-874714329149281167259605", - "key" : "partInstanceId" - }, { - "value" : "Company 4", - "key" : "company" - }, { - "value" : "Brand 4", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f19fde75-7a8c-46b3-bf13-6bdc33634df2", - "partTypeInformation" : { - "manufacturerPartId" : "33740332-54", - "customerPartId" : "33740332-54", - "classification" : "component", - "nameAtManufacturer" : "Door f-r", - "nameAtCustomer" : "Door front-right" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f19fde75-7a8c-46b3-bf13-6bdc33634df2", - "childItems" : [ { - "catenaXId" : "urn:uuid:ac3d4cae-81b1-448f-822a-75200a672a22", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000000BJTL", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:ac3d4cae-81b1-448f-822a-75200a672a22", - "bpnl" : "BPNL00000000BJTL", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ac3d4cae-81b1-448f-822a-75200a672a22", - "customers" : [ { - "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f19fde75-7a8c-46b3-bf13-6bdc33634df2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-043883745393810535577786", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ac3d4cae-81b1-448f-822a-75200a672a22", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ], - "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart" : [ { - "localIdentifiers" : [ { - "value" : "99753273VTY", - "key" : "jisNumber" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:ac3d4cae-81b1-448f-822a-75200a672a22", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "customerPartId" : "PRT-12345", - "classification" : "product", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } ] - }, { - "catenaXId" : "urn:uuid:2043dc37-e31b-4838-8cf4-5c0b90f12525", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2043dc37-e31b-4838-8cf4-5c0b90f12525", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "15635759-16", - "key" : "manufacturerPartId" - }, { - "value" : "NO-627535537105819311201707", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2043dc37-e31b-4838-8cf4-5c0b90f12525", - "partTypeInformation" : { - "manufacturerPartId" : "15635759-16", - "customerPartId" : "15635759-16", - "classification" : "component", - "nameAtManufacturer" : "Door r-l", - "nameAtCustomer" : "Door rear-left" - } - } ] - }, { - "catenaXId" : "urn:uuid:f65b2507-64b0-4712-8af8-ce832ad51ace", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f65b2507-64b0-4712-8af8-ce832ad51ace", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "28673126-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-683030667824156823538176", - "key" : "partInstanceId" - }, { - "value" : "Company 5", - "key" : "company" - }, { - "value" : "Brand 5", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f65b2507-64b0-4712-8af8-ce832ad51ace", - "partTypeInformation" : { - "manufacturerPartId" : "28673126-98", - "customerPartId" : "28673126-98", - "classification" : "component", - "nameAtManufacturer" : "Door r-r", - "nameAtCustomer" : "Door rear-right" - } - } ] - }, { - "catenaXId" : "urn:uuid:802fdbc6-a7a7-45f1-bb9e-f7938726f28b", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:802fdbc6-a7a7-45f1-bb9e-f7938726f28b", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "94421589-82", - "key" : "manufacturerPartId" - }, { - "value" : "NO-724473763354476565257868", - "key" : "partInstanceId" - }, { - "value" : "Company 6", - "key" : "company" - }, { - "value" : "Brand 6", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:802fdbc6-a7a7-45f1-bb9e-f7938726f28b", - "partTypeInformation" : { - "manufacturerPartId" : "94421589-82", - "customerPartId" : "94421589-82", - "classification" : "component", - "nameAtManufacturer" : "Engine hood", - "nameAtCustomer" : "Engine hood" - } - } ] - }, { - "catenaXId" : "urn:uuid:21be6361-6882-44c0-a6e3-7ecf2e048110", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:21be6361-6882-44c0-a6e3-7ecf2e048110", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "85023955-75", - "key" : "manufacturerPartId" - }, { - "value" : "NO-085199951123656608421501", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:21be6361-6882-44c0-a6e3-7ecf2e048110", - "partTypeInformation" : { - "manufacturerPartId" : "85023955-75", - "customerPartId" : "85023955-75", - "classification" : "component", - "nameAtManufacturer" : "Tailgate", - "nameAtCustomer" : "Tailgate" - } - } ] - }, { - "catenaXId" : "urn:uuid:4d80c1ee-828e-483a-b309-99ea538e23c8", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4d80c1ee-828e-483a-b309-99ea538e23c8", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "13769860-47", - "key" : "manufacturerPartId" - }, { - "value" : "NO-057436912882075264320015", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4d80c1ee-828e-483a-b309-99ea538e23c8", - "partTypeInformation" : { - "manufacturerPartId" : "13769860-47", - "customerPartId" : "13769860-47", - "classification" : "component", - "nameAtManufacturer" : "Fender left", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:e44bee5b-02a8-4e64-a020-1b59fcd4f7fc", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e44bee5b-02a8-4e64-a020-1b59fcd4f7fc", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "36643162-35", - "key" : "manufacturerPartId" - }, { - "value" : "NO-044447843544369706311561", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e44bee5b-02a8-4e64-a020-1b59fcd4f7fc", - "partTypeInformation" : { - "manufacturerPartId" : "36643162-35", - "customerPartId" : "36643162-35", - "classification" : "component", - "nameAtManufacturer" : "Fender right", - "nameAtCustomer" : "Fender right" - } - } ] - }, { - "catenaXId" : "urn:uuid:e1ddf527-7d35-4ab8-b808-4f91b46c9489", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e1ddf527-7d35-4ab8-b808-4f91b46c9489", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "54165444-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-398628182041317020971255", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e1ddf527-7d35-4ab8-b808-4f91b46c9489", - "partTypeInformation" : { - "manufacturerPartId" : "54165444-59", - "customerPartId" : "54165444-59", - "classification" : "component", - "nameAtManufacturer" : "Bumper front", - "nameAtCustomer" : "Bumper front" - } - } ] - }, { - "catenaXId" : "urn:uuid:e2a39d76-cb03-4efa-acb9-de9d687f9e2a", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e2a39d76-cb03-4efa-acb9-de9d687f9e2a", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "22768257-25", - "key" : "manufacturerPartId" - }, { - "value" : "NO-137789605379536970914793", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e2a39d76-cb03-4efa-acb9-de9d687f9e2a", - "partTypeInformation" : { - "manufacturerPartId" : "22768257-25", - "customerPartId" : "22768257-25", - "classification" : "component", - "nameAtManufacturer" : "Bumper rear", - "nameAtCustomer" : "Bumper rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:26f506a1-59d2-4832-8f1c-9f3e9b826097", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:26f506a1-59d2-4832-8f1c-9f3e9b826097", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "65529521-37", - "key" : "manufacturerPartId" - }, { - "value" : "NO-599857350685221377433227", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:26f506a1-59d2-4832-8f1c-9f3e9b826097", - "partTypeInformation" : { - "manufacturerPartId" : "65529521-37", - "customerPartId" : "65529521-37", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror left", - "nameAtCustomer" : "Exterior mirror left" - } - } ] - }, { - "catenaXId" : "urn:uuid:f1985439-90f0-4e0e-a6a1-33a11c74366d", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f1985439-90f0-4e0e-a6a1-33a11c74366d", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "58471477-24", - "key" : "manufacturerPartId" - }, { - "value" : "NO-062396418478607603394840", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f1985439-90f0-4e0e-a6a1-33a11c74366d", - "partTypeInformation" : { - "manufacturerPartId" : "58471477-24", - "customerPartId" : "58471477-24", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror right", - "nameAtCustomer" : "Exterior mirror right" - } - } ] - }, { - "catenaXId" : "urn:uuid:76ad939b-c3ea-4b5e-8fdb-db79aa3d800c", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:76ad939b-c3ea-4b5e-8fdb-db79aa3d800c", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "09002013-68", - "key" : "manufacturerPartId" - }, { - "value" : "NO-002590527343941737266010", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:76ad939b-c3ea-4b5e-8fdb-db79aa3d800c", - "partTypeInformation" : { - "manufacturerPartId" : "09002013-68", - "customerPartId" : "09002013-68", - "classification" : "component", - "nameAtManufacturer" : "Trailer coupling", - "nameAtCustomer" : "Tailer coupling" - } - } ] - }, { - "catenaXId" : "urn:uuid:1d82b759-4897-4597-9b0a-424129eda34a", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1d82b759-4897-4597-9b0a-424129eda34a", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "43501996-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-861601556827733192982004", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1d82b759-4897-4597-9b0a-424129eda34a", - "partTypeInformation" : { - "manufacturerPartId" : "43501996-98", - "customerPartId" : "43501996-98", - "classification" : "component", - "nameAtManufacturer" : "Dashboard", - "nameAtCustomer" : "Dashboard" - } - } ] - }, { - "catenaXId" : "urn:uuid:720830a4-3500-44c0-8e95-5abbdecf4ae7", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:720830a4-3500-44c0-8e95-5abbdecf4ae7", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "77795937-13", - "key" : "manufacturerPartId" - }, { - "value" : "NO-097070023684188683195112", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:720830a4-3500-44c0-8e95-5abbdecf4ae7", - "partTypeInformation" : { - "manufacturerPartId" : "77795937-13", - "customerPartId" : "77795937-13", - "classification" : "component", - "nameAtManufacturer" : "Steering wheel", - "nameAtCustomer" : "Steering wheel" - } - } ] - }, { - "catenaXId" : "urn:uuid:988a28a9-48da-47c7-b311-3f70db4b0db3", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:988a28a9-48da-47c7-b311-3f70db4b0db3", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "20125432-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-335746726964211083527417", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:988a28a9-48da-47c7-b311-3f70db4b0db3", - "partTypeInformation" : { - "manufacturerPartId" : "20125432-59", - "customerPartId" : "20125432-59", - "classification" : "component", - "nameAtManufacturer" : "Indicator left", - "nameAtCustomer" : "Indicator left" - } - } ] - }, { - "catenaXId" : "urn:uuid:c7e966ac-e9f7-4a43-865c-ec0ee3d54812", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c7e966ac-e9f7-4a43-865c-ec0ee3d54812", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "19073706-76", - "key" : "manufacturerPartId" - }, { - "value" : "NO-932885802519325657252515", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c7e966ac-e9f7-4a43-865c-ec0ee3d54812", - "partTypeInformation" : { - "manufacturerPartId" : "19073706-76", - "customerPartId" : "19073706-76", - "classification" : "component", - "nameAtManufacturer" : "Indicator right", - "nameAtCustomer" : "Indicator right" - } - } ] - }, { - "catenaXId" : "urn:uuid:33045a50-5575-44b6-b23b-2522f4d1d8d3", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:33045a50-5575-44b6-b23b-2522f4d1d8d3", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "45415162-57", - "key" : "manufacturerPartId" - }, { - "value" : "NO-765343618318294853495187", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:33045a50-5575-44b6-b23b-2522f4d1d8d3", - "partTypeInformation" : { - "manufacturerPartId" : "45415162-57", - "customerPartId" : "45415162-57", - "classification" : "component", - "nameAtManufacturer" : "Led headlight", - "nameAtCustomer" : "Led headlight" - } - } ] - }, { - "catenaXId" : "urn:uuid:c21bfcce-6669-49ff-bfc9-601e90b0e6e4", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c21bfcce-6669-49ff-bfc9-601e90b0e6e4", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "78141846-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-286096249409737642102638", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c21bfcce-6669-49ff-bfc9-601e90b0e6e4", - "partTypeInformation" : { - "manufacturerPartId" : "78141846-87", - "customerPartId" : "78141846-87", - "classification" : "component", - "nameAtManufacturer" : "Starter motor", - "nameAtCustomer" : "Starter motor" - } - } ] - }, { - "catenaXId" : "urn:uuid:a8759250-f346-41d0-ba69-795dd662f6df", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a8759250-f346-41d0-ba69-795dd662f6df", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "81324139-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-539010298547605177596863", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a8759250-f346-41d0-ba69-795dd662f6df", - "partTypeInformation" : { - "manufacturerPartId" : "81324139-23", - "customerPartId" : "81324139-23", - "classification" : "component", - "nameAtManufacturer" : "Alternator", - "nameAtCustomer" : "Alternator" - } - } ] - }, { - "catenaXId" : "urn:uuid:30ee282f-673d-470b-b3e2-ea677290c3e8", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:30ee282f-673d-470b-b3e2-ea677290c3e8", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "57929013-09", - "key" : "manufacturerPartId" - }, { - "value" : "NO-591452515951952361067156", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:30ee282f-673d-470b-b3e2-ea677290c3e8", - "partTypeInformation" : { - "manufacturerPartId" : "57929013-09", - "customerPartId" : "57929013-09", - "classification" : "component", - "nameAtManufacturer" : "AC compressor", - "nameAtCustomer" : "Air conditioning compressor" - } - } ] - }, { - "catenaXId" : "urn:uuid:f1793250-56a7-40f5-a043-acab11361c2c", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f1793250-56a7-40f5-a043-acab11361c2c", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "61184040-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-403335292778974416648009", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f1793250-56a7-40f5-a043-acab11361c2c", - "partTypeInformation" : { - "manufacturerPartId" : "61184040-23", - "customerPartId" : "61184040-23", - "classification" : "component", - "nameAtManufacturer" : "Taillight rear", - "nameAtCustomer" : "Taillight rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:09da8da9-5a00-4852-9bb1-30093d676d08", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:09da8da9-5a00-4852-9bb1-30093d676d08", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "78744126-74", - "key" : "manufacturerPartId" - }, { - "value" : "NO-977475073187898268778471", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:09da8da9-5a00-4852-9bb1-30093d676d08", - "partTypeInformation" : { - "manufacturerPartId" : "78744126-74", - "customerPartId" : "78744126-74", - "classification" : "component", - "nameAtManufacturer" : "Taillight front", - "nameAtCustomer" : "Taillight front" - } - } ] - }, { - "catenaXId" : "urn:uuid:b21695ef-529d-4b1d-8a3a-7bb448f00a70", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b21695ef-529d-4b1d-8a3a-7bb448f00a70", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "12093297-03", - "key" : "manufacturerPartId" - }, { - "value" : "NO-898712857032246047303833", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b21695ef-529d-4b1d-8a3a-7bb448f00a70", - "partTypeInformation" : { - "manufacturerPartId" : "12093297-03", - "customerPartId" : "12093297-03", - "classification" : "component", - "nameAtManufacturer" : "Axle part front", - "nameAtCustomer" : "Axle part front" - } - } ] - }, { - "catenaXId" : "urn:uuid:96e22bab-5f9d-4d47-b605-d339a825eeb3", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:96e22bab-5f9d-4d47-b605-d339a825eeb3", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "88111709-49", - "key" : "manufacturerPartId" - }, { - "value" : "NO-622391247821731773637349", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:96e22bab-5f9d-4d47-b605-d339a825eeb3", - "partTypeInformation" : { - "manufacturerPartId" : "88111709-49", - "customerPartId" : "88111709-49", - "classification" : "component", - "nameAtManufacturer" : "Axle part rear", - "nameAtCustomer" : "Axle part rear" - } - } ] - }, { - "catenaXId" : "urn:uuid:07abb618-a269-4cbf-8c8f-1ca6dd8664c9", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:07abb618-a269-4cbf-8c8f-1ca6dd8664c9", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "00871379-44", - "key" : "manufacturerPartId" - }, { - "value" : "NO-073516131284650529404839", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:07abb618-a269-4cbf-8c8f-1ca6dd8664c9", - "partTypeInformation" : { - "manufacturerPartId" : "00871379-44", - "customerPartId" : "00871379-44", - "classification" : "component", - "nameAtManufacturer" : "Chassis", - "nameAtCustomer" : "Chassis" - } - } ] - }, { - "catenaXId" : "urn:uuid:67096773-383c-46a2-928f-8803872a353d", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:67096773-383c-46a2-928f-8803872a353d", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "08901347-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-436190148323924254777592", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:67096773-383c-46a2-928f-8803872a353d", - "partTypeInformation" : { - "manufacturerPartId" : "08901347-87", - "customerPartId" : "08901347-87", - "classification" : "component", - "nameAtManufacturer" : "Rims", - "nameAtCustomer" : "Rims" - } - } ] - }, { - "catenaXId" : "urn:uuid:328d7015-72c3-4b1d-ba1d-68d89ce63b63", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:328d7015-72c3-4b1d-ba1d-68d89ce63b63", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "45863316-60", - "key" : "manufacturerPartId" - }, { - "value" : "NO-256297015729010171951828", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:328d7015-72c3-4b1d-ba1d-68d89ce63b63", - "partTypeInformation" : { - "manufacturerPartId" : "45863316-60", - "customerPartId" : "45863316-60", - "classification" : "component", - "nameAtManufacturer" : "Tires", - "nameAtCustomer" : "Tires" - } - } ] - }, { - "catenaXId" : "urn:uuid:25ce77a6-008b-4d4a-b629-f1c94dbcef9e", - "bpnl" : "BPNL00000003B2OM", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:25ce77a6-008b-4d4a-b629-f1c94dbcef9e", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B2OM", - "key" : "manufacturerId" - }, { - "value" : "1O222E8-43", - "key" : "manufacturerPartId" - }, { - "value" : "NO-143309100580228978570786", - "key" : "partInstanceId" - }, { - "value" : "Company 2", - "key" : "company" - }, { - "value" : "Brand 2", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:25ce77a6-008b-4d4a-b629-f1c94dbcef9e", - "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:25ce77a6-008b-4d4a-b629-f1c94dbcef9e", - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-143309100580228978570786", - "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.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Carbon Steel", - "recycledContent" : 21, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 72.843 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - }, { - "materialName" : "Oil", - "recycledContent" : 20, - "materialClass" : "9.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 6.9 - }, - "aggregateState" : "liquid", - "materialAbbreviation" : "SAE40" - }, { - "materialName" : "Copper", - "recycledContent" : 17, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:25ce77a6-008b-4d4a-b629-f1c94dbcef9e", - "childItems" : [ { - "catenaXId" : "urn:uuid:00f9dc8d-2077-494f-acb4-35b8f7bd2d5f", - "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3d604fd2-1d4d-4372-9762-59876369a3a8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:fae1a7a7-dbbf-43b7-8b2d-a3a0b34bebfb", - "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:00f9dc8d-2077-494f-acb4-35b8f7bd2d5f", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:00f9dc8d-2077-494f-acb4-35b8f7bd2d5f", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:00f9dc8d-2077-494f-acb4-35b8f7bd2d5f", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:25ce77a6-008b-4d4a-b629-f1c94dbcef9e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn: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" : 48, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 30 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:3d604fd2-1d4d-4372-9762-59876369a3a8", - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3d604fd2-1d4d-4372-9762-59876369a3a8", - "customers" : [ { - "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:25ce77a6-008b-4d4a-b629-f1c94dbcef9e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "59001G6-05", - "key" : "manufacturerPartId" - }, { - "value" : "NO-333202713826398680302671", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3d604fd2-1d4d-4372-9762-59876369a3a8", - "partTypeInformation" : { - "manufacturerPartId" : "59001G6-05", - "customerPartId" : "59001G6-05", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3d604fd2-1d4d-4372-9762-59876369a3a8", - "childItems" : [ { - "catenaXId" : "urn:uuid:573432a2-36d1-478b-ad7e-cd4077ff96a5", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:573432a2-36d1-478b-ad7e-cd4077ff96a5", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:573432a2-36d1-478b-ad7e-cd4077ff96a5", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "NTIER Product" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:573432a2-36d1-478b-ad7e-cd4077ff96a5", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3d604fd2-1d4d-4372-9762-59876369a3a8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "NTIER Product", - "materialClass" : "5.5", - "component" : [ { - "materialName" : "Aluminium oxide", - "recycledContent" : 44, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 60 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - }, { - "materialName" : "Other", - "recycledContent" : 25, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:percent", - "value" : 40 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:fae1a7a7-dbbf-43b7-8b2d-a3a0b34bebfb", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:fae1a7a7-dbbf-43b7-8b2d-a3a0b34bebfb", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fae1a7a7-dbbf-43b7-8b2d-a3a0b34bebfb", - "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:25ce77a6-008b-4d4a-b629-f1c94dbcef9e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.2341", - "materialAbbreviation" : "GL338" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fae1a7a7-dbbf-43b7-8b2d-a3a0b34bebfb", - "childItems" : [ ] - } ] - }, { - "catenaXId" : "urn:uuid:43fbb4ac-5a7d-4d66-a8e7-661257ed78b9", - "bpnl" : "BPNL00000003B5MJ", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:43fbb4ac-5a7d-4d66-a8e7-661257ed78b9", - "customers" : [ { - "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", - "key" : "manufacturerId" - }, { - "value" : "27832F2-58", - "key" : "manufacturerPartId" - }, { - "value" : "NO-934462377284158962888728", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:43fbb4ac-5a7d-4d66-a8e7-661257ed78b9", - "partTypeInformation" : { - "manufacturerPartId" : "27832F2-58", - "customerPartId" : "27832F2-58", - "classification" : "component", - "nameAtManufacturer" : "ECU", - "nameAtCustomer" : "ECU" - } - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Glue", - "recycledContent" : 2, - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.3301 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GL338" - } ] - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:43fbb4ac-5a7d-4d66-a8e7-661257ed78b9", - "childItems" : [ { - "catenaXId" : "urn:uuid:d3737888-9edd-470a-8d21-ce659cb1b0cc", - "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:13b6ec3d-2f14-409d-9790-ecc97c1e4622", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b5d8462f-46f8-4cb3-9fa0-0e1a96639a9d", - "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:d3737888-9edd-470a-8d21-ce659cb1b0cc", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:d3737888-9edd-470a-8d21-ce659cb1b0cc", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Glue" - } - } ], - "bpnl" : "BPNL00000003AXS3", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d3737888-9edd-470a-8d21-ce659cb1b0cc", - "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:43fbb4ac-5a7d-4d66-a8e7-661257ed78b9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn: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" : 83, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:13b6ec3d-2f14-409d-9790-ecc97c1e4622", - "bpnl" : "BPNL00000003B3NX", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:13b6ec3d-2f14-409d-9790-ecc97c1e4622", - "customers" : [ { - "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:43fbb4ac-5a7d-4d66-a8e7-661257ed78b9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "92579W7-60", - "key" : "manufacturerPartId" - }, { - "value" : "NO-704082450745662163891303", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:13b6ec3d-2f14-409d-9790-ecc97c1e4622", - "partTypeInformation" : { - "manufacturerPartId" : "92579W7-60", - "customerPartId" : "92579W7-60", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:13b6ec3d-2f14-409d-9790-ecc97c1e4622", - "childItems" : [ { - "catenaXId" : "urn:uuid:fbafe95b-f0b8-4be2-a63d-10514c2d0c90", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:fbafe95b-f0b8-4be2-a63d-10514c2d0c90", - "urn:samm:io.catenax.batch:2.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "BID12345678", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR" - }, - "catenaXId" : "urn:uuid:fbafe95b-f0b8-4be2-a63d-10514c2d0c90", - "partTypeInformation" : { - "manufacturerPartId" : "123-0.740-3434-A", - "classification" : "product", - "nameAtManufacturer" : "Engineering Plasticst" - } - } ], - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fbafe95b-f0b8-4be2-a63d-10514c2d0c90", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:13b6ec3d-2f14-409d-9790-ecc97c1e4622", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Engineering Plastics", - "materialClass" : "5.1", - "component" : [ { - "materialName" : "PA66", - "recycledContent" : 45, - "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:b5d8462f-46f8-4cb3-9fa0-0e1a96639a9d", - "bpnl" : "BPNL00000003B0Q0", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b5d8462f-46f8-4cb3-9fa0-0e1a96639a9d", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:43fbb4ac-5a7d-4d66-a8e7-661257ed78b9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "79369Y4-15", - "key" : "manufacturerPartId" - }, { - "value" : "NO-722438429979884249730614", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b5d8462f-46f8-4cb3-9fa0-0e1a96639a9d", - "partTypeInformation" : { - "manufacturerPartId" : "79369Y4-15", - "customerPartId" : "79369Y4-15", - "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" : 2, - "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" - } ], - "catenaXId" : "urn:uuid:05c167bd-1eaf-45a2-9cb1-bf44efb8b976", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:05c167bd-1eaf-45a2-9cb1-bf44efb8b976", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4774c1cf-c509-4ec2-ba16-e30a53bd5c08", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "38049661-08", - "key" : "manufacturerPartId" - }, { - "value" : "NO-909916462545488109811483", - "key" : "partInstanceId" - }, { - "value" : "Company 1", - "key" : "company" - }, { - "value" : "Brand 1", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:05c167bd-1eaf-45a2-9cb1-bf44efb8b976", - "partTypeInformation" : { - "manufacturerPartId" : "38049661-08", - "customerPartId" : "38049661-08", - "classification" : "component", - "nameAtManufacturer" : "Battery", - "nameAtCustomer" : "Battery" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "pack" - } ], - "productType" : "pack" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-909916462545488109811483", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 81, - "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" : false, - "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" : "38049661-08", - "technicalSpecification" : [ { - "technicalValue" : "RYtGKbgicZaHCBRQDSx", - "key" : "JxkyvRnL" - } ], - "productLink" : "https://123", - "oeNumber" : "NO-909916462545488109811483", - "category" : { - "subCategory" : [ "Battery" ], - "mainCategory" : [ "Audio, video, navigation" ] - }, - "originalManufacturer" : "Company 1", - "brand" : "Brand 1", - "productDescription" : "Battery" - }, - "sku" : "1002090, xYz.09, ABcXYZ", - "mileage" : 120000.06 - } ], - "urn:bamm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "38049661-08", - "manufacturerPartId" : "38049661-08" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a Battery", - "class" : { - "code" : "27-05-02-91", - "definition" : "Traction battery, starter battery (parts)" - }, - "nameAtManufacturer" : "Battery", - "nameAtCustomer" : "Battery" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AZQP", - "eori" : "DE012345678901" - }, - "issueDate" : "2021-12-20", - "version" : 1, - "status" : "Approved" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 1272.0428, - "width" : 1272, - "length" : 2588, - "weight" : 409, - "height" : 321 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 15 - } - }, - "commercial" : { - "placedOnMarket" : "2021-06-01", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-909916462545488109811483", - "key" : "PartInstanceID" - } ], - "gtin" : " 81418316", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "150140723" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "SubstanceOfConcer", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2022-01-20", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : false, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 5.2152 ] - }, - "id" : "QG2805" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : false, - "percentage" : 5, - "name" : "Polyamid" - } ], - "critical" : [ "Graphite" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 112 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AXS3", - "manufacturer" : { - "facilityId" : "BPNL00000003B3NX", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:05c167bd-1eaf-45a2-9cb1-bf44efb8b976", - "childItems" : [ { - "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:dde305d6-f22a-4c68-a7ed-28be1a822cce", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7192e2e9-70aa-4e81-8fef-8c9ee3595aad", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a9428f87-dd46-4d14-a8e7-d8d7c5ce340a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e85a2af9-31e3-4c29-a9de-5ec274f82a60", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:53a8dc93-0438-4152-9a4e-e8308bf77fbf", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:05c167bd-1eaf-45a2-9cb1-bf44efb8b976", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-570196089623842018037372", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-570196089623842018037372", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 86, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AZQP", - "eori" : "DE012345678901" - }, - "issueDate" : "2023-03-12", - "version" : 2.8, - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.66559999999998, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 19 - } - }, - "commercial" : { - "placedOnMarket" : "2023-02-06", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-570196089623842018037372", - "key" : "PartInstanceID" - } ], - "gtin" : " 56914237", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "330526847" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-08-03", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 6.0031 ] - }, - "id" : "IM8460" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : true, - "renewable" : false, - "percentage" : 5, - "name" : "Lithium" - } ], - "critical" : [ "Manganese" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 101 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003B2OM", - "manufacturer" : { - "facilityId" : "BPNL00000003B3NX", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e379af97-5a55-4d49-8d28-a0d5b055a69a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f36009c2-3e4e-4efb-8fae-c92ea123809f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8d4f8a75-4c84-4959-8d75-675778994659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:592481e1-b102-412f-9ac2-bd29892a1758", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:53ce1ea9-87d2-488b-9103-15e0f68cee82", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f82e5eb3-eee2-415b-a178-8d4a740c6029", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cde58934-dfd2-456f-aa0d-a11fcdc25c36", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:41e25827-0e13-409b-9aee-5c7346a55981", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2f0be96b-3554-428a-820e-6c6983a8103a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:743fca52-a417-42a2-95bb-eef5550bc667", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:e379af97-5a55-4d49-8d28-a0d5b055a69a", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e379af97-5a55-4d49-8d28-a0d5b055a69a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-227822328439375045834594", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e379af97-5a55-4d49-8d28-a0d5b055a69a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-227822328439375045834594", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e379af97-5a55-4d49-8d28-a0d5b055a69a", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-08-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f36009c2-3e4e-4efb-8fae-c92ea123809f", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f36009c2-3e4e-4efb-8fae-c92ea123809f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-201148366264586665608273", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f36009c2-3e4e-4efb-8fae-c92ea123809f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-201148366264586665608273", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f36009c2-3e4e-4efb-8fae-c92ea123809f", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-06-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-28", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8d4f8a75-4c84-4959-8d75-675778994659", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8d4f8a75-4c84-4959-8d75-675778994659", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-279428660805972324551760", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8d4f8a75-4c84-4959-8d75-675778994659", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-279428660805972324551760", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8d4f8a75-4c84-4959-8d75-675778994659", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-05-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-31", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:592481e1-b102-412f-9ac2-bd29892a1758", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:592481e1-b102-412f-9ac2-bd29892a1758", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-833852601834953513029606", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:592481e1-b102-412f-9ac2-bd29892a1758", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-833852601834953513029606", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:592481e1-b102-412f-9ac2-bd29892a1758", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-05-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:53ce1ea9-87d2-488b-9103-15e0f68cee82", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:53ce1ea9-87d2-488b-9103-15e0f68cee82", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-006569394636138858916301", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:53ce1ea9-87d2-488b-9103-15e0f68cee82", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-006569394636138858916301", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:53ce1ea9-87d2-488b-9103-15e0f68cee82", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-05-14", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-23", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f82e5eb3-eee2-415b-a178-8d4a740c6029", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f82e5eb3-eee2-415b-a178-8d4a740c6029", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-779806802616998852870758", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f82e5eb3-eee2-415b-a178-8d4a740c6029", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-779806802616998852870758", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f82e5eb3-eee2-415b-a178-8d4a740c6029", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-07-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:cde58934-dfd2-456f-aa0d-a11fcdc25c36", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cde58934-dfd2-456f-aa0d-a11fcdc25c36", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-282362514712566463580440", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cde58934-dfd2-456f-aa0d-a11fcdc25c36", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-282362514712566463580440", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cde58934-dfd2-456f-aa0d-a11fcdc25c36", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-01-01", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:41e25827-0e13-409b-9aee-5c7346a55981", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:41e25827-0e13-409b-9aee-5c7346a55981", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-200135099214283147645761", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:41e25827-0e13-409b-9aee-5c7346a55981", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-200135099214283147645761", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:41e25827-0e13-409b-9aee-5c7346a55981", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-12-05", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-30", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2f0be96b-3554-428a-820e-6c6983a8103a", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2f0be96b-3554-428a-820e-6c6983a8103a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-624994645251881379104190", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2f0be96b-3554-428a-820e-6c6983a8103a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-624994645251881379104190", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2f0be96b-3554-428a-820e-6c6983a8103a", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-01-24", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:743fca52-a417-42a2-95bb-eef5550bc667", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:743fca52-a417-42a2-95bb-eef5550bc667", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-394607183149762290669027", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:743fca52-a417-42a2-95bb-eef5550bc667", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-394607183149762290669027", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:743fca52-a417-42a2-95bb-eef5550bc667", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-04-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:dde305d6-f22a-4c68-a7ed-28be1a822cce", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:dde305d6-f22a-4c68-a7ed-28be1a822cce", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:05c167bd-1eaf-45a2-9cb1-bf44efb8b976", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-251551270484946458608603", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:dde305d6-f22a-4c68-a7ed-28be1a822cce", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-251551270484946458608603", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 35, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AZQP", - "eori" : "DE012345678901" - }, - "issueDate" : "2021-10-31", - "version" : 2.7, - "status" : "Draft" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.68019999999999, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 16 - } - }, - "commercial" : { - "placedOnMarket" : "2021-02-03", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-251551270484946458608603", - "key" : "PartInstanceID" - } ], - "gtin" : " 81168238", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "276241313" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2022-06-30", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : false, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 1.5517 ] - }, - "id" : "BM7650" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : false, - "percentage" : 5, - "name" : "Lithium" - } ], - "critical" : [ "Lithium" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 121 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AYRE", - "manufacturer" : { - "facilityId" : "BPNL00000003B3NX", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:dde305d6-f22a-4c68-a7ed-28be1a822cce", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:28e6a3e5-36cf-4921-9696-8a19ba354c11", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:6aec2fea-5d5e-49ea-a871-2122b4e72060", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3238ec0a-05c9-4422-97a8-997561f09c35", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:0cb9408a-ca77-4ef3-95bd-4e7a13d517c2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5ba6fa01-2b8e-4a86-ba48-daf52cf53f0e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f64de0f0-e9b9-4ffa-8ea8-fe3a2fd9f8d7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:932d8b59-7805-4db3-ba7c-7d28e2029849", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:1080af34-8215-47e2-a699-c737261ffb9d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:9f39049b-6ac0-47a4-9b24-074d68096676", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a11b335c-6ccd-43b8-b1cc-709dbc758619", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:28e6a3e5-36cf-4921-9696-8a19ba354c11", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:28e6a3e5-36cf-4921-9696-8a19ba354c11", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dde305d6-f22a-4c68-a7ed-28be1a822cce", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-898672035243268752168546", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:28e6a3e5-36cf-4921-9696-8a19ba354c11", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-898672035243268752168546", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:28e6a3e5-36cf-4921-9696-8a19ba354c11", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-11-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:6aec2fea-5d5e-49ea-a871-2122b4e72060", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6aec2fea-5d5e-49ea-a871-2122b4e72060", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dde305d6-f22a-4c68-a7ed-28be1a822cce", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-652435055643382411843649", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6aec2fea-5d5e-49ea-a871-2122b4e72060", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-652435055643382411843649", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6aec2fea-5d5e-49ea-a871-2122b4e72060", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-09-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-06", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:3238ec0a-05c9-4422-97a8-997561f09c35", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3238ec0a-05c9-4422-97a8-997561f09c35", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dde305d6-f22a-4c68-a7ed-28be1a822cce", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-205431139351023123857256", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3238ec0a-05c9-4422-97a8-997561f09c35", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-205431139351023123857256", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3238ec0a-05c9-4422-97a8-997561f09c35", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-12-24", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-10", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:0cb9408a-ca77-4ef3-95bd-4e7a13d517c2", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0cb9408a-ca77-4ef3-95bd-4e7a13d517c2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dde305d6-f22a-4c68-a7ed-28be1a822cce", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-683377941440062235397997", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0cb9408a-ca77-4ef3-95bd-4e7a13d517c2", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-683377941440062235397997", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0cb9408a-ca77-4ef3-95bd-4e7a13d517c2", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-11-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-24", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:5ba6fa01-2b8e-4a86-ba48-daf52cf53f0e", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5ba6fa01-2b8e-4a86-ba48-daf52cf53f0e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dde305d6-f22a-4c68-a7ed-28be1a822cce", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-309882323408579386645648", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5ba6fa01-2b8e-4a86-ba48-daf52cf53f0e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-309882323408579386645648", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5ba6fa01-2b8e-4a86-ba48-daf52cf53f0e", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-02-03", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:f64de0f0-e9b9-4ffa-8ea8-fe3a2fd9f8d7", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f64de0f0-e9b9-4ffa-8ea8-fe3a2fd9f8d7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dde305d6-f22a-4c68-a7ed-28be1a822cce", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-876448425667381605022524", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f64de0f0-e9b9-4ffa-8ea8-fe3a2fd9f8d7", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-876448425667381605022524", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f64de0f0-e9b9-4ffa-8ea8-fe3a2fd9f8d7", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-04-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:932d8b59-7805-4db3-ba7c-7d28e2029849", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:932d8b59-7805-4db3-ba7c-7d28e2029849", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dde305d6-f22a-4c68-a7ed-28be1a822cce", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-291472929103023747111660", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:932d8b59-7805-4db3-ba7c-7d28e2029849", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-291472929103023747111660", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:932d8b59-7805-4db3-ba7c-7d28e2029849", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-10-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:1080af34-8215-47e2-a699-c737261ffb9d", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1080af34-8215-47e2-a699-c737261ffb9d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dde305d6-f22a-4c68-a7ed-28be1a822cce", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-817733903486450128341693", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1080af34-8215-47e2-a699-c737261ffb9d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-817733903486450128341693", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1080af34-8215-47e2-a699-c737261ffb9d", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-02-14", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:9f39049b-6ac0-47a4-9b24-074d68096676", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9f39049b-6ac0-47a4-9b24-074d68096676", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dde305d6-f22a-4c68-a7ed-28be1a822cce", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-068495490506986959365943", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9f39049b-6ac0-47a4-9b24-074d68096676", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-068495490506986959365943", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9f39049b-6ac0-47a4-9b24-074d68096676", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-06-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a11b335c-6ccd-43b8-b1cc-709dbc758619", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a11b335c-6ccd-43b8-b1cc-709dbc758619", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:dde305d6-f22a-4c68-a7ed-28be1a822cce", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-786866591093280878237954", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a11b335c-6ccd-43b8-b1cc-709dbc758619", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-786866591093280878237954", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a11b335c-6ccd-43b8-b1cc-709dbc758619", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-08-24", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:7192e2e9-70aa-4e81-8fef-8c9ee3595aad", - "bpnl" : "BPNL00000003AZQP", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7192e2e9-70aa-4e81-8fef-8c9ee3595aad", - "customers" : [ { - "businessPartner" : "BPNL00000003AZQP", - "parentItems" : [ { - "catenaXId" : "urn:uuid:05c167bd-1eaf-45a2-9cb1-bf44efb8b976", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-206155975744674278830212", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7192e2e9-70aa-4e81-8fef-8c9ee3595aad", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-206155975744674278830212", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, 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" : 32, - "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.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AZQP", - "eori" : "DE012345678901" - }, - "issueDate" : "2023-05-13", - "version" : 1.9, - "status" : "Expired" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.6543, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 16 - } - }, - "commercial" : { - "placedOnMarket" : "2020-11-21", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-206155975744674278830212", - "key" : "PartInstanceID" - } ], - "gtin" : " 72640142", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "967850997" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-05-25", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : false, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 9.1988 ] - }, - "id" : "GP7819" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : false, - "percentage" : 5, - "name" : "Insulator" - } ], - "critical" : [ "Lithium" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 101 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AYRE", - "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", - "manufacturerId" : "BPNL00000003AZQP" - } - } - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7192e2e9-70aa-4e81-8fef-8c9ee3595aad", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a88c8973-7904-48da-9d6f-a3c46d40061c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2c76d106-274e-4fd7-93a4-9a719abb8f0e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a3c93d0e-6b62-45d0-9af2-762203a5ec62", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:224d99e9-972f-4382-8fc3-0da6eba52cdf", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:17ab081d-f147-46f5-bf6a-c07f39199896", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d779b47d-866b-4b5c-9e41-f095aa9d26ca", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:71ef0ef5-ff53-439a-8837-60306980045a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:878a8d98-7a76-4870-b7cf-118da7981a3a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8fdba772-3718-4338-9e91-a7b9da3d79fc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5860cf3c-c44d-4924-8148-8c2a903e76d1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "catenaXId" : "urn:uuid:a88c8973-7904-48da-9d6f-a3c46d40061c", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a88c8973-7904-48da-9d6f-a3c46d40061c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7192e2e9-70aa-4e81-8fef-8c9ee3595aad", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-102578218827526789764365", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a88c8973-7904-48da-9d6f-a3c46d40061c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-102578218827526789764365", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a88c8973-7904-48da-9d6f-a3c46d40061c", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-05-10", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-08", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:2c76d106-274e-4fd7-93a4-9a719abb8f0e", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2c76d106-274e-4fd7-93a4-9a719abb8f0e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7192e2e9-70aa-4e81-8fef-8c9ee3595aad", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-814049081785417357796806", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2c76d106-274e-4fd7-93a4-9a719abb8f0e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-814049081785417357796806", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2c76d106-274e-4fd7-93a4-9a719abb8f0e", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-05-28", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:a3c93d0e-6b62-45d0-9af2-762203a5ec62", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a3c93d0e-6b62-45d0-9af2-762203a5ec62", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7192e2e9-70aa-4e81-8fef-8c9ee3595aad", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-521384594243791556437300", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a3c93d0e-6b62-45d0-9af2-762203a5ec62", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-521384594243791556437300", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a3c93d0e-6b62-45d0-9af2-762203a5ec62", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-05-13", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-28", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:224d99e9-972f-4382-8fc3-0da6eba52cdf", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:224d99e9-972f-4382-8fc3-0da6eba52cdf", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7192e2e9-70aa-4e81-8fef-8c9ee3595aad", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-108881565468124308446262", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:224d99e9-972f-4382-8fc3-0da6eba52cdf", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-108881565468124308446262", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:224d99e9-972f-4382-8fc3-0da6eba52cdf", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-07-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-08-31", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:17ab081d-f147-46f5-bf6a-c07f39199896", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:17ab081d-f147-46f5-bf6a-c07f39199896", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7192e2e9-70aa-4e81-8fef-8c9ee3595aad", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-150837057352846057254000", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:17ab081d-f147-46f5-bf6a-c07f39199896", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-150837057352846057254000", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:17ab081d-f147-46f5-bf6a-c07f39199896", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-11-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-20", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:d779b47d-866b-4b5c-9e41-f095aa9d26ca", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d779b47d-866b-4b5c-9e41-f095aa9d26ca", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7192e2e9-70aa-4e81-8fef-8c9ee3595aad", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-241327875919754652607201", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d779b47d-866b-4b5c-9e41-f095aa9d26ca", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-241327875919754652607201", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d779b47d-866b-4b5c-9e41-f095aa9d26ca", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-04-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:71ef0ef5-ff53-439a-8837-60306980045a", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:71ef0ef5-ff53-439a-8837-60306980045a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7192e2e9-70aa-4e81-8fef-8c9ee3595aad", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-894685216345131211167622", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:71ef0ef5-ff53-439a-8837-60306980045a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-894685216345131211167622", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:71ef0ef5-ff53-439a-8837-60306980045a", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-05-30", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:878a8d98-7a76-4870-b7cf-118da7981a3a", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:878a8d98-7a76-4870-b7cf-118da7981a3a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7192e2e9-70aa-4e81-8fef-8c9ee3595aad", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-509507622047829655064518", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:878a8d98-7a76-4870-b7cf-118da7981a3a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-509507622047829655064518", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:878a8d98-7a76-4870-b7cf-118da7981a3a", - "childItems" : [ { - "catenaXId" : "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-10-10", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-04", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - }, { - "catenaXId" : "urn:uuid:8fdba772-3718-4338-9e91-a7b9da3d79fc", - "bpnl" : "BPNL00000003AYRE", - "urn:bamm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8fdba772-3718-4338-9e91-a7b9da3d79fc", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7192e2e9-70aa-4e81-8fef-8c9ee3595aad", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-202985304807824966383613", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8fdba772-3718-4338-9e91-a7b9da3d79fc", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } ], - "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-202985304807824966383613", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8fdba772-3718-4338-9e91-a7b9da3d79fc", - "childItems" : [ { - "catenaXId" : "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-09-07", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2023-09-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ] - } ] - - -} \ No newline at end of file diff --git a/local/testing/testdata/CX_Testdata_v1.7.0_AsBuilt-not-accepted-policy.json b/local/testing/testdata/CX_Testdata_v1.7.0_AsBuilt-not-accepted-policy.json index d346000e7d..d78444945b 100644 --- a/local/testing/testdata/CX_Testdata_v1.7.0_AsBuilt-not-accepted-policy.json +++ b/local/testing/testdata/CX_Testdata_v1.7.0_AsBuilt-not-accepted-policy.json @@ -1,4 +1,4 @@ -{ +{ "policies": { "ID 3.0 NotAccepted": { "@context": { @@ -29,8 +29,8 @@ } } }, - "https://catenax.io/schema/TestDataContainer/1.0.0" : [ { - + "https://catenax.io/schema/TestDataContainer/1.0.0" : [ + { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { "catenaXId" : "urn:uuid:b0cc2dc9-b011-4b21-9c58-f48bd06d439f", "childItems" : [ { @@ -478,7 +478,5 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ] - } - ] - + } ] } \ No newline at end of file From ea9c23da91417b60b4f35a7f7b71977a3ebd1723 Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Fri, 29 Mar 2024 15:28:53 +0100 Subject: [PATCH 25/41] feat(impl):[#488] update --- CHANGELOG.md | 7 +++--- docs/src/api/irs-api.yaml | 22 +++++++++---------- .../scope-context/technical-context.adoc | 2 +- .../irs/configuration/OpenApiExamples.java | 2 +- .../irs/component/RegisterBatchOrder.java | 2 +- .../tractusx/irs/component/RegisterJob.java | 2 +- 6 files changed, 19 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b4e047183..6be46d10c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,12 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 _**For better traceability add the corresponding GitHub issue number in each changelog entry, please.**_ ## [Unreleased] -### Changed -- IRS now supports Asset Administration Shell v3.1 - adjusted lookup shells endpoint changes (assetIds query param is encoded). #359 -- ### Added - Extended EdcPolicyDefinitionService to check if a policy in the edc exists +### Changed +- IRS now supports Asset Administration Shell v3.1 - adjusted lookup shells endpoint changes (assetIds query param is encoded). #359 +- IRS now supports building relationships based on SingleLevelBomAsBuilt v3.0.0 #488 + ## [4.8.0] - 2024-03-18 ### Changed - Improved maintainability in EdcSubmodelClientImpl by reduced method visibility and better naming (in context of #448). diff --git a/docs/src/api/irs-api.yaml b/docs/src/api/irs-api.yaml index 406fcf0808..f8801f6c79 100644 --- a/docs/src/api/irs-api.yaml +++ b/docs/src/api/irs-api.yaml @@ -993,7 +993,7 @@ components: lastModifiedOn: 2022-02-03T14:48:54.709Z parameter: aspects: - - urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt + - urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt - urn:bamm:io.catenax.serial_part:1.0.1#SerialPart auditContractNegotiation: false bomLifecycle: asBuilt @@ -1044,7 +1044,7 @@ components: lastModifiedOn: 2022-02-03T14:48:54.709Z parameter: aspects: - - urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt + - urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt - urn:bamm:io.catenax.serial_part:1.0.1#SerialPart auditContractNegotiation: false bomLifecycle: asBuilt @@ -1170,7 +1170,7 @@ components: lastModifiedOn: 2022-02-03T14:48:54.709Z parameter: aspects: - - urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt + - urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt - urn:bamm:io.catenax.serial_part:1.0.1#SerialPart auditContractNegotiation: false bomLifecycle: asBuilt @@ -1252,7 +1252,7 @@ components: value: urn:bamm:io.catenax.vehicle:0.1.1#PartDetails type: ModelReference submodels: - - aspectType: urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt + - aspectType: urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt contractAgreementId: f253718e-a270-4367-901b-9d50d9bd8462 identification: urn:uuid:fc784d2a-5506-4e61-8e34-21600f8cdeff payload: @@ -1324,7 +1324,7 @@ components: lastModifiedOn: 2022-02-03T14:48:54.709Z parameter: aspects: - - urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt + - urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt - urn:bamm:io.catenax.serial_part:1.0.1#SerialPart auditContractNegotiation: false bomLifecycle: asBuilt @@ -1362,7 +1362,7 @@ components: lastModifiedOn: 2022-02-03T14:48:54.709Z parameter: aspects: - - urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt + - urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt - urn:bamm:io.catenax.serial_part:1.0.1#SerialPart auditContractNegotiation: false bomLifecycle: asBuilt @@ -1442,7 +1442,7 @@ components: - type: Submodel value: urn:bamm:io.catenax.vehicle:0.1.1#PartDetails submodels: - - aspectType: urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt + - aspectType: urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt contractAgreementId: f253718e-a270-4367-901b-9d50d9bd8462 identification: urn:uuid:fc784d2a-5506-4e61-8e34-21600f8cdeff payload: @@ -1480,7 +1480,7 @@ components: lastModifiedOn: 2022-02-03T14:48:54.709Z parameter: aspects: - - urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt + - urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt - urn:bamm:io.catenax.serial_part:1.0.1#SerialPart auditContractNegotiation: false bomLifecycle: asBuilt @@ -1502,7 +1502,7 @@ components: value: lastUpdated: 2023-02-13T08:18:11.990659500Z models: - - urn: urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt + - urn: urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt name: SingleLevelBomAsBuilt status: RELEASED type: BAMM @@ -2561,7 +2561,7 @@ components: description: List of aspect names that will be collected if \ flag is set to true. example: - - urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt + - urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt items: type: string pattern: ^(urn:[bs]amm:.*\d\.\d\.\d)?(#)?(\w+)?$ @@ -2747,7 +2747,7 @@ components: description: List of aspect names that will be collected if \ flag is set to true. example: - - urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt + - urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt items: type: string pattern: ^(urn:[bs]amm:.*\d\.\d\.\d)?(#)?(\w+)?$ diff --git a/docs/src/docs/arc42/scope-context/technical-context.adoc b/docs/src/docs/arc42/scope-context/technical-context.adoc index 32c778f07d..d76d107f39 100644 --- a/docs/src/docs/arc42/scope-context/technical-context.adoc +++ b/docs/src/docs/arc42/scope-context/technical-context.adoc @@ -32,7 +32,7 @@ The integrated EDC client in the IRS is responsible for creating restful request |=== | Name | Description | -| SingleLevelBomAsBuilt | The single-level bill of material represents one sub-level of an assembly and does not include any lower-level subassemblies. The as-built lifecycle references all child items as manufactured by the manufacturer referencing only child items in an as-built lifecycle themselves, unless parts can only be tracked by an part ID. If it's unclear which item has been built-in into the parent item, all potential parts must be listed. This is the case when, e.g. the same item is supplied by two suppliers and the item is only tracked by a customer part ID during assembly, these items can not be differentiated from each other. | 2.0.0 +| SingleLevelBomAsBuilt | The single-level bill of material represents one sub-level of an assembly and does not include any lower-level subassemblies. The as-built lifecycle references all child items as manufactured by the manufacturer referencing only child items in an as-built lifecycle themselves, unless parts can only be tracked by an part ID. If it's unclear which item has been built-in into the parent item, all potential parts must be listed. This is the case when, e.g. the same item is supplied by two suppliers and the item is only tracked by a customer part ID during assembly, these items can not be differentiated from each other. | 3.0.0 | SingleLevelUsageAsBuilt | The aspect provides the information in which parent part(s)/product(s) the given item is assembled in. Could be a 1:1 relationship in terms of a e.g. a brake component or 1:n for e.g. coatings. The given item as well as the parent item must refer to an object from as-built lifecycle phase, i.e. a batch or a serialized part. | 2.0.0 |=== diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/OpenApiExamples.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/OpenApiExamples.java index 38d65986ec..b7e7cc9bfb 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/OpenApiExamples.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/OpenApiExamples.java @@ -91,7 +91,7 @@ public class OpenApiExamples { private static final String SUPPLY_CHAIN_IMPACTED_ASPECT_TYPE = "supply_chain_impacted"; private static final String SUPPLY_CHAIN_IMPACTED_KEY = "supplyChainImpacted"; private static final String SUPPLY_CHAIN_IMPACTER_RESULT = "YES"; - private static final String SINGLE_LEVEL_BOM_AS_BUILT_ASPECT = "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt"; + private static final String SINGLE_LEVEL_BOM_AS_BUILT_ASPECT = "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt"; private static final String SERIAL_PART_ASPECT = "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart"; private static final int FETCHED_ITEMS_SIZE = 3; private static final int NO_RUNNING_OR_FAILED_ITEMS = 0; diff --git a/irs-models/src/main/java/org/eclipse/tractusx/irs/component/RegisterBatchOrder.java b/irs-models/src/main/java/org/eclipse/tractusx/irs/component/RegisterBatchOrder.java index 9a436a6b4f..3ba59f7da0 100644 --- a/irs-models/src/main/java/org/eclipse/tractusx/irs/component/RegisterBatchOrder.java +++ b/irs-models/src/main/java/org/eclipse/tractusx/irs/component/RegisterBatchOrder.java @@ -91,7 +91,7 @@ public class RegisterBatchOrder { private BomLifecycle bomLifecycle; @ArraySchema(arraySchema = @Schema(description = "List of aspect names that will be collected if \\ flag is set to true.", - example = "[\"urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt\"]", + example = "[\"urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt\"]", implementation = String.class, pattern = ASPECT_MODEL_REGEX), maxItems = Integer.MAX_VALUE) private List<@Pattern(regexp = ASPECT_MODEL_REGEX) String> aspects; diff --git a/irs-models/src/main/java/org/eclipse/tractusx/irs/component/RegisterJob.java b/irs-models/src/main/java/org/eclipse/tractusx/irs/component/RegisterJob.java index edcb0a4eaa..f7b0d562de 100644 --- a/irs-models/src/main/java/org/eclipse/tractusx/irs/component/RegisterJob.java +++ b/irs-models/src/main/java/org/eclipse/tractusx/irs/component/RegisterJob.java @@ -65,7 +65,7 @@ public class RegisterJob { private BomLifecycle bomLifecycle; @ArraySchema(arraySchema = @Schema(description = "List of aspect names that will be collected if \\ flag is set to true.", - example = "[\"urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt\"]", + example = "[\"urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt\"]", implementation = String.class, pattern = ASPECT_MODEL_REGEX), maxItems = Integer.MAX_VALUE) private List<@Pattern(regexp = ASPECT_MODEL_REGEX) String> aspects; From dd76c2321eba04e90e77cce81db21107a70de74f Mon Sep 17 00:00:00 2001 From: ds-ext-kmassalski <100765908+ds-ext-kmassalski@users.noreply.github.com> Date: Tue, 2 Apr 2024 13:59:15 +0200 Subject: [PATCH 26/41] Update CHANGELOG.md Co-authored-by: ds-mkanal <100209308+mkanal@users.noreply.github.com> --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6be46d10c7..74b6c43721 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,7 @@ _**For better traceability add the corresponding GitHub issue number in each cha ### Changed - IRS now supports Asset Administration Shell v3.1 - adjusted lookup shells endpoint changes (assetIds query param is encoded). #359 -- IRS now supports building relationships based on SingleLevelBomAsBuilt v3.0.0 #488 +- Support of building relationships based on SingleLevelBomAsBuilt v3.0.0 #488 ## [4.8.0] - 2024-03-18 ### Changed From c11565af951f84416068aef62a879e0aea579227 Mon Sep 17 00:00:00 2001 From: ds-ext-kmassalski Date: Tue, 2 Apr 2024 12:25:37 +0000 Subject: [PATCH 27/41] chore(dependencies): Update DEPENDENCIES --- DEPENDENCIES | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DEPENDENCIES b/DEPENDENCIES index 56bc53a9d5..e20fff5baa 100644 --- a/DEPENDENCIES +++ b/DEPENDENCIES @@ -372,9 +372,9 @@ maven/mavencentral/org.jboss.logging/jboss-logging/3.5.3.Final, Apache-2.0, appr maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib-common/1.8.22, Apache-2.0, approved, #8910 maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib-common/1.9.0, Apache-2.0, approved, #14186 maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib-jdk7/1.8.22, Apache-2.0, approved, #8807 -maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib-jdk7/1.9.0, None, restricted, #14188 +maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib-jdk7/1.9.0, Apache-2.0, approved, #14193 maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib-jdk8/1.8.22, Apache-2.0, approved, #8875 -maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib-jdk8/1.9.0, None, restricted, #14185 +maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib-jdk8/1.9.0, Apache-2.0, approved, #14191 maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib/1.6.20, Apache-2.0, approved, clearlydefined maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib/1.8.22, Apache-2.0, approved, #8865 maven/mavencentral/org.jetbrains/annotations/13.0, Apache-2.0, approved, clearlydefined From a9972cff4cfb091d236a6ebc776a8efaa814c484 Mon Sep 17 00:00:00 2001 From: ds-lcapellino Date: Wed, 3 Apr 2024 13:04:47 +0200 Subject: [PATCH 28/41] chore: prepare release 4.9.0 --- CHANGELOG.md | 8 +++++++- COMPATIBILITY_MATRIX.md | 16 ++++++++++++++++ docs/src/api/irs-api.yaml | 2 +- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 74b6c43721..a472505553 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 _**For better traceability add the corresponding GitHub issue number in each changelog entry, please.**_ -## [Unreleased] +## [UNRELEASED] + +### Added + +### Changed + +## [4.9.0] - 2024-04-03 ### Added - Extended EdcPolicyDefinitionService to check if a policy in the edc exists diff --git a/COMPATIBILITY_MATRIX.md b/COMPATIBILITY_MATRIX.md index fe2943f5cb..a718f601c6 100644 --- a/COMPATIBILITY_MATRIX.md +++ b/COMPATIBILITY_MATRIX.md @@ -1,6 +1,22 @@ # Compatibility matrix IRS Full changelog of IRS: [changelog](CHANGELOG.md) + +## [4.9.0] - 2024-04-03 + +| Dependency | Version | Helm | Comments | +|---------------------------|------------------------------|------------|-----------------| +| EDC | 0.5.3 | 0.5.3 | | +| EDC PostgresSQL | 15.1.0-debian-11-r12 | 12.1.6 | Optional | +| MIW | 0.1.0 | 0.1.0 | REST connection | +| Semantics Hub | 0.1.29 | v0.2.11-M1 | REST connection | +| DTR | 0.3.14-M1 | 0.3.22 | REST connection | +| Minio | RELEASE.2022-11-11T03-44-20Z | 5.0.1 | | +| SingleLevelBomAsBuilt | 2.0.0 | - | Model version | +| SingleLevelBomAsPlanned | 2.0.0 | - | Model version | +| SingleLevelBomAsSpecified | 1.0.0 | - | Model version | +| SingleLevelUsageAsBuilt | 2.0.0 | - | Model version | + ## [4.8.0] - 2024-03-18 | Dependency | Version | Helm | Comments | |---------------------------|------------------------------|------------|-----------------| diff --git a/docs/src/api/irs-api.yaml b/docs/src/api/irs-api.yaml index f8801f6c79..fa80bc44b4 100644 --- a/docs/src/api/irs-api.yaml +++ b/docs/src/api/irs-api.yaml @@ -3,7 +3,7 @@ info: description: The API of the Item Relationship Service (IRS) for retrieving item graphs along the value chain of CATENA-X partners. title: IRS API - version: 4.8.0 + version: 4.9.0 servers: - url: http://localhost:8080 security: From dd844093903dc6e03c925d67fa686e3972e0710d Mon Sep 17 00:00:00 2001 From: ds-lcapellino Date: Wed, 3 Apr 2024 13:25:41 +0200 Subject: [PATCH 29/41] chore: prepare release 4.9.0 --- charts/irs-helm/CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/charts/irs-helm/CHANGELOG.md b/charts/irs-helm/CHANGELOG.md index b76ebf519d..67ce0d5708 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.18.0] - 2024-04-03 + +### Changed + +- Update IRS version to 4.9.0 + + ## [6.17.0] - 2024-03-18 ### Added - Added property `edc.controlplane.asyncTimeout` which allows to set a global time-to-live for all async requests over EDC From 17a4dbcdc78d3a6dba8e68cc3cf12bba4039032f Mon Sep 17 00:00:00 2001 From: ds-lcapellino Date: Wed, 3 Apr 2024 11:36:26 +0000 Subject: [PATCH 30/41] chore(release): Prepare release for Helm version 6.18.0 --- charts/irs-helm/Chart.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/irs-helm/Chart.yaml b/charts/irs-helm/Chart.yaml index 14a717c304..c8bf53d8d2 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.17.0 +version: 6.18.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: "4.8.0" +appVersion: "4.9.0" dependencies: - name: common repository: https://charts.bitnami.com/bitnami From d58236cc3dcea164ac423da71224725905504572 Mon Sep 17 00:00:00 2001 From: ds-mwesener Date: Wed, 3 Apr 2024 13:10:13 +0000 Subject: [PATCH 31/41] chore(dependencies): Update irs-registry-client to 1.8.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 74d3eefb49..96611cfa6b 100644 --- a/pom.xml +++ b/pom.xml @@ -73,7 +73,7 @@ - 1.7.0-SNAPSHOT + 1.8.0 3.1.10 From 6a0b4b3ad94395ae81ff2e9e5493b695733425be Mon Sep 17 00:00:00 2001 From: ds-mwesener Date: Wed, 3 Apr 2024 13:18:24 +0000 Subject: [PATCH 32/41] chore(dependencies): Update DEPENDENCIES --- DEPENDENCIES | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/DEPENDENCIES b/DEPENDENCIES index e20fff5baa..083e281965 100644 --- a/DEPENDENCIES +++ b/DEPENDENCIES @@ -324,12 +324,12 @@ maven/mavencentral/org.eclipse.jetty/jetty-webapp/11.0.20, EPL-2.0 OR Apache-2.0 maven/mavencentral/org.eclipse.jetty/jetty-xml/11.0.17, EPL-2.0 OR Apache-2.0, approved, rt.jetty maven/mavencentral/org.eclipse.jetty/jetty-xml/11.0.20, EPL-2.0 OR Apache-2.0, approved, rt.jetty maven/mavencentral/org.eclipse.tractusx.irs/irs-api/0.0.2-SNAPSHOT, Apache-2.0, approved, automotive.tractusx -maven/mavencentral/org.eclipse.tractusx.irs/irs-common/1.7.0-SNAPSHOT, Apache-2.0, approved, automotive.tractusx -maven/mavencentral/org.eclipse.tractusx.irs/irs-edc-client/1.7.0-SNAPSHOT, Apache-2.0, approved, automotive.tractusx -maven/mavencentral/org.eclipse.tractusx.irs/irs-models/1.7.0-SNAPSHOT, Apache-2.0, approved, automotive.tractusx +maven/mavencentral/org.eclipse.tractusx.irs/irs-common/1.8.0, Apache-2.0, approved, automotive.tractusx +maven/mavencentral/org.eclipse.tractusx.irs/irs-edc-client/1.8.0, Apache-2.0, approved, automotive.tractusx +maven/mavencentral/org.eclipse.tractusx.irs/irs-models/1.8.0, Apache-2.0, approved, automotive.tractusx maven/mavencentral/org.eclipse.tractusx.irs/irs-policy-store/0.0.2-SNAPSHOT, Apache-2.0, approved, automotive.tractusx -maven/mavencentral/org.eclipse.tractusx.irs/irs-registry-client/1.7.0-SNAPSHOT, Apache-2.0, approved, automotive.tractusx -maven/mavencentral/org.eclipse.tractusx.irs/irs-testing/1.7.0-SNAPSHOT, Apache-2.0, approved, automotive.tractusx +maven/mavencentral/org.eclipse.tractusx.irs/irs-registry-client/1.8.0, Apache-2.0, approved, automotive.tractusx +maven/mavencentral/org.eclipse.tractusx.irs/irs-testing/1.8.0, Apache-2.0, approved, automotive.tractusx maven/mavencentral/org.glassfish.hk2.external/aopalliance-repackaged/3.0.4, EPL-2.0 OR GPL-2.0-only with Classpath-exception-2.0, approved, ee4j.glassfish maven/mavencentral/org.glassfish.hk2.external/aopalliance-repackaged/3.0.5, EPL-2.0 OR GPL-2.0-only with Classpath-exception-2.0, approved, ee4j.glassfish maven/mavencentral/org.glassfish.hk2/hk2-api/3.0.4, EPL-2.0 OR GPL-2.0-only with Classpath-exception-2.0, approved, ee4j.glassfish From aa13ac9e37a7886ab5eac7499ee34f1be5d525f0 Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Thu, 4 Apr 2024 11:18:21 +0200 Subject: [PATCH 33/41] feat(impl):[#488] insomnia update requests --- .../IRS_Request_Collection.json | 592 ++++++++---------- 1 file changed, 261 insertions(+), 331 deletions(-) diff --git a/local/testing/request-collection/IRS_Request_Collection.json b/local/testing/request-collection/IRS_Request_Collection.json index 0f0b8d6f68..b9a82190b4 100644 --- a/local/testing/request-collection/IRS_Request_Collection.json +++ b/local/testing/request-collection/IRS_Request_Collection.json @@ -1,12 +1,12 @@ { "_type": "export", "__export_format": 4, - "__export_date": "2024-03-22T09:31:33.166Z", - "__export_source": "insomnia.desktop.app:v8.6.1", + "__export_date": "2024-04-04T09:16:52.974Z", + "__export_source": "insomnia.desktop.app:v2023.5.8", "resources": [ { - "_id": "req_2d5a4fb5ec0845059533cb9904910156", - "parentId": "fld_c751e5e73d5248a3ae22a44bafae7906", + "_id": "req_c42f903db99e422ca53ef411ef0202d1", + "parentId": "fld_7b07eaf7d8124d3385d12ef2dfd8c5f1", "modified": 1711099785377, "created": 1705005887617, "url": "{{IRS_HOST}}/irs/policies?bpnls=BPNL00000001CRHK", @@ -25,7 +25,6 @@ }, "metaSortKey": -1705005887617, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -35,8 +34,8 @@ "_type": "request" }, { - "_id": "fld_c751e5e73d5248a3ae22a44bafae7906", - "parentId": "fld_7b1b2f5f85934d3d8c82d7c7ce458380", + "_id": "fld_7b07eaf7d8124d3385d12ef2dfd8c5f1", + "parentId": "fld_d5990860fbf2447ea5458e20134a1479", "modified": 1687243055015, "created": 1687243055015, "name": "Policy Store", @@ -47,8 +46,8 @@ "_type": "request_group" }, { - "_id": "fld_7b1b2f5f85934d3d8c82d7c7ce458380", - "parentId": "wrk_d83bab75184e43adadd63001907af70d", + "_id": "fld_d5990860fbf2447ea5458e20134a1479", + "parentId": "wrk_565df8abe30f4da29d8bffcde97927d7", "modified": 1691572726194, "created": 1680682418636, "name": "IRS DEMO Collection", @@ -59,18 +58,18 @@ "_type": "request_group" }, { - "_id": "wrk_d83bab75184e43adadd63001907af70d", + "_id": "wrk_565df8abe30f4da29d8bffcde97927d7", "parentId": null, - "modified": 1711099756361, - "created": 1711099756361, + "modified": 1680682438221, + "created": 1680682419747, "name": "IRS", "description": "", "scope": "collection", "_type": "workspace" }, { - "_id": "req_ab9376672bd94bd783aa97f36646981b", - "parentId": "fld_c751e5e73d5248a3ae22a44bafae7906", + "_id": "req_362e65d57ebd44abbd763389316bd595", + "parentId": "fld_7b07eaf7d8124d3385d12ef2dfd8c5f1", "modified": 1702990529632, "created": 1687243204155, "url": "{{IRS_HOST}}/irs/policies/{% prompt 'policyId', '', 'traceability-test', '', false, true %}", @@ -89,7 +88,6 @@ }, "metaSortKey": -1685602897140.75, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -99,8 +97,8 @@ "_type": "request" }, { - "_id": "req_a68c5fa596ee4b738eefd6b7b4e2bd7a", - "parentId": "fld_c751e5e73d5248a3ae22a44bafae7906", + "_id": "req_cbd1ae216b704ca9b1bd19a373f15e8b", + "parentId": "fld_7b07eaf7d8124d3385d12ef2dfd8c5f1", "modified": 1711099840007, "created": 1693576003390, "url": "{{IRS_HOST}}/irs/policies", @@ -127,7 +125,6 @@ }, "metaSortKey": -1684874704117.875, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -137,8 +134,8 @@ "_type": "request" }, { - "_id": "req_95aa08cefddc4743afc85fcabf40e4ee", - "parentId": "fld_c751e5e73d5248a3ae22a44bafae7906", + "_id": "req_6b16b22d06014a2d96954dddc2f606b3", + "parentId": "fld_7b07eaf7d8124d3385d12ef2dfd8c5f1", "modified": 1711099862861, "created": 1687243182397, "url": "{{IRS_HOST}}/irs/policies", @@ -165,7 +162,6 @@ }, "metaSortKey": -1683962737633.5, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -175,8 +171,8 @@ "_type": "request" }, { - "_id": "req_b22ea4121d2249e0830489b188ec21e4", - "parentId": "fld_5930ffca903d46feb1793ebd290dde47", + "_id": "req_baa19798f4c1492583e75c56e1580fbd", + "parentId": "fld_399334c817994e2189624ff7b3431877", "modified": 1706003275081, "created": 1680682418619, "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/shell-descriptors/{% prompt 'aasIdentifier', '', _.GLOBAL_ASSET_ID, '', false, true %}", @@ -197,7 +193,6 @@ "authentication": {}, "metaSortKey": -1680682418619, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -207,8 +202,8 @@ "_type": "request" }, { - "_id": "fld_5930ffca903d46feb1793ebd290dde47", - "parentId": "fld_7b1b2f5f85934d3d8c82d7c7ce458380", + "_id": "fld_399334c817994e2189624ff7b3431877", + "parentId": "fld_d5990860fbf2447ea5458e20134a1479", "modified": 1691504187689, "created": 1680682418630, "name": "Digital Twin Registry", @@ -219,8 +214,8 @@ "_type": "request_group" }, { - "_id": "req_ca1125488c45483c9ddda17955067893", - "parentId": "fld_5930ffca903d46feb1793ebd290dde47", + "_id": "req_f6c0d00f22fe4bd8bedd9baa0b9fcb8e", + "parentId": "fld_399334c817994e2189624ff7b3431877", "modified": 1706002920212, "created": 1690529035794, "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/shell-descriptors", @@ -241,7 +236,6 @@ "authentication": {}, "metaSortKey": -1680682418614, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -251,8 +245,8 @@ "_type": "request" }, { - "_id": "req_6735560470e644d2b0378e7bddf1b99e", - "parentId": "fld_5930ffca903d46feb1793ebd290dde47", + "_id": "req_c223e093de1b4ecfaee2a0fac88f6f76", + "parentId": "fld_399334c817994e2189624ff7b3431877", "modified": 1706003278149, "created": 1680682418609, "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells", @@ -321,7 +315,6 @@ "authentication": {}, "metaSortKey": -1680682418609, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -331,8 +324,8 @@ "_type": "request" }, { - "_id": "req_837d51ff21e140ab96da276abdaaef54", - "parentId": "fld_5930ffca903d46feb1793ebd290dde47", + "_id": "req_bfcd07c68515497285b3bf626780d908", + "parentId": "fld_399334c817994e2189624ff7b3431877", "modified": 1706003280850, "created": 1680682418595, "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells", @@ -359,7 +352,6 @@ "authentication": {}, "metaSortKey": -1680682418595, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -369,8 +361,8 @@ "_type": "request" }, { - "_id": "req_9332ba908a3648328059a85fc5583ac9", - "parentId": "fld_5930ffca903d46feb1793ebd290dde47", + "_id": "req_601086420b144c3889a2c102ca323032", + "parentId": "fld_399334c817994e2189624ff7b3431877", "modified": 1706003354109, "created": 1680682418581, "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells", @@ -397,7 +389,6 @@ "authentication": {}, "metaSortKey": -1680682418581, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -407,8 +398,8 @@ "_type": "request" }, { - "_id": "req_0b28f257a75249d084c0cedad0e3c655", - "parentId": "fld_5930ffca903d46feb1793ebd290dde47", + "_id": "req_38005604efd443a98525d9fd78eb7b21", + "parentId": "fld_399334c817994e2189624ff7b3431877", "modified": 1706003284715, "created": 1680682418570, "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells/query", @@ -436,7 +427,6 @@ "authentication": {}, "metaSortKey": -1680682418570, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -446,8 +436,8 @@ "_type": "request" }, { - "_id": "req_f593512f0af543a6b70242da819df2db", - "parentId": "fld_5930ffca903d46feb1793ebd290dde47", + "_id": "req_447ae23a0b274b8aa03dc6d30d2a5424", + "parentId": "fld_399334c817994e2189624ff7b3431877", "modified": 1706003286642, "created": 1691408320970, "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells/query", @@ -475,7 +465,6 @@ "authentication": {}, "metaSortKey": -1680682418560.5, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -485,8 +474,8 @@ "_type": "request" }, { - "_id": "req_bbb801fd3b2b444bb3318a8de92918a9", - "parentId": "fld_5930ffca903d46feb1793ebd290dde47", + "_id": "req_9d6b2234852a47a3935db24ca44034d8", + "parentId": "fld_399334c817994e2189624ff7b3431877", "modified": 1706003289343, "created": 1689167429413, "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/shell-descriptors/{% prompt 'id', '', '', '', false, true %}", @@ -515,7 +504,6 @@ "authentication": {}, "metaSortKey": -1680682418470, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -525,8 +513,8 @@ "_type": "request" }, { - "_id": "req_7ea6d52eea2442ba82a8255041f3cb39", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_2251872027064b61b357c75f64d0c57b", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1702991054859, "created": 1680682418551, "url": "{{IRS_HOST}}/irs/jobs", @@ -553,7 +541,6 @@ }, "metaSortKey": -1680682418551, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -563,8 +550,8 @@ "_type": "request" }, { - "_id": "fld_80d0dfda7d9849f8923030bcb64169a7", - "parentId": "fld_7b1b2f5f85934d3d8c82d7c7ce458380", + "_id": "fld_a3ad61910c48475e8359adbb967b744e", + "parentId": "fld_d5990860fbf2447ea5458e20134a1479", "modified": 1680682418562, "created": 1680682418562, "name": "IRS Test Collection", @@ -575,8 +562,8 @@ "_type": "request_group" }, { - "_id": "req_b5a068e9bd7044c699f03ee26a1c7499", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_9227c04bec9241d3a324914f94a361e6", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1702991058493, "created": 1680682418539, "url": "{{IRS_HOST}}/irs/jobs", @@ -603,7 +590,6 @@ }, "metaSortKey": -1680682418539, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -613,8 +599,8 @@ "_type": "request" }, { - "_id": "req_f32ea4db7e4e4c0fa9a4058f20ab3a58", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_46b2274eef02402aaf0c9a6c11d261c8", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1702991063641, "created": 1680682418524, "url": "{{IRS_HOST}}/irs/jobs", @@ -641,7 +627,6 @@ }, "metaSortKey": -1680682418524, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -651,8 +636,8 @@ "_type": "request" }, { - "_id": "req_fa7ee06927f942a88dcf9d047a59dd22", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_8b9cc8edfec14f92a94386c11fc4ec10", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1702991067797, "created": 1680682418514, "url": "{{IRS_HOST}}/irs/jobs", @@ -679,7 +664,6 @@ }, "metaSortKey": -1680682418514, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -689,8 +673,8 @@ "_type": "request" }, { - "_id": "req_0a75e90c3b8c4f4cb2088d456b0d1d98", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_fd649852aee8412496d292c376a9cc0f", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1702991071709, "created": 1680682418504, "url": "{{IRS_HOST}}/irs/jobs", @@ -717,7 +701,6 @@ }, "metaSortKey": -1680682418504, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -727,8 +710,8 @@ "_type": "request" }, { - "_id": "req_4424152376ce49e1b00d404b4346b9e4", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_c8f2d6cbef4443e08e02aefbc34d3f6d", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1702991076696, "created": 1695042901876, "url": "{{IRS_HOST}}/irs/jobs", @@ -755,7 +738,6 @@ }, "metaSortKey": -1680682418496, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -765,8 +747,8 @@ "_type": "request" }, { - "_id": "req_b8bcd1059fa0428fa74db6e0df9a549c", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_ae6b02b0d78341949a208629e4af18a4", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1710076144872, "created": 1680682418488, "url": "{{IRS_HOST}}/irs/jobs", @@ -775,7 +757,7 @@ "method": "POST", "body": { "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\n\t\t\"urn:bamm:io.catenax.serial_part:1.0.1#SerialPart\"\n\t],\n\t\"key\": {\n\t\t\"globalAssetId\": \"{% prompt 'Global Asset ID', 'Please provide \\'Global-Asset-ID\\' or use default', _.GLOBAL_ASSET_ID, '', false, true %}\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t},\n\t\"collectAspects\": true\n}" + "text": "{\n\t\"aspects\": [\n\t\t\"urn:samm:io.catenax.serial_part:3.0.0#SerialPart\"\n\t],\n\t\"key\": {\n\t\t\"globalAssetId\": \"{% prompt 'Global Asset ID', 'Please provide \\'Global-Asset-ID\\' or use default', _.GLOBAL_ASSET_ID, '', false, true %}\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t},\n\t\"collectAspects\": true\n}" }, "parameters": [], "headers": [ @@ -793,7 +775,6 @@ }, "metaSortKey": -1680682418488, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -803,8 +784,8 @@ "_type": "request" }, { - "_id": "req_1f8b0bee14394eebbd17f2a845491f5b", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_f6789fe83c084260811a9ae0822f9d7b", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1710076455844, "created": 1680682418479, "url": "{{IRS_HOST}}/irs/jobs", @@ -813,7 +794,7 @@ "method": "POST", "body": { "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\n\t\t\"urn:bamm:io.catenax.serial_part:1.0.1#SerialPart\",\n\t\t\"urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt\"\n\t],\n\t\"key\": {\n\t\t\"globalAssetId\": \"{% prompt 'Global Asset ID', 'Please provide \\'Global-Asset-ID\\' or use default', _.GLOBAL_ASSET_ID, '', false, true %}\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t},\n\t\"collectAspects\": true\n}" + "text": "{\n\t\"aspects\": [\n\t\t\"urn:samm:io.catenax.serial_part:3.0.0#SerialPart\",\n\t\t\"urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt\"\n\t],\n\t\"key\": {\n\t\t\"globalAssetId\": \"{% prompt 'Global Asset ID', 'Please provide \\'Global-Asset-ID\\' or use default', _.GLOBAL_ASSET_ID, '', false, true %}\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t},\n\t\"collectAspects\": true\n}" }, "parameters": [], "headers": [ @@ -831,7 +812,6 @@ }, "metaSortKey": -1680682418479, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -841,9 +821,9 @@ "_type": "request" }, { - "_id": "req_3d4c81094d24462c9f6eb69069dabfcf", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", - "modified": 1710076515556, + "_id": "req_666d98e3c1264a5791be8687ed3c2d65", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", + "modified": 1712222178406, "created": 1680682418469, "url": "{{IRS_HOST}}/irs/jobs", "name": "1.3.2 [Register Job with aspect MaterialForRecycling and BatteryPass]", @@ -851,7 +831,7 @@ "method": "POST", "body": { "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\n\t\t\"urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass\",\n\t\t\"urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling\"\"\n\t],\n\t\"key\": {\n\t\t\"globalAssetId\": \"{% prompt 'Global Asset ID', 'Please provide \\'Global-Asset-ID\\' or use default', _.GLOBAL_ASSET_ID, '', false, true %}\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t},\n\t\"collectAspects\": true\n}" + "text": "{\n\t\"aspects\": [\n\t\t\"urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass\",\n\t\t\"urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling\"\n\t],\n\t\"key\": {\n\t\t\"globalAssetId\": \"{% prompt 'Global Asset ID', 'Please provide \\'Global-Asset-ID\\' or use default', _.GLOBAL_ASSET_ID, '', false, true %}\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t},\n\t\"collectAspects\": true\n}" }, "parameters": [], "headers": [ @@ -869,7 +849,6 @@ }, "metaSortKey": -1680682418469, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -879,8 +858,8 @@ "_type": "request" }, { - "_id": "req_d11875dae2e142cd99de8db2594b5749", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_204f07b952914f9ebf1e5fc161fb32c1", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1710076741632, "created": 1680682418442, "url": "{{IRS_HOST}}/irs/jobs", @@ -907,7 +886,6 @@ }, "metaSortKey": -1680682418442, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -917,8 +895,8 @@ "_type": "request" }, { - "_id": "req_3664de01c8554ff89c651dff9e0821ab", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_9086d9055fd843d3a2be98f06a42a9ee", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1710076751758, "created": 1680682418432, "url": "{{IRS_HOST}}/irs/jobs", @@ -945,7 +923,6 @@ }, "metaSortKey": -1680682418432, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -955,9 +932,9 @@ "_type": "request" }, { - "_id": "req_60839c35d2124c9fbb593969fcc552df", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", - "modified": 1710076760570, + "_id": "req_bf93a6e78af645df8484ac723f41ecae", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", + "modified": 1712222124387, "created": 1695192937155, "url": "{{IRS_HOST}}/irs/jobs", "name": "1.3.5 [Register Job with aspect JustInSequencePart]", @@ -965,7 +942,7 @@ "method": "POST", "body": { "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\n\t\t\"urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart\"\n\t],\n\t\"key\": {\n\t\t\"globalAssetId\": \"{% prompt 'Global Asset ID', 'Please provide \\'Global-Asset-ID\\' or use default', _.GLOBAL_ASSET_ID, '', false, true %}\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t},\n\t\"collectAspects\": true\n}" + "text": "{\n\t\"aspects\": [\n\t\t\"urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart\"\n\t],\n\t\"key\": {\n\t\t\"globalAssetId\": \"{% prompt 'Global Asset ID', 'Please provide \\'Global-Asset-ID\\' or use default', _.GLOBAL_ASSET_ID, '', false, true %}\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t},\n\t\"collectAspects\": true\n}" }, "parameters": [], "headers": [ @@ -983,7 +960,6 @@ }, "metaSortKey": -1680682418428, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -993,9 +969,9 @@ "_type": "request" }, { - "_id": "req_5215512817494d63918383988c06144c", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", - "modified": 1710076769119, + "_id": "req_b44deeb9e5dc499da92d37150a915739", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", + "modified": 1712222106070, "created": 1695192971825, "url": "{{IRS_HOST}}/irs/jobs", "name": "1.3.6 [Register Job with aspect TractionBatteryCode]", @@ -1003,7 +979,7 @@ "method": "POST", "body": { "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\n\t\t\"urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode\"\n\t],\n\t\"key\": {\n\t\t\"globalAssetId\": \"{% prompt 'Global Asset ID', 'Please provide \\'Global-Asset-ID\\' or use default', _.GLOBAL_ASSET_ID, '', false, true %}\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t},\n\t\"collectAspects\": true\n}" + "text": "{\n\t\"aspects\": [\n\t\t\"urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode\"\n\t],\n\t\"key\": {\n\t\t\"globalAssetId\": \"{% prompt 'Global Asset ID', 'Please provide \\'Global-Asset-ID\\' or use default', _.GLOBAL_ASSET_ID, '', false, true %}\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t},\n\t\"collectAspects\": true\n}" }, "parameters": [], "headers": [ @@ -1021,7 +997,6 @@ }, "metaSortKey": -1680682418426, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1031,8 +1006,8 @@ "_type": "request" }, { - "_id": "req_050aba71af544728bf13966232a68c94", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_e42c551ee48e4181886d6934a5e26de1", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1710076214310, "created": 1680682418424, "url": "{{IRS_HOST}}/irs/jobs", @@ -1059,7 +1034,6 @@ }, "metaSortKey": -1680682418424, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1069,8 +1043,8 @@ "_type": "request" }, { - "_id": "req_245ceb95afa8407ba017e6143e942557", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_57e97fb6ec854c54a4f1acef82aa53e3", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1702991130711, "created": 1680682418414, "url": "{{IRS_HOST}}/irs/jobs", @@ -1097,7 +1071,6 @@ }, "metaSortKey": -1680682418414, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1107,8 +1080,8 @@ "_type": "request" }, { - "_id": "req_5c0c50a042914805a4f00cc38e6ec327", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_e0c5b388d9384bd68844477b78d2073c", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1710076937249, "created": 1680682418401, "url": "{{IRS_HOST}}/irs/jobs", @@ -1117,7 +1090,7 @@ "method": "POST", "body": { "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\n\t\t\"urn:bamm:io.catenax.serial_part:1.0.1#SerialPart\",\n\t\t\"urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt\",\n\t\t\"urn:samm:io.catenax.batch:2.0.0#Batch\",\n\t\t\"urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription\",\n\t\t\"urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer\",\n\t\t\"urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling\",\n\t\t\"urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension\",\n\t\t\"urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest\",\n\t\t\"urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode\",\n\t\t\"urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned\"\n\t],\n\t\"key\": {\n\t\t\"globalAssetId\": \"{% prompt 'Global Asset ID', 'Please provide \\'Global-Asset-ID\\' or use default', _.GLOBAL_ASSET_ID, '', false, true %}\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t},\n\t\"collectAspects\": true\n}" + "text": "{\n\t\"aspects\": [\n\t\t\"urn:samm:io.catenax.serial_part:3.0.0#SerialPart\",\n\t\t\"urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt\",\n\t\t\"urn:samm:io.catenax.batch:3.0.0#Batch\",\n\t\t\"urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription\",\n\t\t\"urn:bamm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer\",\n\t\t\"urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling\",\n\t\t\"urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension\",\n\t\t\"urn:bamm:io.catenax.return_request:1.0.1#ReturnRequest\",\n\t\t\"urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode\",\n\t\t\"urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned\"\n\t],\n\t\"key\": {\n\t\t\"globalAssetId\": \"{% prompt 'Global Asset ID', 'Please provide \\'Global-Asset-ID\\' or use default', _.GLOBAL_ASSET_ID, '', false, true %}\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t},\n\t\"collectAspects\": true\n}" }, "parameters": [], "headers": [ @@ -1135,7 +1108,6 @@ }, "metaSortKey": -1680682418401, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1145,8 +1117,8 @@ "_type": "request" }, { - "_id": "req_fd882f9ee36c4efaaaaad5ee15110e95", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_1454ecaa280e41c19cf9a783f266cf28", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1710076677384, "created": 1680682418392, "url": "{{IRS_HOST}}/irs/jobs", @@ -1155,7 +1127,7 @@ "method": "POST", "body": { "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\n\t\t\"urn:bamm:io.catenax.serial_part:1.0.1#SerialPart\",\n\t\t\"urn:samm:io.catenax.batch:2.0.0#Batch\"\n\t],\n\t\"key\": {\n\t\t\"globalAssetId\": \"{% prompt 'Global Asset ID', 'Please provide \\'Global-Asset-ID\\' or use default', _.GLOBAL_ASSET_ID, '', false, true %}\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t},\n\t\"lookupBPNs\": false\n}" + "text": "{\n\t\"aspects\": [\n\t\t\"urn:samm:io.catenax.serial_part:3.0.0#SerialPart\",\n\t\t\"urn:samm:io.catenax.batch:3.0.0#Batch\"\n\t],\n\t\"key\": {\n\t\t\"globalAssetId\": \"{% prompt 'Global Asset ID', 'Please provide \\'Global-Asset-ID\\' or use default', _.GLOBAL_ASSET_ID, '', false, true %}\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t},\n\t\"lookupBPNs\": false\n}" }, "parameters": [], "headers": [ @@ -1173,7 +1145,6 @@ }, "metaSortKey": -1680682418392, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1183,8 +1154,8 @@ "_type": "request" }, { - "_id": "req_7c176ef2953f4ef3a9bafdf1fdc4f59c", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_b38ed15c25444cc9b3b4945ef37bf759", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1710076237949, "created": 1683184048412, "url": "{{IRS_HOST}}/irs/jobs", @@ -1193,7 +1164,7 @@ "method": "POST", "body": { "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\n\t\t\"urn:bamm:io.catenax.serial_part:1.0.1#SerialPart\"\n\t],\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:da53d429-5770-410e-a13e-424e77952d8a\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t},\n\t\"collectAspects\": true,\n\t\"lookupBPNs\": false\n}" + "text": "{\n\t\"aspects\": [\n\t\t\"urn:samm:io.catenax.serial_part:3.0.0#SerialPart\"\n\t],\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:da53d429-5770-410e-a13e-424e77952d8a\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t},\n\t\"collectAspects\": true,\n\t\"lookupBPNs\": false\n}" }, "parameters": [], "headers": [ @@ -1211,7 +1182,6 @@ }, "metaSortKey": -1680682418386.5, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1221,8 +1191,8 @@ "_type": "request" }, { - "_id": "req_e72bfa320e9d44c7b5df861133034f65", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_64aa3921e4d9417a8bda809395fedfd0", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1710076397373, "created": 1693493383337, "url": "{{IRS_HOST}}/irs/jobs", @@ -1231,7 +1201,7 @@ "method": "POST", "body": { "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\n\t\t\"urn:bamm:io.catenax.serial_part:1.0.1#SerialPart\",\n\t\t\"urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt\"\n\t],\n\t\"bomLifecycle\": \"asBuilt\",\n\t\"collectAspects\": true,\n\t\"direction\": \"downward\",\n\t\"depth\": 10,\n \"integrityCheck\": true,\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:a1fa0f85-697d-4c9d-982f-2501af8e8636\",\n\t\t\"bpn\": \"BPNL00000003AZQP\"\n\t}\n}" + "text": "{\n\t\"aspects\": [\n\t\t\"urn:samm:io.catenax.serial_part:3.0.0#SerialPart\",\n\t\t\"urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt\"\n\t],\n\t\"bomLifecycle\": \"asBuilt\",\n\t\"collectAspects\": true,\n\t\"direction\": \"downward\",\n\t\"depth\": 10,\n \"integrityCheck\": true,\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:a1fa0f85-697d-4c9d-982f-2501af8e8636\",\n\t\t\"bpn\": \"BPNL00000003AZQP\"\n\t}\n}" }, "parameters": [], "headers": [ @@ -1249,7 +1219,6 @@ }, "metaSortKey": -1680682418382.375, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1259,8 +1228,8 @@ "_type": "request" }, { - "_id": "req_d0b0ebd7ab684c038163cbda0d8e38b2", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_0d14d7d30aeb47ce96a378a108c29a24", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1710076245754, "created": 1693493584873, "url": "{{IRS_HOST}}/irs/jobs", @@ -1269,7 +1238,7 @@ "method": "POST", "body": { "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\n\t\t\"urn:bamm:io.catenax.serial_part:1.0.1#SerialPart\"\n\t],\n\t\"bomLifecycle\": \"asBuilt\",\n\t\"collectAspects\": true,\n\t\"direction\": \"downward\",\n\t\"depth\": 10,\n \"integrityCheck\": true,\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:05abf6ff-8c78-4b72-948b-40e08e9b83f3\",\n\t\t\"bpn\": \"BPNL00000003AZQP\"\n\t}\n}" + "text": "{\n\t\"aspects\": [\n\t\t\"urn:samm:io.catenax.serial_part:3.0.0#SerialPart\"\n\t],\n\t\"bomLifecycle\": \"asBuilt\",\n\t\"collectAspects\": true,\n\t\"direction\": \"downward\",\n\t\"depth\": 10,\n \"integrityCheck\": true,\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:05abf6ff-8c78-4b72-948b-40e08e9b83f3\",\n\t\t\"bpn\": \"BPNL00000003AZQP\"\n\t}\n}" }, "parameters": [], "headers": [ @@ -1287,7 +1256,6 @@ }, "metaSortKey": -1680682418381.6875, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1297,8 +1265,8 @@ "_type": "request" }, { - "_id": "req_daed8469e6804426b06e685c13c5a2ee", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_a0fff747c70a4e7cb804ab04a27ba558", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1710076391502, "created": 1693493594373, "url": "{{IRS_HOST}}/irs/jobs", @@ -1307,7 +1275,7 @@ "method": "POST", "body": { "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\n\t\t\"urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt\"\n\t],\n\t\"bomLifecycle\": \"asBuilt\",\n\t\"collectAspects\": true,\n\t\"direction\": \"downward\",\n\t\"depth\": 10,\n \"integrityCheck\": true,\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:17e11d67-0315-4504-82cd-8e70a8c33a6a\",\n\t\t\"bpn\": \"BPNL00000003AZQP\"\n\t}\n}" + "text": "{\n\t\"aspects\": [\n\t\t\"urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt\"\n\t],\n\t\"bomLifecycle\": \"asBuilt\",\n\t\"collectAspects\": true,\n\t\"direction\": \"downward\",\n\t\"depth\": 10,\n \"integrityCheck\": true,\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:17e11d67-0315-4504-82cd-8e70a8c33a6a\",\n\t\t\"bpn\": \"BPNL00000003AZQP\"\n\t}\n}" }, "parameters": [], "headers": [ @@ -1325,7 +1293,6 @@ }, "metaSortKey": -1680682418381.3438, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1335,8 +1302,8 @@ "_type": "request" }, { - "_id": "req_3ee66542ae4d4bd086097cc127901a0d", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_5058f9f4db8b4fb296ac2151fe2970f6", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1710076385497, "created": 1693493604521, "url": "{{IRS_HOST}}/irs/jobs", @@ -1345,7 +1312,7 @@ "method": "POST", "body": { "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\n\t\t\"urn:bamm:io.catenax.serial_part:1.0.1#SerialPart\",\n\t\t\"urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt\"\n\t],\n\t\"bomLifecycle\": \"asBuilt\",\n\t\"collectAspects\": true,\n\t\"direction\": \"downward\",\n\t\"depth\": 10,\n \"integrityCheck\": true,\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:5672e8ff-8a73-425e-b2a5-5561b5b21d7a\",\n\t\t\"bpn\": \"BPNL00000003AZQP\"\n\t}\n}" + "text": "{\n\t\"aspects\": [\n\t\t\"urn:samm:io.catenax.serial_part:3.0.0#SerialPart\",\n\t\t\"urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt\"\n\t],\n\t\"bomLifecycle\": \"asBuilt\",\n\t\"collectAspects\": true,\n\t\"direction\": \"downward\",\n\t\"depth\": 10,\n \"integrityCheck\": true,\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:5672e8ff-8a73-425e-b2a5-5561b5b21d7a\",\n\t\t\"bpn\": \"BPNL00000003AZQP\"\n\t}\n}" }, "parameters": [], "headers": [ @@ -1363,7 +1330,6 @@ }, "metaSortKey": -1680682418381.1719, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1373,8 +1339,8 @@ "_type": "request" }, { - "_id": "req_db0100a82fdc4bd7ac88f5fcbfc951f7", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_fcde9edb3d4e4a84a92dc35de39b7db6", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1702991173689, "created": 1680682418381, "url": "{{IRS_HOST}}/irs/jobs", @@ -1404,7 +1370,6 @@ }, "metaSortKey": -1680682418381, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1414,8 +1379,8 @@ "_type": "request" }, { - "_id": "req_bf1ded5777714303b33ecc6d802d65ac", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_d10135309f1440f386e48c4b7a927cdd", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1702991177973, "created": 1680682418372, "url": "{{IRS_HOST}}/irs/jobs", @@ -1445,7 +1410,6 @@ }, "metaSortKey": -1680682418372, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1455,8 +1419,8 @@ "_type": "request" }, { - "_id": "req_6dbc72ee2c494a1784766b54862ed682", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_0467f5042d984b59a82697c255e4ce44", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1702991182139, "created": 1680682418358, "url": "{{IRS_HOST}}/irs/jobs", @@ -1486,7 +1450,6 @@ }, "metaSortKey": -1680682418358, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1496,8 +1459,8 @@ "_type": "request" }, { - "_id": "req_ac1c2b21900440d4901111176675e2ff", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_04d347707fd44505a301f848fb4600d7", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1702991186114, "created": 1680682418348, "url": "{{IRS_HOST}}/irs/jobs", @@ -1521,7 +1484,6 @@ }, "metaSortKey": -1680682418348, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1531,8 +1493,8 @@ "_type": "request" }, { - "_id": "req_53fd3aefa06945f8aea85d3b3c322699", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_9b4c3432d85c4c1a8e9294855f985079", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1702991190326, "created": 1680682418339, "url": "{{IRS_HOST}}/irs/jobs", @@ -1562,7 +1524,6 @@ }, "metaSortKey": -1680682418339, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1572,8 +1533,8 @@ "_type": "request" }, { - "_id": "req_0f0101575ead4084b46710bfb0091f3f", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_e1ef23e1ac694b9391c9122b6467e6d7", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1702991196283, "created": 1680682418325, "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", @@ -1603,7 +1564,6 @@ }, "metaSortKey": -1680682418325, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1613,8 +1573,8 @@ "_type": "request" }, { - "_id": "req_c50ba332341e4018b4313e7e72695954", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_49e81c6751334d65a09800b6c10a9f0b", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1702991200399, "created": 1680682418316, "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", @@ -1638,7 +1598,6 @@ }, "metaSortKey": -1680682418316, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1648,8 +1607,8 @@ "_type": "request" }, { - "_id": "req_bfcb98fc286a4be79030c9513ed9735f", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_95a1fbb7f2794f45b474453b821747e2", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1702991205447, "created": 1680682418307, "url": "{{IRS_HOST}}/irs/jobs/test", @@ -1673,7 +1632,6 @@ }, "metaSortKey": -1680682418307, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1683,8 +1641,8 @@ "_type": "request" }, { - "_id": "req_35c58b65dd9d4582ab9472ad1c9d3e3b", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_820a52e3034b47ce826340abda18a209", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1702991214202, "created": 1680682418297, "url": "{{IRS_HOST}}/irs/jobs/00000000-0000-0000-0000-000000000000", @@ -1708,7 +1666,6 @@ }, "metaSortKey": -1680682418297, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1718,8 +1675,8 @@ "_type": "request" }, { - "_id": "req_896fa0136d6e49d69a938f4de5811bad", - "parentId": "fld_80d0dfda7d9849f8923030bcb64169a7", + "_id": "req_870747b6397a47d8a6d1874003e0c440", + "parentId": "fld_a3ad61910c48475e8359adbb967b744e", "modified": 1702991218362, "created": 1680682418280, "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", @@ -1743,7 +1700,6 @@ }, "metaSortKey": -1680682418280, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1753,8 +1709,8 @@ "_type": "request" }, { - "_id": "req_69f863ad2c674907ad29581828ba5c43", - "parentId": "fld_7a3a1e3a4fe8428098021e110a52ba0d", + "_id": "req_2389daf68dbb4aa9a21eecf655e1aa03", + "parentId": "fld_744d44cfb4ba47a4ae85fa2c6c06e391", "modified": 1705942015684, "created": 1682672699249, "url": "{{ _.BPN_DISCOVERY }}/api/administration/connectors/bpnDiscovery/search", @@ -1782,7 +1738,6 @@ }, "metaSortKey": -1683630902023, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1792,8 +1747,8 @@ "_type": "request" }, { - "_id": "fld_7a3a1e3a4fe8428098021e110a52ba0d", - "parentId": "fld_7b1b2f5f85934d3d8c82d7c7ce458380", + "_id": "fld_744d44cfb4ba47a4ae85fa2c6c06e391", + "parentId": "fld_d5990860fbf2447ea5458e20134a1479", "modified": 1683630931664, "created": 1683630887514, "name": "Discovery", @@ -1804,8 +1759,8 @@ "_type": "request_group" }, { - "_id": "req_7ba23e27b73845c9a9b566c72f4f0c29", - "parentId": "fld_7a3a1e3a4fe8428098021e110a52ba0d", + "_id": "req_4427567cd7034c76983b1d88aa714a49", + "parentId": "fld_744d44cfb4ba47a4ae85fa2c6c06e391", "modified": 1705942027574, "created": 1683031718699, "url": "{{ _.DISCOVERY_FINDER }}/api/administration/connectors/discovery/search", @@ -1833,7 +1788,6 @@ }, "metaSortKey": -1683630901923, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1843,8 +1797,8 @@ "_type": "request" }, { - "_id": "req_4325898bf3df40648ad9cf8b304a58ee", - "parentId": "fld_7a3a1e3a4fe8428098021e110a52ba0d", + "_id": "req_de39da8661a34613b763fbe47168bddd", + "parentId": "fld_744d44cfb4ba47a4ae85fa2c6c06e391", "modified": 1705942036978, "created": 1683560906453, "url": "{{ _.EDC_DISCOVERY }}/api/administration/connectors/discovery", @@ -1872,7 +1826,6 @@ }, "metaSortKey": -1683630901873, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1882,8 +1835,8 @@ "_type": "request" }, { - "_id": "req_349d613f763d4102bee054dcfd5da1bc", - "parentId": "fld_1ef343e864c14d44b2f8aa660aa7e5ac", + "_id": "req_41cb9f12f54e4fd9aacf948a323e2c05", + "parentId": "fld_405308b190c64bb29cb03c2f3a180b68", "modified": 1710076352238, "created": 1680682418265, "url": "{{IRS_HOST}}/irs/jobs", @@ -1892,7 +1845,7 @@ "method": "POST", "body": { "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\n\t\t\"urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt\",\n\t\t\"urn:bamm:io.catenax.serial_part:1.0.1#SerialPart\",\n\t\t\"urn:samm:io.catenax.batch:2.0.0#Batch\"\n\t],\n\t\"bomLifecycle\": \"asBuilt\",\n\t\"collectAspects\": true,\n\t\"lookupBPNs\": true,\n\t\"direction\": \"downward\",\n\t\"depth\": 10,\n\t\"key\": {\n\t\t\"globalAssetId\": \"{% prompt 'Global Asset ID', 'Please provide \\'Global-Asset-ID\\' or use default', _.GLOBAL_ASSET_ID, '', false, true %}\",\n\t\t\"bpn\": \"{% prompt 'Business Partner Number', '', _.BPN, '', false, true %}\"\n\t}\n}" + "text": "{\n\t\"aspects\": [\n\t\t\"urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt\",\n\t\t\"urn:samm:io.catenax.serial_part:3.0.0#SerialPart\",\n\t\t\"urn:samm:io.catenax.batch:3.0.0#Batch\"\n\t],\n\t\"bomLifecycle\": \"asBuilt\",\n\t\"collectAspects\": true,\n\t\"lookupBPNs\": true,\n\t\"direction\": \"downward\",\n\t\"depth\": 10,\n\t\"key\": {\n\t\t\"globalAssetId\": \"{% prompt 'Global Asset ID', 'Please provide \\'Global-Asset-ID\\' or use default', _.GLOBAL_ASSET_ID, '', false, true %}\",\n\t\t\"bpn\": \"{% prompt 'Business Partner Number', '', _.BPN, '', false, true %}\"\n\t}\n}" }, "parameters": [], "headers": [ @@ -1910,7 +1863,6 @@ }, "metaSortKey": -1680682418265, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1920,8 +1872,8 @@ "_type": "request" }, { - "_id": "fld_1ef343e864c14d44b2f8aa660aa7e5ac", - "parentId": "fld_7b1b2f5f85934d3d8c82d7c7ce458380", + "_id": "fld_405308b190c64bb29cb03c2f3a180b68", + "parentId": "fld_d5990860fbf2447ea5458e20134a1479", "modified": 1680682418273, "created": 1680682418273, "name": "IRS Basic API Calls", @@ -1932,8 +1884,8 @@ "_type": "request_group" }, { - "_id": "req_9b5111fd12ea47639c6621d23ddc528c", - "parentId": "fld_1ef343e864c14d44b2f8aa660aa7e5ac", + "_id": "req_a71ca537c9544ab1a5a791cafd39f826", + "parentId": "fld_405308b190c64bb29cb03c2f3a180b68", "modified": 1705942154792, "created": 1680682418238, "url": "{{IRS_HOST}}/irs/jobs/{% response 'body', 'req_b02ac0bfc4704c83a5c5f8b24175d61a', 'b64::JC5pZA==::46b', 'never', 60 %} ", @@ -1963,7 +1915,6 @@ }, "metaSortKey": -1680682418261, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -1973,8 +1924,8 @@ "_type": "request" }, { - "_id": "req_0a7c66ccddb04f9caca830e197aecf64", - "parentId": "fld_1ef343e864c14d44b2f8aa660aa7e5ac", + "_id": "req_5de53e25a25f44d0933be4b1564ac80a", + "parentId": "fld_405308b190c64bb29cb03c2f3a180b68", "modified": 1702991288793, "created": 1680682418257, "url": "{{IRS_HOST}}/irs/jobs", @@ -1998,7 +1949,6 @@ }, "metaSortKey": -1680682418257, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2008,8 +1958,8 @@ "_type": "request" }, { - "_id": "req_3d05fdc2d1e24d60960031834adf6753", - "parentId": "fld_1ef343e864c14d44b2f8aa660aa7e5ac", + "_id": "req_6ef501ec2829461a8c507d87625a5cda", + "parentId": "fld_405308b190c64bb29cb03c2f3a180b68", "modified": 1702991284435, "created": 1680682418247, "url": "{{IRS_HOST}}/irs/jobs", @@ -2053,7 +2003,6 @@ }, "metaSortKey": -1680682418247, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2063,8 +2012,8 @@ "_type": "request" }, { - "_id": "req_22194c017aac4261bb344662839de6f5", - "parentId": "fld_1ef343e864c14d44b2f8aa660aa7e5ac", + "_id": "req_8b52d17f3bfe456da711757d0d79dcf3", + "parentId": "fld_405308b190c64bb29cb03c2f3a180b68", "modified": 1703236659047, "created": 1690384427379, "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", @@ -2094,7 +2043,6 @@ }, "metaSortKey": -1680682418238, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2104,8 +2052,8 @@ "_type": "request" }, { - "_id": "req_95ccc8f10f584a4aaf4d2a0b9c44441b", - "parentId": "fld_1ef343e864c14d44b2f8aa660aa7e5ac", + "_id": "req_2e8b481698814a9fa1143db6a9fd6031", + "parentId": "fld_405308b190c64bb29cb03c2f3a180b68", "modified": 1702991276045, "created": 1680682418229, "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", @@ -2129,7 +2077,6 @@ }, "metaSortKey": -1680682418229, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2139,8 +2086,8 @@ "_type": "request" }, { - "_id": "req_d677e6e5a736406ba05aea1a9a98595a", - "parentId": "fld_1ef343e864c14d44b2f8aa660aa7e5ac", + "_id": "req_2ec823bafb9d4af09671ce809a37790c", + "parentId": "fld_405308b190c64bb29cb03c2f3a180b68", "modified": 1702991272198, "created": 1682498338739, "url": "{{IRS_HOST}}/irs/aspectmodels", @@ -2164,7 +2111,6 @@ }, "metaSortKey": -1680682418179, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2174,8 +2120,8 @@ "_type": "request" }, { - "_id": "req_b1a92060c1bd47078fbee001952da6d8", - "parentId": "fld_187756e90d514741a65cb9617a3ea41a", + "_id": "req_6eee723fa30e4cb594dab53f2186b99a", + "parentId": "fld_902c811a969e46af8ee1fc32036c218b", "modified": 1705942066941, "created": 1680682418213, "url": "{{ _.SEMANTIC_HUB_URL }}/hub/api/v1/models", @@ -2207,7 +2153,6 @@ }, "metaSortKey": -1680682418213, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2217,8 +2162,8 @@ "_type": "request" }, { - "_id": "fld_187756e90d514741a65cb9617a3ea41a", - "parentId": "fld_7b1b2f5f85934d3d8c82d7c7ce458380", + "_id": "fld_902c811a969e46af8ee1fc32036c218b", + "parentId": "fld_d5990860fbf2447ea5458e20134a1479", "modified": 1680682418222, "created": 1680682418222, "name": "Semantics Hub", @@ -2229,8 +2174,8 @@ "_type": "request_group" }, { - "_id": "req_bf8fdccfac4141ea871c41d4f7403f5c", - "parentId": "fld_187756e90d514741a65cb9617a3ea41a", + "_id": "req_a09955677d83406faf69633d93b046a7", + "parentId": "fld_902c811a969e46af8ee1fc32036c218b", "modified": 1705942077015, "created": 1680682418204, "url": "{{ _.SEMANTIC_HUB_URL }}/hub/api/v1/models/urn%3Abamm%3Aio.catenax.serial_part_typization%3A1.0.0%23SerialPartTypization", @@ -2249,7 +2194,6 @@ }, "metaSortKey": -1680682418204, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2259,8 +2203,8 @@ "_type": "request" }, { - "_id": "req_fb25cdceae984425b3aa867c3d5ea866", - "parentId": "fld_187756e90d514741a65cb9617a3ea41a", + "_id": "req_955379ec931a4d788dbb4853b7a5e59d", + "parentId": "fld_902c811a969e46af8ee1fc32036c218b", "modified": 1705942085733, "created": 1680682418192, "url": "{{ _.SEMANTIC_HUB_URL }}/hub/api/v1/models/urn%3Abamm%3Aio.catenax.serial_part_typization%3A1.0.0%23SerialPartTypization/json-schema", @@ -2279,7 +2223,6 @@ }, "metaSortKey": -1680682418192, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2289,8 +2232,8 @@ "_type": "request" }, { - "_id": "req_fad2ca6d902f401da947308e36bb22ff", - "parentId": "fld_26b4903278b54dc5a940fe28e4dd200a", + "_id": "req_fa5d9519b09c416e940dbfaa6d37f3c2", + "parentId": "fld_857f5311c3d44dca98d5df7170f17b66", "modified": 1705942100313, "created": 1680682418174, "url": "{{ _.BPDM_URL }}/v1/api/catena/business-partner/{% prompt 'BPN', '', '', '', false, true %}", @@ -2315,7 +2258,6 @@ }, "metaSortKey": -1680682418174, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2325,8 +2267,8 @@ "_type": "request" }, { - "_id": "fld_26b4903278b54dc5a940fe28e4dd200a", - "parentId": "fld_7b1b2f5f85934d3d8c82d7c7ce458380", + "_id": "fld_857f5311c3d44dca98d5df7170f17b66", + "parentId": "fld_d5990860fbf2447ea5458e20134a1479", "modified": 1680682418184, "created": 1680682418184, "name": "Business partner data management", @@ -2337,8 +2279,8 @@ "_type": "request_group" }, { - "_id": "req_1b203a87420e42d5ba75c662ac8f49ee", - "parentId": "fld_048a4c04d1c4419683cb645279444127", + "_id": "req_17b898d1c1d94f7aa7f9552cb1bbb6a1", + "parentId": "fld_ddb57b7df61a4c7fbb8dd6e09a55aefb", "modified": 1702991347797, "created": 1680682418157, "url": "{{IRS_HOST}}/esr/esr-statistics/{% prompt 'globalAssetId', 'Provide global asset ID or use default', _.GLOBAL_ASSET_ID, '', false, true %}/{% prompt 'BOM Lifecycle', '', '', '', false, true %}/{% prompt 'Certificate', '', '', '', false, true %}/submodel", @@ -2362,7 +2304,6 @@ }, "metaSortKey": -1680682418158, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2372,8 +2313,8 @@ "_type": "request" }, { - "_id": "fld_048a4c04d1c4419683cb645279444127", - "parentId": "fld_7b1b2f5f85934d3d8c82d7c7ce458380", + "_id": "fld_ddb57b7df61a4c7fbb8dd6e09a55aefb", + "parentId": "fld_d5990860fbf2447ea5458e20134a1479", "modified": 1680682418167, "created": 1680682418167, "name": "ESR Spike", @@ -2384,8 +2325,8 @@ "_type": "request_group" }, { - "_id": "req_32cc185810924d6cba6bb783422e919e", - "parentId": "fld_c645034b945b4aa5a34f15c60be2b27c", + "_id": "req_1703e4aef5d14fa8b7a1af89386bdbaa", + "parentId": "fld_10ffabbc4736405badac478153d86d5a", "modified": 1702991361578, "created": 1680682418143, "url": "{{IRS_HOST}}/ess/bpn/investigations", @@ -2412,7 +2353,6 @@ }, "metaSortKey": -1680682418143, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2422,8 +2362,8 @@ "_type": "request" }, { - "_id": "fld_c645034b945b4aa5a34f15c60be2b27c", - "parentId": "fld_7b1b2f5f85934d3d8c82d7c7ce458380", + "_id": "fld_10ffabbc4736405badac478153d86d5a", + "parentId": "fld_d5990860fbf2447ea5458e20134a1479", "modified": 1680682418151, "created": 1680682418151, "name": "ESS Spike", @@ -2434,8 +2374,8 @@ "_type": "request_group" }, { - "_id": "req_818115f180424cc287bc730453851346", - "parentId": "fld_c645034b945b4aa5a34f15c60be2b27c", + "_id": "req_b612a296760040e091ffe48a7bba9bb4", + "parentId": "fld_10ffabbc4736405badac478153d86d5a", "modified": 1705942138125, "created": 1680682418134, "url": "{{IRS_HOST}}/ess/bpn/investigations/{% response 'body', 'req_ec674952c1114bce8fb71ea1ed6d9ef7', 'b64::JC5pZA==::46b', 'never', 60 %}", @@ -2459,7 +2399,6 @@ }, "metaSortKey": -1680682418138.5, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2469,8 +2408,8 @@ "_type": "request" }, { - "_id": "req_2a5fb997e87c439c8d2d75b1278bae3f", - "parentId": "fld_c645034b945b4aa5a34f15c60be2b27c", + "_id": "req_9828dfa817924497b0facd0a4693f0a7", + "parentId": "fld_10ffabbc4736405badac478153d86d5a", "modified": 1702991370481, "created": 1680682418134, "url": "{{IRS_HOST}}/ess/bpn/investigations/{% prompt 'Job ID', '', '', '', false, true %}", @@ -2494,7 +2433,6 @@ }, "metaSortKey": -1680682418134, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2504,8 +2442,8 @@ "_type": "request" }, { - "_id": "req_09e428687b484535af82e17dbf9a68bf", - "parentId": "fld_9b6334cef97a427195690af454455820", + "_id": "req_d566c63461864dfb9d77ac70b22733f1", + "parentId": "fld_73e0c8163ecc44e6aa9331273816ae27", "modified": 1710076303275, "created": 1680682418118, "url": "{{IRS_HOST}}/irs/orders", @@ -2514,7 +2452,7 @@ "method": "POST", "body": { "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\n\t\t\"urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt\"\n\t],\n\t\"collectAspects\": true,\n\t\"lookupBPNs\": true,\n\t\"direction\": \"downward\",\n\t\"batchSize\": 10,\n\t\"batchStrategy\": \"PRESERVE_BATCH_JOB_ORDER\",\n\t\"keys\": [\n\t\t{\n\t\t\t\"globalAssetId\": \"urn:uuid:ed333e9a-5afa-40b2-99da-bae2fd211122\",\n\t\t\t\"bpn\": \"BPNL00000003AAXX\"\n\t\t},\n\t\t{\n\t\t\t\"globalAssetId\": \"urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a32211\",\n\t\t\t\"bpn\": \"BPNL00000003AAXX\"\n\t\t}\n\t]\n}" + "text": "{\n\t\"aspects\": [\n\t\t\"urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt\"\n\t],\n\t\"collectAspects\": true,\n\t\"lookupBPNs\": true,\n\t\"direction\": \"downward\",\n\t\"batchSize\": 10,\n\t\"batchStrategy\": \"PRESERVE_BATCH_JOB_ORDER\",\n\t\"keys\": [\n\t\t{\n\t\t\t\"globalAssetId\": \"urn:uuid:ed333e9a-5afa-40b2-99da-bae2fd211122\",\n\t\t\t\"bpn\": \"BPNL00000003AAXX\"\n\t\t},\n\t\t{\n\t\t\t\"globalAssetId\": \"urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a32211\",\n\t\t\t\"bpn\": \"BPNL00000003AAXX\"\n\t\t}\n\t]\n}" }, "parameters": [], "headers": [ @@ -2532,7 +2470,6 @@ }, "metaSortKey": -1680682418118, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2542,8 +2479,8 @@ "_type": "request" }, { - "_id": "fld_9b6334cef97a427195690af454455820", - "parentId": "fld_7b1b2f5f85934d3d8c82d7c7ce458380", + "_id": "fld_73e0c8163ecc44e6aa9331273816ae27", + "parentId": "fld_d5990860fbf2447ea5458e20134a1479", "modified": 1680682418128, "created": 1680682418128, "name": "Batch Processing", @@ -2554,8 +2491,8 @@ "_type": "request_group" }, { - "_id": "req_cfe969099893477d95f7f654a588750a", - "parentId": "fld_9b6334cef97a427195690af454455820", + "_id": "req_1b2d7e8bd4fe4b328a41122a6dec75a6", + "parentId": "fld_73e0c8163ecc44e6aa9331273816ae27", "modified": 1702991390349, "created": 1696342619602, "url": "{{IRS_HOST}}/irs/ess/orders", @@ -2582,7 +2519,6 @@ }, "metaSortKey": -1680682418113.5, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2592,8 +2528,8 @@ "_type": "request" }, { - "_id": "req_9aca2c0b52564e64b266ecf2ef22d5e0", - "parentId": "fld_9b6334cef97a427195690af454455820", + "_id": "req_8d4a3c99f116451591f816ffa044979e", + "parentId": "fld_73e0c8163ecc44e6aa9331273816ae27", "modified": 1705006936944, "created": 1705006139836, "url": "{{IRS_HOST}}/irs/orders/{% prompt 'Order ID', '', '', '', false, true %}", @@ -2621,7 +2557,6 @@ }, "metaSortKey": -1680682418111.25, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2631,8 +2566,8 @@ "_type": "request" }, { - "_id": "req_55a45adbf0c9488ab2c912b92a49a103", - "parentId": "fld_9b6334cef97a427195690af454455820", + "_id": "req_ddc8290ec32f4571a2783ab161a495a2", + "parentId": "fld_73e0c8163ecc44e6aa9331273816ae27", "modified": 1702991398473, "created": 1680682418109, "url": "{{IRS_HOST}}/irs/orders/{% prompt 'Order ID', '', '', '', false, true %}", @@ -2656,7 +2591,6 @@ }, "metaSortKey": -1680682418109, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2666,8 +2600,8 @@ "_type": "request" }, { - "_id": "req_c2b63b7133fb460db0f6289b75733bc6", - "parentId": "fld_9b6334cef97a427195690af454455820", + "_id": "req_95e105ca1470437697dc4ae078a2316f", + "parentId": "fld_73e0c8163ecc44e6aa9331273816ae27", "modified": 1702991409664, "created": 1680682418099, "url": "{{IRS_HOST}}/irs/orders/{% prompt 'Order ID', '', '', '', false, true %}/batches/{% prompt 'Batch ID', '', '', '', false, true %}", @@ -2691,7 +2625,6 @@ }, "metaSortKey": -1680682418099, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2701,8 +2634,8 @@ "_type": "request" }, { - "_id": "req_b74cc6344b7c4388b96656993b172d46", - "parentId": "fld_46a973a72ee54858be7b730077f4a0c6", + "_id": "req_28ef5730f96e4c21892a83bb68020cbb", + "parentId": "fld_5e7596546a69493dae447ea588ac5ba8", "modified": 1690472186478, "created": 1678358655308, "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/catalog/request", @@ -2729,7 +2662,6 @@ }, "metaSortKey": -1686195722939.1875, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2739,8 +2671,8 @@ "_type": "request" }, { - "_id": "fld_46a973a72ee54858be7b730077f4a0c6", - "parentId": "fld_0b9d0531ef3e49efa333cd21a78f8c94", + "_id": "fld_5e7596546a69493dae447ea588ac5ba8", + "parentId": "fld_d51833440f684123a8dd6b0ec9441faa", "modified": 1690362660167, "created": 1690362660167, "name": "Catalog", @@ -2751,8 +2683,8 @@ "_type": "request_group" }, { - "_id": "fld_0b9d0531ef3e49efa333cd21a78f8c94", - "parentId": "fld_7b1b2f5f85934d3d8c82d7c7ce458380", + "_id": "fld_d51833440f684123a8dd6b0ec9441faa", + "parentId": "fld_d5990860fbf2447ea5458e20134a1479", "modified": 1690363778601, "created": 1675675609576, "name": "EDC-Requests", @@ -2763,8 +2695,8 @@ "_type": "request_group" }, { - "_id": "req_73691ed276bd4771a5f9504075648a79", - "parentId": "fld_46a973a72ee54858be7b730077f4a0c6", + "_id": "req_0ab0bc3449c2434094dcb6a4d616c8bf", + "parentId": "fld_5e7596546a69493dae447ea588ac5ba8", "modified": 1691500654267, "created": 1685521485278, "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/catalog/request", @@ -2791,7 +2723,6 @@ }, "metaSortKey": -1686195722889.1875, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2801,8 +2732,8 @@ "_type": "request" }, { - "_id": "req_f063f58ce17c4c04bcd9e8feea08027c", - "parentId": "fld_46a973a72ee54858be7b730077f4a0c6", + "_id": "req_cb6c22bc69f64adab97a35ddc4118cff", + "parentId": "fld_5e7596546a69493dae447ea588ac5ba8", "modified": 1705940987109, "created": 1691654388376, "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/catalog/request", @@ -2829,7 +2760,6 @@ }, "metaSortKey": -1686195722789.1875, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2839,8 +2769,8 @@ "_type": "request" }, { - "_id": "req_5eb26ad544f147b9a6f145a931e9f500", - "parentId": "fld_f1b0ee70bb2d45b7a32a643ab9a3d1d4", + "_id": "req_f5a54395820f445e8d9d09ceaa9ea623", + "parentId": "fld_8c763d94d1bb4008af0bc0d512e444ab", "modified": 1691578280640, "created": 1675675609557, "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations", @@ -2867,7 +2797,6 @@ }, "metaSortKey": -1684146511095, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2877,8 +2806,8 @@ "_type": "request" }, { - "_id": "fld_f1b0ee70bb2d45b7a32a643ab9a3d1d4", - "parentId": "fld_0b9d0531ef3e49efa333cd21a78f8c94", + "_id": "fld_8c763d94d1bb4008af0bc0d512e444ab", + "parentId": "fld_d51833440f684123a8dd6b0ec9441faa", "modified": 1684146626847, "created": 1684146519491, "name": "Negotiation", @@ -2889,8 +2818,8 @@ "_type": "request_group" }, { - "_id": "req_4fced7f1dd1c40b3b7ff236a89f1922e", - "parentId": "fld_f1b0ee70bb2d45b7a32a643ab9a3d1d4", + "_id": "req_21c5f20359d547fbad6c4868e054c232", + "parentId": "fld_8c763d94d1bb4008af0bc0d512e444ab", "modified": 1690362123962, "created": 1675675609549, "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations/{% prompt 'id', '', '', '', false, true %}", @@ -2914,7 +2843,6 @@ }, "metaSortKey": -1684146511045, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2924,8 +2852,8 @@ "_type": "request" }, { - "_id": "req_e62636f85f0d48d6bfb21a16602eacda", - "parentId": "fld_f1b0ee70bb2d45b7a32a643ab9a3d1d4", + "_id": "req_f328cb2312344d2484cacf927b3166fb", + "parentId": "fld_8c763d94d1bb4008af0bc0d512e444ab", "modified": 1690362117725, "created": 1685444139708, "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations/{% prompt 'id', '', '', '', false, true %}/cancel", @@ -2944,7 +2872,6 @@ }, "metaSortKey": -1684146511020, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2954,8 +2881,8 @@ "_type": "request" }, { - "_id": "req_d0b90529e95545af8d9f6ef234d64670", - "parentId": "fld_f1b0ee70bb2d45b7a32a643ab9a3d1d4", + "_id": "req_95f64450aa5c4313adc1ecb31a77f885", + "parentId": "fld_8c763d94d1bb4008af0bc0d512e444ab", "modified": 1690361721223, "created": 1681911985730, "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations/request", @@ -2982,7 +2909,6 @@ }, "metaSortKey": -1684146510995, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -2992,8 +2918,8 @@ "_type": "request" }, { - "_id": "req_7ef28b43bb8444728eb0bedaf8af2111", - "parentId": "fld_f1b0ee70bb2d45b7a32a643ab9a3d1d4", + "_id": "req_3f34cc3be1224fab9f1a57d46450ff01", + "parentId": "fld_8c763d94d1bb4008af0bc0d512e444ab", "modified": 1691578311420, "created": 1675675609541, "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/transferprocesses", @@ -3020,7 +2946,6 @@ }, "metaSortKey": -1684146510945, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -3030,8 +2955,8 @@ "_type": "request" }, { - "_id": "req_04d6350cd308435589ff2d8fb6bb01dc", - "parentId": "fld_f1b0ee70bb2d45b7a32a643ab9a3d1d4", + "_id": "req_b95afcbf1a804734be5c66416c6519b0", + "parentId": "fld_8c763d94d1bb4008af0bc0d512e444ab", "modified": 1691503370103, "created": 1679993996270, "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/transferprocesses/{% prompt 'id', '', '', '', false, true %}", @@ -3055,7 +2980,6 @@ }, "metaSortKey": -1684146510895, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -3065,8 +2989,8 @@ "_type": "request" }, { - "_id": "req_4ec26c1537ed4c66ac8d6da53a506c71", - "parentId": "fld_f1b0ee70bb2d45b7a32a643ab9a3d1d4", + "_id": "req_a8445e348e604e848bc2d970937b15af", + "parentId": "fld_8c763d94d1bb4008af0bc0d512e444ab", "modified": 1690361795179, "created": 1675675609525, "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/transferprocesses/request", @@ -3093,7 +3017,6 @@ }, "metaSortKey": -1684146510845, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -3103,8 +3026,8 @@ "_type": "request" }, { - "_id": "req_0d7af3abbb194ed191e482b9b857070e", - "parentId": "fld_f1b0ee70bb2d45b7a32a643ab9a3d1d4", + "_id": "req_43de63a43db448ddae87162ae7100840", + "parentId": "fld_8c763d94d1bb4008af0bc0d512e444ab", "modified": 1690361763512, "created": 1681910653593, "url": "{{CONSUMER_CONTROLPLANE}}/management/v2/contractagreements/request", @@ -3131,7 +3054,6 @@ }, "metaSortKey": -1684146510795, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -3141,8 +3063,8 @@ "_type": "request" }, { - "_id": "req_633a776c22914478a6899c6f2f757d8e", - "parentId": "fld_ca5fb2ce9c5a4640b827916773279500", + "_id": "req_553997b9e0454fba9b49f48db256f156", + "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", "modified": 1690362947546, "created": 1681907482278, "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets", @@ -3169,7 +3091,6 @@ }, "metaSortKey": -1679911033461.75, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -3179,8 +3100,8 @@ "_type": "request" }, { - "_id": "fld_ca5fb2ce9c5a4640b827916773279500", - "parentId": "fld_0b9d0531ef3e49efa333cd21a78f8c94", + "_id": "fld_b5c045d33ab548bb9b7ac90dae06c0de", + "parentId": "fld_d51833440f684123a8dd6b0ec9441faa", "modified": 1705940929752, "created": 1684146457388, "name": "Provider", @@ -3191,8 +3112,8 @@ "_type": "request_group" }, { - "_id": "req_52d9308387b04d60a06b43ee1c492478", - "parentId": "fld_ca5fb2ce9c5a4640b827916773279500", + "_id": "req_f67493fa1f8745b68dba040eece7c0ed", + "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", "modified": 1690362407763, "created": 1685444139630, "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets/{% prompt 'id', '', '', '', false, true %}", @@ -3211,7 +3132,6 @@ }, "metaSortKey": -1679911033452.375, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -3221,8 +3141,8 @@ "_type": "request" }, { - "_id": "req_1ae8b300301b406eb545df43a353fda9", - "parentId": "fld_ca5fb2ce9c5a4640b827916773279500", + "_id": "req_2ba09ea750c44e1e990ca8cf7e5f5c1c", + "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", "modified": 1690362438115, "created": 1685444139625, "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets/request", @@ -3249,7 +3169,6 @@ }, "metaSortKey": -1679911033447.6875, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -3259,8 +3178,8 @@ "_type": "request" }, { - "_id": "req_9eff358d42094196924ab55c23d7510d", - "parentId": "fld_ca5fb2ce9c5a4640b827916773279500", + "_id": "req_07817c96c266454caff85e6c8b938b8d", + "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", "modified": 1690362400081, "created": 1685444139636, "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets/{% prompt 'id', '', '', '', false, true %}", @@ -3279,7 +3198,6 @@ }, "metaSortKey": -1679911033433.625, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -3289,8 +3207,8 @@ "_type": "request" }, { - "_id": "req_5fd712c0594d4b46a349bb56dae21809", - "parentId": "fld_ca5fb2ce9c5a4640b827916773279500", + "_id": "req_920c48d7632841d6923f5d15a6d78225", + "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", "modified": 1690362581978, "created": 1685444139641, "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions", @@ -3317,7 +3235,6 @@ }, "metaSortKey": -1679911033403.9375, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -3327,8 +3244,8 @@ "_type": "request" }, { - "_id": "req_8b5ce92a1e96425e8353aba23643cd6b", - "parentId": "fld_ca5fb2ce9c5a4640b827916773279500", + "_id": "req_38bfd8f78ece4c8badbf58054f6c632a", + "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", "modified": 1690362549290, "created": 1685444139647, "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions/{% prompt 'id', '', '', '', false, true %}", @@ -3345,9 +3262,8 @@ "value": "{{ _.EDC_API_KEY }}", "addTo": "header" }, - "metaSortKey": -1679911033364.0938, + "metaSortKey": -1679911033364.0937, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -3357,8 +3273,8 @@ "_type": "request" }, { - "_id": "req_274c9ac5236046919dd4bb71af15dd62", - "parentId": "fld_ca5fb2ce9c5a4640b827916773279500", + "_id": "req_1ebfdc66d2034ea2afb736a7fdb38ad6", + "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", "modified": 1690362591799, "created": 1685444139653, "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions/request", @@ -3385,7 +3301,6 @@ }, "metaSortKey": -1679911033344.1719, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -3395,8 +3310,8 @@ "_type": "request" }, { - "_id": "req_e5e4eaf35c7545d7aaacf2388e2a42fc", - "parentId": "fld_ca5fb2ce9c5a4640b827916773279500", + "_id": "req_adc928754ae54cf48f37a5d407a4749b", + "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", "modified": 1690362559324, "created": 1685444139659, "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions/{% prompt 'id', '', '', '', false, true %}", @@ -3415,7 +3330,6 @@ }, "metaSortKey": -1679911033299.25, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -3425,8 +3339,8 @@ "_type": "request" }, { - "_id": "req_92959d74ff4f475b8e357e4958b1c457", - "parentId": "fld_ca5fb2ce9c5a4640b827916773279500", + "_id": "req_3bcdfdd1c2b141f8842cecfe6abef0b7", + "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", "modified": 1690363080444, "created": 1685444139665, "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions", @@ -3453,7 +3367,6 @@ }, "metaSortKey": -1679911033261.75, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -3463,8 +3376,8 @@ "_type": "request" }, { - "_id": "req_3de985b534fd4b23ad77e45e40126706", - "parentId": "fld_ca5fb2ce9c5a4640b827916773279500", + "_id": "req_cc8d29800ba64bf3a60df1c14d1282df", + "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", "modified": 1690362691392, "created": 1685444139672, "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions/{% prompt 'id', '', '', '', false, true %}", @@ -3483,7 +3396,6 @@ }, "metaSortKey": -1679911033199.25, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -3493,8 +3405,8 @@ "_type": "request" }, { - "_id": "req_730967ca2ad2470bab0d047f7491c460", - "parentId": "fld_ca5fb2ce9c5a4640b827916773279500", + "_id": "req_3a9069ccfff7484e82c232b09329d698", + "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", "modified": 1690363126919, "created": 1685444139678, "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions/request", @@ -3521,7 +3433,6 @@ }, "metaSortKey": -1679911033174.25, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -3531,8 +3442,8 @@ "_type": "request" }, { - "_id": "req_b200c2519b814e159bdde39fd86690a2", - "parentId": "fld_ca5fb2ce9c5a4640b827916773279500", + "_id": "req_76be9bdcf51b488d80d75389c47b1680", + "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", "modified": 1690363136216, "created": 1685444139684, "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions/{% prompt 'id', '', '', '', false, true %}", @@ -3559,7 +3470,6 @@ }, "metaSortKey": -1679911033149.25, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -3569,8 +3479,8 @@ "_type": "request" }, { - "_id": "env_a3894a0a395c481d84f1126ba07bb47c", - "parentId": "wrk_d83bab75184e43adadd63001907af70d", + "_id": "env_d2b7eb1621841465ea24b73343568b286aa8ac9a", + "parentId": "wrk_565df8abe30f4da29d8bffcde97927d7", "modified": 1680782486844, "created": 1680782486844, "name": "Base Environment", @@ -3582,9 +3492,9 @@ "_type": "environment" }, { - "_id": "jar_13d0657e04f54f6ab1e9903f108f0841", - "parentId": "wrk_d83bab75184e43adadd63001907af70d", - "modified": 1709815397125, + "_id": "jar_d2b7eb1621841465ea24b73343568b286aa8ac9a", + "parentId": "wrk_565df8abe30f4da29d8bffcde97927d7", + "modified": 1711542878876, "created": 1680782486851, "name": "Default Jar", "cookies": [ @@ -3600,8 +3510,8 @@ ], "hostOnly": true, "creation": "2023-04-06T13:30:18.499Z", - "lastAccessed": "2024-03-07T12:43:17.124Z", - "id": "4402460762686" + "lastAccessed": "2024-03-27T12:34:38.876Z", + "id": "5637144203997095" }, { "key": "KC_RESTART", @@ -3616,10 +3526,30 @@ "hostOnly": true, "creation": "2024-02-13T11:37:30.975Z", "lastAccessed": "2024-02-13T11:54:54.713Z", - "id": "7574385565222739" + "id": "0027837016196308184" } ], "_type": "cookie_jar" + }, + { + "_id": "spc_22dfe33611af4731965cc2b08febcfdb", + "parentId": "wrk_565df8abe30f4da29d8bffcde97927d7", + "modified": 1680782484284, + "created": 1680782484284, + "fileName": "IRS", + "contents": "", + "contentType": "yaml", + "_type": "api_spec" + }, + { + "_id": "spc_3a573993100a40b3bc2b0a5bd8e5cc48", + "parentId": "wrk_565df8abe30f4da29d8bffcde97927d7", + "modified": 1681726479575, + "created": 1681726479575, + "fileName": "IRS", + "contents": "", + "contentType": "yaml", + "_type": "api_spec" } ] } \ No newline at end of file From 82161cdac02544d27c6f98c6d9a0bc2dc351372a Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Thu, 4 Apr 2024 12:53:34 +0200 Subject: [PATCH 34/41] feat(impl):[#488] update upload script --- local/testing/testdata/transform-and-upload.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/local/testing/testdata/transform-and-upload.py b/local/testing/testdata/transform-and-upload.py index 5060d897c6..9e532abb05 100644 --- a/local/testing/testdata/transform-and-upload.py +++ b/local/testing/testdata/transform-and-upload.py @@ -571,6 +571,8 @@ def search_for_asset_in_catalog(edc_catalog_path_, edc_upload_url_, edc_url_, he "key": "manufacturerPartId" }) print(name_at_manufacturer) + name_at_manufacturer = name_at_manufacturer + "-" + uuid.uuid4().hex + print(name_at_manufacturer) manufacturerId = { "key": "manufacturerId", From 1ea4e8d9d0c48c63ca1e9e695bcc709b4071ebae Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Fri, 5 Apr 2024 09:18:17 +0200 Subject: [PATCH 35/41] fix(irs-api): Update API Version --- .../src/main/java/org/eclipse/tractusx/irs/IrsApplication.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/IrsApplication.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/IrsApplication.java index 35e68ec6ae..691d58714f 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/IrsApplication.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/IrsApplication.java @@ -59,7 +59,7 @@ public class IrsApplication { /** * The IRS API version. */ - public static final String API_VERSION = "4.8.0"; + public static final String API_VERSION = "4.9.0"; /** * The URL prefix for IRS API URLs. From f7e70b66166462e014b22271ac1f87523040dd14 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Fri, 5 Apr 2024 09:32:49 +0200 Subject: [PATCH 36/41] chore(workflows): add trigger on change of irs-api.yaml --- .github/workflows/irs-build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/irs-build.yml b/.github/workflows/irs-build.yml index d60fc56ee3..415b0ba893 100644 --- a/.github/workflows/irs-build.yml +++ b/.github/workflows/irs-build.yml @@ -9,6 +9,7 @@ on: - 'charts/**' - '.config/**' - 'docs/**' + - '!docs/src/api/**' - 'local/**' - 'CHANGELOG.md' push: From a9793e4430a3aae38f1c8ec647fb6c50ff69b70a Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Fri, 5 Apr 2024 11:02:16 +0200 Subject: [PATCH 37/41] feat(impl):[#499] docs cleanup --- .config/README.md | 1 - README.md | 3 -- .../arc42/architecture-constraints/index.adoc | 19 ++++--------- pom.xml | 28 ------------------- 4 files changed, 5 insertions(+), 46 deletions(-) diff --git a/.config/README.md b/.config/README.md index d128507341..64e967555e 100644 --- a/.config/README.md +++ b/.config/README.md @@ -14,6 +14,5 @@ This folder contains configuration, rules and suppression files for code quality | irs.header | Copyright header definition for the checkstyle module RegexpHeader. | see checkstyle.xml file | | owasp-suppressions.xml | [OWASP dependendy check](https://owasp.org/www-project-dependency-check/) suppressions. | [OWASP suppressions documentation](https://jeremylong.github.io/DependencyCheck/general/suppression.html) | | pmd-rules.xml | [PMD Source Code Analyzer](https://pmd.github.io/) rules. | [PMD rules documentation](https://pmd.github.io/pmd/pmd_userdocs_making_rulesets.html) | -| spotbugs-excludes.xml | [Spotbugs](https://spotbugs.github.io/) excludes. | [Spotbugs excludes documentation](https://spotbugs.readthedocs.io/en/stable/filter.html) | diff --git a/README.md b/README.md index 603ac6b4f1..c05772d516 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,8 @@ [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=eclipse-tractusx_item-relationship-service&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=eclipse-tractusx_item-relationship-service) [![CodeQL](https://github.com/eclipse-tractusx/item-relationship-service/actions/workflows/codeql.yml/badge.svg)](https://github.com/eclipse-tractusx/item-relationship-service/actions/workflows/codeql.yml) [![Kics](https://github.com/eclipse-tractusx/item-relationship-service/actions/workflows/kics.yml/badge.svg)](https://github.com/eclipse-tractusx/item-relationship-service/actions/workflows/kics.yml) -[![Trivy](https://github.com/eclipse-tractusx/item-relationship-service/actions/workflows/trivy.yml/badge.svg)](https://github.com/eclipse-tractusx/item-relationship-service/actions/workflows/trivy.yml) [![Trivy Docker Hub Scan](https://github.com/eclipse-tractusx/item-relationship-service/actions/workflows/trivy-docker-hub-scan.yml/badge.svg)](https://github.com/eclipse-tractusx/item-relationship-service/actions/workflows/trivy-docker-hub-scan.yml) -[![VeraCode](https://github.com/eclipse-tractusx/item-relationship-service/actions/workflows/veracode.yaml/badge.svg)](https://github.com/eclipse-tractusx/item-relationship-service/actions/workflows/veracode.yaml) [![OWASP Dependency Check](https://github.com/eclipse-tractusx/item-relationship-service/actions/workflows/owasp.yml/badge.svg)](https://github.com/eclipse-tractusx/item-relationship-service/actions/workflows/owasp.yml) -[![Spotbugs](https://github.com/eclipse-tractusx/item-relationship-service/actions/workflows/spotbugs.yml/badge.svg)](https://github.com/eclipse-tractusx/item-relationship-service/actions/workflows/spotbugs.yml) [![Eclipse-dash](https://github.com/eclipse-tractusx/item-relationship-service/actions/workflows/eclipse-dash.yml/badge.svg)](https://github.com/eclipse-tractusx/item-relationship-service/actions/workflows/eclipse-dash.yml) [![Tavern IRS API test](https://github.com/eclipse-tractusx/item-relationship-service/actions/workflows/tavern.yml/badge.svg)](https://github.com/eclipse-tractusx/item-relationship-service/actions/workflows/tavern.yml) diff --git a/docs/src/docs/arc42/architecture-constraints/index.adoc b/docs/src/docs/arc42/architecture-constraints/index.adoc index 3470e4643c..680fc8c937 100644 --- a/docs/src/docs/arc42/architecture-constraints/index.adoc +++ b/docs/src/docs/arc42/architecture-constraints/index.adoc @@ -97,12 +97,6 @@ Orchestration of application components and integration with other libraries/fra |Fail build on untidy pom.xml |N/A -|SpotBugs -|Static analysis to find bugs in Java code. Successor to the popular FindBugs tool -|Fail build on violations -|.config/spotbugs-excludes.xml -@SuppressFBWarnings(...) - |FindSecBugs |SpotBugs plugin to add security bug coverage |Fail build on violations @@ -126,14 +120,6 @@ Orchestration of application components and integration with other libraries/fra |pom.xml @ExcludeFromCodeCoverageGeneratedReport -|Veracode -a| -- Scan source code for vulnerabilities (SAST) -- Scan dependencies for known vulnerabilities (SCA) -- Check used licenses (FOSS licenses) -| -|https://web.analysiscenter.veracode.com/ - |Dependabot |Automated dependency updates built into GitHub. Provides pull requests for dependency updates. |Every dependency update automatically generates a pull request. @@ -143,4 +129,9 @@ a| |Discover vulnerabilities across a code base. | |.github/workflows/codeql.yml + +|KICS +|Infrastructure as Code scannings. +| +|.github/workflows/kics.yml |=== \ No newline at end of file diff --git a/pom.xml b/pom.xml index 96611cfa6b..471a4ee3c0 100644 --- a/pom.xml +++ b/pom.xml @@ -107,7 +107,6 @@ 1.19.1 - 4.7.3.2 1.12.0 3.3.1 10.12.6 @@ -206,33 +205,6 @@ - - com.github.spotbugs - spotbugs-maven-plugin - ${spotbugs-plugin.version} - - Max - Low - true - Low - .config/spotbugs-excludes.xml - - - com.h3xstream.findsecbugs - findsecbugs-plugin - ${findsecbugs-plugin.version} - - - - - - validate - - check - - - - org.owasp dependency-check-maven From 58d866d6714a56a37c783ee891001841000341b9 Mon Sep 17 00:00:00 2001 From: ds-lcapellino Date: Mon, 8 Apr 2024 12:56:14 +0200 Subject: [PATCH 38/41] feature: #602 add specific asset ids to as planned assets --- local/testing/testdata/transform-and-upload.py | 1 + 1 file changed, 1 insertion(+) diff --git a/local/testing/testdata/transform-and-upload.py b/local/testing/testdata/transform-and-upload.py index 9e532abb05..edf1c18763 100644 --- a/local/testing/testdata/transform-and-upload.py +++ b/local/testing/testdata/transform-and-upload.py @@ -563,6 +563,7 @@ def search_for_asset_in_catalog(edc_catalog_path_, edc_upload_url_, edc_url_, he " ", "") if "PartAsPlanned" in tmp_key: + specific_asset_ids_temp = copy(tmp_data[tmp_key][0]["localIdentifiers"]) name_at_manufacturer = tmp_data[tmp_key][0]["partTypeInformation"]["nameAtManufacturer"].replace( " ", "") From 9535e4fe4288dc2eef572268cabea7fa2c03b3ae Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Mon, 8 Apr 2024 14:11:39 +0200 Subject: [PATCH 39/41] feat(impl):[#488] new dataset reduced --- ...ta_v1.7.0_AsBuilt-not-accepted-policy.json | 4 +- ...Testdata_v1.7.0_PartInstance-reduced.json} | 69879 +++++++--------- 2 files changed, 30407 insertions(+), 39476 deletions(-) rename local/testing/testdata/{CX_Testdata_v1.7.0_AsBuilt-reduced-with-Specified.json => CX_Testdata_v1.7.0_PartInstance-reduced.json} (82%) diff --git a/local/testing/testdata/CX_Testdata_v1.7.0_AsBuilt-not-accepted-policy.json b/local/testing/testdata/CX_Testdata_v1.7.0_AsBuilt-not-accepted-policy.json index d78444945b..bacd2ac20e 100644 --- a/local/testing/testdata/CX_Testdata_v1.7.0_AsBuilt-not-accepted-policy.json +++ b/local/testing/testdata/CX_Testdata_v1.7.0_AsBuilt-not-accepted-policy.json @@ -36,8 +36,8 @@ "childItems" : [ { "catenaXId" : "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c3", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "value" : 2.5, + "unit" : "unit:litre" }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", diff --git a/local/testing/testdata/CX_Testdata_v1.7.0_AsBuilt-reduced-with-Specified.json b/local/testing/testdata/CX_Testdata_v1.7.0_PartInstance-reduced.json similarity index 82% rename from local/testing/testdata/CX_Testdata_v1.7.0_AsBuilt-reduced-with-Specified.json rename to local/testing/testdata/CX_Testdata_v1.7.0_PartInstance-reduced.json index 23ded49800..3cd3986742 100644 --- a/local/testing/testdata/CX_Testdata_v1.7.0_AsBuilt-reduced-with-Specified.json +++ b/local/testing/testdata/CX_Testdata_v1.7.0_PartInstance-reduced.json @@ -1,4 +1,4 @@ -{ +{ "policies": { "ID 3.0 Trace": { "@context": { @@ -30,7 +30,7 @@ } }, "https://catenax.io/schema/TestDataContainer/1.0.0" : [ { - "catenaXId" : "urn:uuid:76e07e0b-15e9-4279-9d19-8bee67260ce4", + "catenaXId" : "urn:uuid:25fbcb4b-5a0e-4368-be08-8e77437eb485", "bpnl" : "null", "PlainObject" : [ { "BPN_OEM_C" : "BPNL00000003AZQP", @@ -39,12 +39,12 @@ "BPN_IRS_TEST" : "BPNL00000003AWSS", "BPN_N_TIER_A" : "BPNL00000003B0Q0", "BPN_NATURAL_RUBBER_SITE_A" : "BPNS000000000001", - "BATCH_SEALANT_1" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", - "BATCH_SEALANT_2" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "BATCH_SEALANT_1" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", + "BATCH_SEALANT_2" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "AUTHOR" : "T-Systems", "BPN_NATURAL_RUBBER" : "BPNL00000007OR16", - "BATCH_GLUE_2" : "urn:uuid:70e850fd-c1cb-4418-964e-cd3ba0bb6459", - "BATCH_GLUE_1" : "urn:uuid:8d75a647-b003-46d9-9ed2-d3577cb1a171", + "BATCH_GLUE_2" : "urn:uuid:ed543e1c-bdaa-44b8-a301-fdfb0d70d0a8", + "BATCH_GLUE_1" : "urn:uuid:5f4e7c59-0ce1-40b3-9429-fe2a3efadc06", "BPN_OEM_B_SITE_A" : "BPNS000000815DMY", "BPN_OEM_A_SITE_A" : "BPNS000004711DMY", "BPN_OEM_C_SITE_A" : "BPNS000001111DMY", @@ -56,14 +56,14 @@ "BPN_TIER_A" : "BPNL00000003B2OM", "BPN_TIER_C" : "BPNL00000003CSGV", "BPN_FARM_A" : "BPNL00000003CSGV", - "SPT_MPO_LINK" : "urn:uuid:13752e97-e42f-4cd8-89b5-333615d4de5c", + "SPT_MPO_LINK" : "urn:uuid:6c661f11-e3fa-482e-810a-856c4152cd2e", "BPN_TIER_B" : "BPNL00000003B5MJ", "BPN_SUB_TIER_B" : "BPNL00000003AXS3", "BPN_SUB_TIER_A" : "BPNL00000003B3NX", - "BATCH_CATHODE_1" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "BATCH_CATHODE_2" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "BATCH_CATHODE_1" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "BATCH_CATHODE_2" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "BPN_SUB_TIER_C" : "BPNL00000000BJTL", - "CREATION_DATE" : "2024-03-15T06:19:40.513Z", + "CREATION_DATE" : "2024-04-02T08:11:35.593Z", "BPN_TIER_C_SITE_A" : "BPNS00000003CSGV", "BPN_TIER_A_SITE_A" : "BPNS00000003B2OM", "BPN_TIER_B_SITE_A" : "BPNS00000003B5MJ", @@ -72,14 +72,14 @@ "BPN_SUB_TIER_C_SITE_A" : "BPNS00000000BJTL", "BPN_FARM_SITE_A" : "BPNS000000000DQB", "BPN_N_TIER_A_SITE_A" : "BPNS00000003B0Q0", - "BATCH_POLYAMID_1" : "urn:uuid:a87b4573-048a-42e0-a0a6-86c4680c28b1", - "BATCH_POLYAMID_2" : "urn:uuid:cd81204d-f7ac-4673-833b-799ea6da60d7" + "BATCH_POLYAMID_1" : "urn:uuid:9a29e44c-af8e-4216-9e1d-a5ed96cd925f", + "BATCH_POLYAMID_2" : "urn:uuid:5f8c823a-a97f-4d54-90f4-92b3e008bd8b" } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Iron", - "recycledContent" : 48, + "recycledContent" : 76, "materialClass" : "1.1", "quantity" : { "unit" : "unit:kilogram", @@ -89,7 +89,7 @@ "materialAbbreviation" : "IR334" }, { "materialName" : "Polyethylen", - "recycledContent" : 31, + "recycledContent" : 38, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -99,7 +99,7 @@ "materialAbbreviation" : "PE221" }, { "materialName" : "Polyamid6", - "recycledContent" : 53, + "recycledContent" : 21, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -109,7 +109,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Aluminium", - "recycledContent" : 31, + "recycledContent" : 87, "materialClass" : "2.1", "quantity" : { "unit" : "unit:kilogram", @@ -119,7 +119,7 @@ "materialAbbreviation" : "ALU331" }, { "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", - "recycledContent" : 1, + "recycledContent" : 43, "materialClass" : "0.7", "quantity" : { "unit" : "unit:kilogram", @@ -129,7 +129,7 @@ "materialAbbreviation" : "W123" }, { "materialName" : "Glue", - "recycledContent" : 86, + "recycledContent" : 20, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -139,7 +139,7 @@ "materialAbbreviation" : "GL338" }, { "materialName" : "Carbon Steel", - "recycledContent" : 66, + "recycledContent" : 54, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -149,7 +149,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Cooper", - "recycledContent" : 17, + "recycledContent" : 16, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -159,7 +159,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Rubber", - "recycledContent" : 39, + "recycledContent" : 58, "materialClass" : "5.3", "quantity" : { "unit" : "unit:kilogram", @@ -169,7 +169,7 @@ "materialAbbreviation" : "R22" }, { "materialName" : "Textiles", - "recycledContent" : 7, + "recycledContent" : 13, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:kilogram", @@ -180,322 +180,322 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", "childItems" : [ { - "catenaXId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", + "catenaXId" : "urn:uuid:e7777066-e453-4431-beb3-4e99d042f923", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "catenaXId" : "urn:uuid:1ad0892a-59c1-4118-8b52-601540973f31", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "catenaXId" : "urn:uuid:b84ef907-c98d-4e3f-be20-323dd67b0914", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", + "catenaXId" : "urn:uuid:bc19b78d-8213-4a7f-bbfb-6d1cacebc737", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", + "catenaXId" : "urn:uuid:84aad2ac-24cc-4853-94cf-c503124c517c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", + "catenaXId" : "urn:uuid:c5650b0e-ff2e-4a89-ad26-0d081d3bda2b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", + "catenaXId" : "urn:uuid:14cef013-a2a4-40e7-aefd-924770afc9a6", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", + "catenaXId" : "urn:uuid:af044358-a186-4207-9dfb-0b63e3d02c9e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", + "catenaXId" : "urn:uuid:a23ccabc-c57c-4baa-9478-04848936e20d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", + "catenaXId" : "urn:uuid:373aa18f-5d8b-499d-babf-1d68e4d5908f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", + "catenaXId" : "urn:uuid:f647afa4-6ad9-402b-8ca9-dfeb676501e4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", + "catenaXId" : "urn:uuid:835eed75-8556-4d36-aae0-b3c550096af3", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", + "catenaXId" : "urn:uuid:207a0c9e-f0b7-458e-bf9c-bea39d9074a7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", + "catenaXId" : "urn:uuid:a91e02c9-bc31-4f37-a7f7-9af4024e5a0e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", + "catenaXId" : "urn:uuid:3030a83b-2885-4243-98f0-be0ec8265c34", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", + "catenaXId" : "urn:uuid:4a3f00cc-e692-4109-85af-ffea51c0c1ff", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", + "catenaXId" : "urn:uuid:4b2f6021-5885-4059-b6e7-b4e735f05acf", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", + "catenaXId" : "urn:uuid:5e4a3f3a-2fa3-4dcf-864a-3a6c65f6e79d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", + "catenaXId" : "urn:uuid:0a69149d-eb8c-4332-a197-34daec75dba2", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", + "catenaXId" : "urn:uuid:f01ab02b-6861-40c5-a4c9-d6ed35b7fedd", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", + "catenaXId" : "urn:uuid:3e7a45da-8fd5-4204-adfd-88cf8e36e37a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", + "catenaXId" : "urn:uuid:21e09e0d-2d8f-499c-9bf2-4c1be0044be1", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", + "catenaXId" : "urn:uuid:51437dc2-5557-49f8-9c17-a057cb3e62b7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", + "catenaXId" : "urn:uuid:7dd40724-5338-4d8d-a5ae-bb602f7e9fb7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", + "catenaXId" : "urn:uuid:0e2f3906-e606-481e-bcf1-d7fd13f3a32b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", + "catenaXId" : "urn:uuid:f543da9b-1716-4e41-b63d-e7819b133ce5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", + "catenaXId" : "urn:uuid:6354d4d6-3cb7-47b3-8c3c-e9201d89b22f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", + "catenaXId" : "urn:uuid:e878d692-9393-4ed7-bc1c-0b7fae934403", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", + "catenaXId" : "urn:uuid:62ef6377-0609-4d2c-b8b1-cabe262cf590", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "catenaXId" : "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "catenaXId" : "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B5MJ", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", @@ -503,33 +503,33 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { - "value" : "NK-28", + "value" : "TB-60", "key" : "manufacturerPartId" }, { - "value" : "OMBOCDCFHZXMZBJZC", + "value" : "OMBQATUSKJNZLHPDF", "key" : "partInstanceId" }, { - "value" : "OMBOCDCFHZXMZBJZC", + "value" : "OMBQATUSKJNZLHPDF", "key" : "van" } ], "manufacturingInformation" : { - "date" : "2020-08-19T11:21:15.000Z", + "date" : "2015-05-27T02:47:19.000Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", "partTypeInformation" : { - "manufacturerPartId" : "NK-28", + "manufacturerPartId" : "TB-60", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -539,12 +539,12 @@ }, "itemVersion" : "01" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", "partTypeInformation" : { "ownerPartId" : "", "partVersion" : "01", @@ -558,8 +558,8 @@ } } ], "urn:samm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Kombilimousine", - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "bodyVariant" : "Schräghecklimousine", + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", "engine" : { "size" : 2998, "power" : 143 @@ -569,14 +569,6 @@ "vehicleModel" : "Vehicle Fully Electric", "productionDateGMT" : "2010-01-01", "equipmentVariants" : [ { - "code" : "S2AVB", - "description" : "adaptive drive", - "group" : "special equipment" - }, { - "code" : "S763C", - "description" : "sport package", - "group" : "special equipment" - }, { "code" : "A01CR", "description" : "remote engine start", "group" : "special equipment" @@ -584,44 +576,52 @@ "code" : "S378B", "description" : "integrated child seats", "group" : "special equipment" + }, { + "code" : "S388C", + "description" : "security plus", + "group" : "special equipment" + }, { + "code" : "A458D", + "description" : "parking assistance ", + "group" : "special equipment" } ], "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", "mileage" : [ { "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2014-11-14", + "mileageTimestamp" : "2020-08-27", "mileageDistance" : 120000 } ] } ] }, { - "catenaXId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", + "catenaXId" : "urn:uuid:e7777066-e453-4431-beb3-4e99d042f923", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "84513", + "orderNumber" : "443023", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 9 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "6226", + "referencedStandard" : "JIS", + "referencedStandardID" : "8031", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -632,18 +632,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -668,7 +668,7 @@ "value" : "73849201-61", "key" : "manufacturerPartId" }, { - "value" : "NO-066647475705439133590731", + "value" : "NO-237946004780203051455167", "key" : "partInstanceId" }, { "value" : "Company 10", @@ -685,7 +685,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", + "catenaXId" : "urn:uuid:e7777066-e453-4431-beb3-4e99d042f923", "partTypeInformation" : { "manufacturerPartId" : "73849201-61", "customerPartId" : "73849201-61", @@ -700,16 +700,16 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", + "assetId" : "urn:uuid:e7777066-e453-4431-beb3-4e99d042f923", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", + "catenaXId" : "urn:uuid:e7777066-e453-4431-beb3-4e99d042f923", "partTypeInformation" : { "ownerPartId" : "73849201-61", "partVersion" : "04", @@ -722,31 +722,29 @@ "nameAtOwner" : "Catalysator" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e7777066-e453-4431-beb3-4e99d042f923", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "catenaXId" : "urn:uuid:1ad0892a-59c1-4118-8b52-601540973f31", "childItems" : [ { - "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "catenaXId" : "urn:uuid:c6d2d642-a055-4ddf-87e3-1a3b02c689e3", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000000BJTL", @@ -754,35 +752,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "catenaXId" : "urn:uuid:1ad0892a-59c1-4118-8b52-601540973f31", "bpnl" : "BPNL00000003CSGV", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "493373", + "orderNumber" : "771141", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "4467", + "referencedStandard" : "IS", + "referencedStandardID" : "4984", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -791,30 +789,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -829,7 +827,7 @@ "value" : "22782277-50", "key" : "manufacturerPartId" }, { - "value" : "NO-070860464145139398402631", + "value" : "NO-132222698930095466785219", "key" : "partInstanceId" }, { "value" : "Company 3", @@ -846,7 +844,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "catenaXId" : "urn:uuid:1ad0892a-59c1-4118-8b52-601540973f31", "partTypeInformation" : { "manufacturerPartId" : "22782277-50", "customerPartId" : "22782277-50", @@ -858,10 +856,10 @@ "nameAtManufacturer" : "Door f-l", "nameAtCustomer" : "Door front-left" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "assetId" : "urn:uuid:1ad0892a-59c1-4118-8b52-601540973f31", "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { "item" : [ { @@ -870,29 +868,29 @@ "key" : "BPNL00000003CSGV:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ca454f06-e3ac-4908-8632-0fece3946e62", + "ownerItemId" : "urn:uuid:c4ae951f-b68d-462b-a58c-c029cc926630", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "childassetId" : "urn:uuid:c6d2d642-a055-4ddf-87e3-1a3b02c689e3", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "catenaXId" : "urn:uuid:1ad0892a-59c1-4118-8b52-601540973f31", "partTypeInformation" : { "ownerPartId" : "22782277-50", - "partVersion" : "03", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Door front-left", "partClassification" : [ { @@ -902,27 +900,25 @@ "nameAtOwner" : "Door front-left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1ad0892a-59c1-4118-8b52-601540973f31", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003CSGV" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "86681316RUO", + "value" : "82227044FBE", "key" : "jisNumber" } ], "manufacturingInformation" : { @@ -933,7 +929,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "catenaXId" : "urn:uuid:c6d2d642-a055-4ddf-87e3-1a3b02c689e3", "partTypeInformation" : { "manufacturerPartId" : "123-0.740-3434-A", "customerPartId" : "PRT-12345", @@ -946,10 +942,10 @@ "nameAtCustomer" : "side element A" } } ], - "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "catenaXId" : "urn:uuid:c6d2d642-a055-4ddf-87e3-1a3b02c689e3", "bpnl" : "BPNL00000000BJTL", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "358518", + "orderNumber" : "945951", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -958,23 +954,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "5674", + "referencedStandard" : "EN", + "referencedStandardID" : "8592", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -983,30 +979,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -1021,7 +1017,7 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-747120479071756798529531", + "value" : "NO-073366714159387479576634", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -1032,7 +1028,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "catenaXId" : "urn:uuid:c6d2d642-a055-4ddf-87e3-1a3b02c689e3", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", @@ -1047,16 +1043,16 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "assetId" : "urn:uuid:c6d2d642-a055-4ddf-87e3-1a3b02c689e3", "manufacturerId" : "BPNL00000000BJTL", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "catenaXId" : "urn:uuid:c6d2d642-a055-4ddf-87e3-1a3b02c689e3", "partTypeInformation" : { "ownerPartId" : "95657762-59", "partVersion" : "05", @@ -1069,31 +1065,29 @@ "nameAtOwner" : "Door Key" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c6d2d642-a055-4ddf-87e3-1a3b02c689e3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1ad0892a-59c1-4118-8b52-601540973f31", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000000BJTL" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "catenaXId" : "urn:uuid:b84ef907-c98d-4e3f-be20-323dd67b0914", "childItems" : [ { - "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "catenaXId" : "urn:uuid:dec92d8e-c156-446f-91b1-b960fc7373d4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000000BJTL", @@ -1101,35 +1095,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "catenaXId" : "urn:uuid:b84ef907-c98d-4e3f-be20-323dd67b0914", "bpnl" : "BPNL00000003CSGV", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "909852", + "orderNumber" : "312850", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "6025", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7758", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -1138,10 +1132,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -1151,17 +1145,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -1176,7 +1170,7 @@ "value" : "95657362-64", "key" : "manufacturerPartId" }, { - "value" : "NO-717125314697526511835089", + "value" : "NO-308061107177299146814515", "key" : "partInstanceId" }, { "value" : "Company 4", @@ -1193,7 +1187,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "catenaXId" : "urn:uuid:b84ef907-c98d-4e3f-be20-323dd67b0914", "partTypeInformation" : { "manufacturerPartId" : "33740332-54", "customerPartId" : "33740332-54", @@ -1205,10 +1199,10 @@ "nameAtManufacturer" : "Door f-r", "nameAtCustomer" : "Door front-right" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "assetId" : "urn:uuid:b84ef907-c98d-4e3f-be20-323dd67b0914", "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { "item" : [ { @@ -1217,29 +1211,29 @@ "key" : "BPNL00000003CSGV:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5bec6e30-f1be-49b1-9a80-d6d6da5780fe", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:7c208541-f36d-460d-a4df-f8884fdbe570", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "childassetId" : "urn:uuid:dec92d8e-c156-446f-91b1-b960fc7373d4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "catenaXId" : "urn:uuid:b84ef907-c98d-4e3f-be20-323dd67b0914", "partTypeInformation" : { "ownerPartId" : "33740332-54", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Door front-right", "partClassification" : [ { @@ -1249,27 +1243,25 @@ "nameAtOwner" : "Door front-right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b84ef907-c98d-4e3f-be20-323dd67b0914", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003CSGV" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "50695399XFB", + "value" : "40618807ZDZ", "key" : "jisNumber" } ], "manufacturingInformation" : { @@ -1280,7 +1272,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "catenaXId" : "urn:uuid:dec92d8e-c156-446f-91b1-b960fc7373d4", "partTypeInformation" : { "manufacturerPartId" : "123-0.740-3434-A", "customerPartId" : "PRT-12345", @@ -1293,35 +1285,35 @@ "nameAtCustomer" : "side element A" } } ], - "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "catenaXId" : "urn:uuid:dec92d8e-c156-446f-91b1-b960fc7373d4", "bpnl" : "BPNL00000000BJTL", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "820213", + "orderNumber" : "915196", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "3619", + "referencedStandard" : "JIS", + "referencedStandardID" : "3960", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -1332,28 +1324,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -1368,7 +1360,7 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-933249529973009274367708", + "value" : "NO-549219340251150430970046", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -1379,7 +1371,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "catenaXId" : "urn:uuid:dec92d8e-c156-446f-91b1-b960fc7373d4", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", @@ -1391,22 +1383,22 @@ "nameAtManufacturer" : "Door Key", "nameAtCustomer" : "Door Key" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "assetId" : "urn:uuid:dec92d8e-c156-446f-91b1-b960fc7373d4", "manufacturerId" : "BPNL00000000BJTL", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "catenaXId" : "urn:uuid:dec92d8e-c156-446f-91b1-b960fc7373d4", "partTypeInformation" : { "ownerPartId" : "95657762-59", - "partVersion" : "01", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Door Key", "partClassification" : [ { @@ -1416,53 +1408,51 @@ "nameAtOwner" : "Door Key" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:dec92d8e-c156-446f-91b1-b960fc7373d4", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b84ef907-c98d-4e3f-be20-323dd67b0914", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000000BJTL" ] } ] }, { - "catenaXId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", + "catenaXId" : "urn:uuid:bc19b78d-8213-4a7f-bbfb-6d1cacebc737", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "866717", + "orderNumber" : "723729", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "4399", + "referencedStandard" : "DIN", + "referencedStandardID" : "3768", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -1471,10 +1461,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -1484,7 +1474,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -1494,7 +1484,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -1509,7 +1499,7 @@ "value" : "15635759-16", "key" : "manufacturerPartId" }, { - "value" : "NO-935348299524699268826561", + "value" : "NO-333852895168705794472199", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -1520,7 +1510,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", + "catenaXId" : "urn:uuid:bc19b78d-8213-4a7f-bbfb-6d1cacebc737", "partTypeInformation" : { "manufacturerPartId" : "15635759-16", "customerPartId" : "15635759-16", @@ -1532,22 +1522,22 @@ "nameAtManufacturer" : "Door r-l", "nameAtCustomer" : "Door rear-left" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", + "assetId" : "urn:uuid:bc19b78d-8213-4a7f-bbfb-6d1cacebc737", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", + "catenaXId" : "urn:uuid:bc19b78d-8213-4a7f-bbfb-6d1cacebc737", "partTypeInformation" : { "ownerPartId" : "15635759-16", - "partVersion" : "02", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Door rear-left", "partClassification" : [ { @@ -1557,53 +1547,51 @@ "nameAtOwner" : "Door rear-left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bc19b78d-8213-4a7f-bbfb-6d1cacebc737", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", + "catenaXId" : "urn:uuid:84aad2ac-24cc-4853-94cf-c503124c517c", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "829696", + "orderNumber" : "570273", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "4314", + "referencedStandard" : "AS", + "referencedStandardID" : "4897", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -1612,10 +1600,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -1629,13 +1617,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -1650,7 +1638,7 @@ "value" : "28673126-98", "key" : "manufacturerPartId" }, { - "value" : "NO-312287171739061318684731", + "value" : "NO-118749418886331961020320", "key" : "partInstanceId" }, { "value" : "Company 5", @@ -1667,7 +1655,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", + "catenaXId" : "urn:uuid:84aad2ac-24cc-4853-94cf-c503124c517c", "partTypeInformation" : { "manufacturerPartId" : "28673126-98", "customerPartId" : "28673126-98", @@ -1679,22 +1667,22 @@ "nameAtManufacturer" : "Door r-r", "nameAtCustomer" : "Door rear-right" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", + "assetId" : "urn:uuid:84aad2ac-24cc-4853-94cf-c503124c517c", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", + "catenaXId" : "urn:uuid:84aad2ac-24cc-4853-94cf-c503124c517c", "partTypeInformation" : { "ownerPartId" : "28673126-98", - "partVersion" : "05", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Door rear-right", "partClassification" : [ { @@ -1704,53 +1692,51 @@ "nameAtOwner" : "Door rear-right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:84aad2ac-24cc-4853-94cf-c503124c517c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", + "catenaXId" : "urn:uuid:c5650b0e-ff2e-4a89-ad26-0d081d3bda2b", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "853381", + "orderNumber" : "765846", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "EN", - "referencedStandardID" : "3642", + "referencedStandardID" : "3939", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -1759,30 +1745,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -1797,7 +1783,7 @@ "value" : "94421589-82", "key" : "manufacturerPartId" }, { - "value" : "NO-512057047299506284822846", + "value" : "NO-667678187568709354492498", "key" : "partInstanceId" }, { "value" : "Company 6", @@ -1814,7 +1800,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", + "catenaXId" : "urn:uuid:c5650b0e-ff2e-4a89-ad26-0d081d3bda2b", "partTypeInformation" : { "manufacturerPartId" : "94421589-82", "customerPartId" : "94421589-82", @@ -1826,22 +1812,22 @@ "nameAtManufacturer" : "Engine hood", "nameAtCustomer" : "Engine hood" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", + "assetId" : "urn:uuid:c5650b0e-ff2e-4a89-ad26-0d081d3bda2b", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", + "catenaXId" : "urn:uuid:c5650b0e-ff2e-4a89-ad26-0d081d3bda2b", "partTypeInformation" : { "ownerPartId" : "94421589-82", - "partVersion" : "02", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Engine hood", "partClassification" : [ { @@ -1851,53 +1837,51 @@ "nameAtOwner" : "Engine hood" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c5650b0e-ff2e-4a89-ad26-0d081d3bda2b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", + "catenaXId" : "urn:uuid:14cef013-a2a4-40e7-aefd-924770afc9a6", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "998741", + "orderNumber" : "182206", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "9870", + "referencedStandard" : "AISI", + "referencedStandardID" : "1088", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -1908,28 +1892,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -1944,7 +1928,7 @@ "value" : "85023955-75", "key" : "manufacturerPartId" }, { - "value" : "NO-935241026522592720471442", + "value" : "NO-148296997357787499803562", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -1955,7 +1939,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", + "catenaXId" : "urn:uuid:14cef013-a2a4-40e7-aefd-924770afc9a6", "partTypeInformation" : { "manufacturerPartId" : "85023955-75", "customerPartId" : "85023955-75", @@ -1967,22 +1951,22 @@ "nameAtManufacturer" : "Tailgate", "nameAtCustomer" : "Tailgate" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", + "assetId" : "urn:uuid:14cef013-a2a4-40e7-aefd-924770afc9a6", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", + "catenaXId" : "urn:uuid:14cef013-a2a4-40e7-aefd-924770afc9a6", "partTypeInformation" : { "ownerPartId" : "85023955-75", - "partVersion" : "01", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Tailgate", "partClassification" : [ { @@ -1992,28 +1976,26 @@ "nameAtOwner" : "Tailgate" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:14cef013-a2a4-40e7-aefd-924770afc9a6", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", + "catenaXId" : "urn:uuid:af044358-a186-4207-9dfb-0b63e3d02c9e", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "712288", + "orderNumber" : "245958", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -2022,13 +2004,13 @@ "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -2037,8 +2019,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "2045", + "referencedStandard" : "EN", + "referencedStandardID" : "4391", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -2047,10 +2029,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -2060,7 +2042,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -2085,7 +2067,7 @@ "value" : "13769860-47", "key" : "manufacturerPartId" }, { - "value" : "NO-797225775878072083424960", + "value" : "NO-239887722158455392857917", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -2096,7 +2078,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", + "catenaXId" : "urn:uuid:af044358-a186-4207-9dfb-0b63e3d02c9e", "partTypeInformation" : { "manufacturerPartId" : "13769860-47", "customerPartId" : "13769860-47", @@ -2108,22 +2090,22 @@ "nameAtManufacturer" : "Fender left", "nameAtCustomer" : "Fender right" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", + "assetId" : "urn:uuid:af044358-a186-4207-9dfb-0b63e3d02c9e", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", + "catenaXId" : "urn:uuid:af044358-a186-4207-9dfb-0b63e3d02c9e", "partTypeInformation" : { "ownerPartId" : "13769860-47", - "partVersion" : "01", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Fender right", "partClassification" : [ { @@ -2133,53 +2115,51 @@ "nameAtOwner" : "Fender right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:af044358-a186-4207-9dfb-0b63e3d02c9e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", + "catenaXId" : "urn:uuid:a23ccabc-c57c-4baa-9478-04848936e20d", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "966218", + "orderNumber" : "232353", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 8 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "3912", + "referencedStandard" : "AS", + "referencedStandardID" : "7191", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -2190,28 +2170,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -2226,7 +2206,7 @@ "value" : "36643162-35", "key" : "manufacturerPartId" }, { - "value" : "NO-448918216597975248405544", + "value" : "NO-068706319098702362453776", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -2237,7 +2217,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", + "catenaXId" : "urn:uuid:a23ccabc-c57c-4baa-9478-04848936e20d", "partTypeInformation" : { "manufacturerPartId" : "36643162-35", "customerPartId" : "36643162-35", @@ -2249,22 +2229,22 @@ "nameAtManufacturer" : "Fender right", "nameAtCustomer" : "Fender right" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", + "assetId" : "urn:uuid:a23ccabc-c57c-4baa-9478-04848936e20d", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", + "catenaXId" : "urn:uuid:a23ccabc-c57c-4baa-9478-04848936e20d", "partTypeInformation" : { "ownerPartId" : "36643162-35", - "partVersion" : "05", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Fender right", "partClassification" : [ { @@ -2274,43 +2254,41 @@ "nameAtOwner" : "Fender right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a23ccabc-c57c-4baa-9478-04848936e20d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", + "catenaXId" : "urn:uuid:373aa18f-5d8b-499d-babf-1d68e4d5908f", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "164297", + "orderNumber" : "506123", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 7 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -2319,8 +2297,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "7329", + "referencedStandard" : "EN", + "referencedStandardID" : "3352", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -2331,8 +2309,8 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -2342,17 +2320,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -2367,7 +2345,7 @@ "value" : "54165444-59", "key" : "manufacturerPartId" }, { - "value" : "NO-234316605230590922467140", + "value" : "NO-846173490949169497250957", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -2378,7 +2356,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", + "catenaXId" : "urn:uuid:373aa18f-5d8b-499d-babf-1d68e4d5908f", "partTypeInformation" : { "manufacturerPartId" : "54165444-59", "customerPartId" : "54165444-59", @@ -2390,22 +2368,22 @@ "nameAtManufacturer" : "Bumper front", "nameAtCustomer" : "Bumper front" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", + "assetId" : "urn:uuid:373aa18f-5d8b-499d-babf-1d68e4d5908f", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", + "catenaXId" : "urn:uuid:373aa18f-5d8b-499d-babf-1d68e4d5908f", "partTypeInformation" : { "ownerPartId" : "54165444-59", - "partVersion" : "02", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Bumper front", "partClassification" : [ { @@ -2415,53 +2393,51 @@ "nameAtOwner" : "Bumper front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:373aa18f-5d8b-499d-babf-1d68e4d5908f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", + "catenaXId" : "urn:uuid:f647afa4-6ad9-402b-8ca9-dfeb676501e4", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "698262", + "orderNumber" : "771678", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "6642", + "referencedStandard" : "JIS", + "referencedStandardID" : "1311", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -2477,23 +2453,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -2508,7 +2484,7 @@ "value" : "22768257-25", "key" : "manufacturerPartId" }, { - "value" : "NO-561770140107022421469955", + "value" : "NO-264045982210489399185810", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -2519,7 +2495,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", + "catenaXId" : "urn:uuid:f647afa4-6ad9-402b-8ca9-dfeb676501e4", "partTypeInformation" : { "manufacturerPartId" : "22768257-25", "customerPartId" : "22768257-25", @@ -2531,22 +2507,22 @@ "nameAtManufacturer" : "Bumper rear", "nameAtCustomer" : "Bumper rear" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", + "assetId" : "urn:uuid:f647afa4-6ad9-402b-8ca9-dfeb676501e4", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", + "catenaXId" : "urn:uuid:f647afa4-6ad9-402b-8ca9-dfeb676501e4", "partTypeInformation" : { "ownerPartId" : "22768257-25", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Bumper rear", "partClassification" : [ { @@ -2556,53 +2532,51 @@ "nameAtOwner" : "Bumper rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f647afa4-6ad9-402b-8ca9-dfeb676501e4", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", + "catenaXId" : "urn:uuid:835eed75-8556-4d36-aae0-b3c550096af3", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "685035", + "orderNumber" : "332436", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "5253", + "referencedStandard" : "AS", + "referencedStandardID" : "4569", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -2613,7 +2587,7 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { @@ -2624,17 +2598,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -2649,7 +2623,7 @@ "value" : "65529521-37", "key" : "manufacturerPartId" }, { - "value" : "NO-472963873349845436443693", + "value" : "NO-538314032599018242331006", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -2660,7 +2634,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", + "catenaXId" : "urn:uuid:835eed75-8556-4d36-aae0-b3c550096af3", "partTypeInformation" : { "manufacturerPartId" : "65529521-37", "customerPartId" : "65529521-37", @@ -2672,22 +2646,22 @@ "nameAtManufacturer" : "Exterior mirror left", "nameAtCustomer" : "Exterior mirror left" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", + "assetId" : "urn:uuid:835eed75-8556-4d36-aae0-b3c550096af3", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", + "catenaXId" : "urn:uuid:835eed75-8556-4d36-aae0-b3c550096af3", "partTypeInformation" : { "ownerPartId" : "65529521-37", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Exterior mirror left", "partClassification" : [ { @@ -2697,41 +2671,39 @@ "nameAtOwner" : "Exterior mirror left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:835eed75-8556-4d36-aae0-b3c550096af3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", + "catenaXId" : "urn:uuid:207a0c9e-f0b7-458e-bf9c-bea39d9074a7", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "762163", + "orderNumber" : "258674", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, @@ -2742,8 +2714,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "3630", + "referencedStandard" : "JIS", + "referencedStandardID" : "1817", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -2752,24 +2724,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { @@ -2790,7 +2762,7 @@ "value" : "58471477-24", "key" : "manufacturerPartId" }, { - "value" : "NO-498373680403428328935294", + "value" : "NO-993176322579834430064051", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -2801,7 +2773,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", + "catenaXId" : "urn:uuid:207a0c9e-f0b7-458e-bf9c-bea39d9074a7", "partTypeInformation" : { "manufacturerPartId" : "58471477-24", "customerPartId" : "58471477-24", @@ -2813,22 +2785,22 @@ "nameAtManufacturer" : "Exterior mirror right", "nameAtCustomer" : "Exterior mirror right" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", + "assetId" : "urn:uuid:207a0c9e-f0b7-458e-bf9c-bea39d9074a7", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", + "catenaXId" : "urn:uuid:207a0c9e-f0b7-458e-bf9c-bea39d9074a7", "partTypeInformation" : { "ownerPartId" : "58471477-24", - "partVersion" : "01", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Exterior mirror right", "partClassification" : [ { @@ -2838,53 +2810,51 @@ "nameAtOwner" : "Exterior mirror right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:207a0c9e-f0b7-458e-bf9c-bea39d9074a7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", + "catenaXId" : "urn:uuid:a91e02c9-bc31-4f37-a7f7-9af4024e5a0e", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "430687", + "orderNumber" : "258165", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "8728", + "referencedStandard" : "ASME", + "referencedStandardID" : "4484", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -2896,27 +2866,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -2931,7 +2901,7 @@ "value" : "09002013-68", "key" : "manufacturerPartId" }, { - "value" : "NO-814540334583663330747432", + "value" : "NO-781615740005254426594801", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -2942,7 +2912,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", + "catenaXId" : "urn:uuid:a91e02c9-bc31-4f37-a7f7-9af4024e5a0e", "partTypeInformation" : { "manufacturerPartId" : "09002013-68", "customerPartId" : "09002013-68", @@ -2954,22 +2924,22 @@ "nameAtManufacturer" : "Trailer coupling", "nameAtCustomer" : "Tailer coupling" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", + "assetId" : "urn:uuid:a91e02c9-bc31-4f37-a7f7-9af4024e5a0e", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", + "catenaXId" : "urn:uuid:a91e02c9-bc31-4f37-a7f7-9af4024e5a0e", "partTypeInformation" : { "ownerPartId" : "09002013-68", - "partVersion" : "02", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Tailer coupling", "partClassification" : [ { @@ -2979,53 +2949,51 @@ "nameAtOwner" : "Tailer coupling" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a91e02c9-bc31-4f37-a7f7-9af4024e5a0e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", + "catenaXId" : "urn:uuid:3030a83b-2885-4243-98f0-be0ec8265c34", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "313504", + "orderNumber" : "62959", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "1917", + "referencedStandard" : "GB", + "referencedStandardID" : "4817", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -3034,10 +3002,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -3047,7 +3015,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -3057,7 +3025,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -3072,7 +3040,7 @@ "value" : "43501996-98", "key" : "manufacturerPartId" }, { - "value" : "NO-909562885178693699037440", + "value" : "NO-629305707358689604279789", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -3083,7 +3051,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", + "catenaXId" : "urn:uuid:3030a83b-2885-4243-98f0-be0ec8265c34", "partTypeInformation" : { "manufacturerPartId" : "43501996-98", "customerPartId" : "43501996-98", @@ -3095,22 +3063,22 @@ "nameAtManufacturer" : "Dashboard", "nameAtCustomer" : "Dashboard" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", + "assetId" : "urn:uuid:3030a83b-2885-4243-98f0-be0ec8265c34", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", + "catenaXId" : "urn:uuid:3030a83b-2885-4243-98f0-be0ec8265c34", "partTypeInformation" : { "ownerPartId" : "43501996-98", - "partVersion" : "01", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Dashboard", "partClassification" : [ { @@ -3120,53 +3088,51 @@ "nameAtOwner" : "Dashboard" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3030a83b-2885-4243-98f0-be0ec8265c34", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", + "catenaXId" : "urn:uuid:4a3f00cc-e692-4109-85af-ffea51c0c1ff", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "511397", + "orderNumber" : "686294", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "2060", + "referencedStandard" : "JASO", + "referencedStandardID" : "4147", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -3175,10 +3141,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -3188,17 +3154,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -3213,7 +3179,7 @@ "value" : "77795937-13", "key" : "manufacturerPartId" }, { - "value" : "NO-859483763601915613763162", + "value" : "NO-667158461405603139778847", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -3224,7 +3190,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", + "catenaXId" : "urn:uuid:4a3f00cc-e692-4109-85af-ffea51c0c1ff", "partTypeInformation" : { "manufacturerPartId" : "77795937-13", "customerPartId" : "77795937-13", @@ -3236,22 +3202,22 @@ "nameAtManufacturer" : "Steering wheel", "nameAtCustomer" : "Steering wheel" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", + "assetId" : "urn:uuid:4a3f00cc-e692-4109-85af-ffea51c0c1ff", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", + "catenaXId" : "urn:uuid:4a3f00cc-e692-4109-85af-ffea51c0c1ff", "partTypeInformation" : { "ownerPartId" : "77795937-13", - "partVersion" : "01", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Steering wheel", "partClassification" : [ { @@ -3261,53 +3227,51 @@ "nameAtOwner" : "Steering wheel" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4a3f00cc-e692-4109-85af-ffea51c0c1ff", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", + "catenaXId" : "urn:uuid:4b2f6021-5885-4059-b6e7-b4e735f05acf", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "618145", + "orderNumber" : "506656", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 26 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "9419", + "referencedStandard" : "EN", + "referencedStandardID" : "5150", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -3316,30 +3280,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -3354,7 +3318,7 @@ "value" : "20125432-59", "key" : "manufacturerPartId" }, { - "value" : "NO-381058856694394911749515", + "value" : "NO-627875351311372739950698", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -3365,7 +3329,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", + "catenaXId" : "urn:uuid:4b2f6021-5885-4059-b6e7-b4e735f05acf", "partTypeInformation" : { "manufacturerPartId" : "20125432-59", "customerPartId" : "20125432-59", @@ -3377,22 +3341,22 @@ "nameAtManufacturer" : "Indicator left", "nameAtCustomer" : "Indicator left" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", + "assetId" : "urn:uuid:4b2f6021-5885-4059-b6e7-b4e735f05acf", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", + "catenaXId" : "urn:uuid:4b2f6021-5885-4059-b6e7-b4e735f05acf", "partTypeInformation" : { "ownerPartId" : "20125432-59", - "partVersion" : "02", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Indicator left", "partClassification" : [ { @@ -3402,53 +3366,51 @@ "nameAtOwner" : "Indicator left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4b2f6021-5885-4059-b6e7-b4e735f05acf", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", + "catenaXId" : "urn:uuid:5e4a3f3a-2fa3-4dcf-864a-3a6c65f6e79d", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "878250", + "orderNumber" : "23664", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 23 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "4207", + "referencedStandard" : "EN", + "referencedStandardID" : "7686", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -3459,12 +3421,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -3480,7 +3442,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -3495,7 +3457,7 @@ "value" : "19073706-76", "key" : "manufacturerPartId" }, { - "value" : "NO-738810714196805495613608", + "value" : "NO-405115979688970854791474", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -3506,7 +3468,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", + "catenaXId" : "urn:uuid:5e4a3f3a-2fa3-4dcf-864a-3a6c65f6e79d", "partTypeInformation" : { "manufacturerPartId" : "19073706-76", "customerPartId" : "19073706-76", @@ -3521,16 +3483,16 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", + "assetId" : "urn:uuid:5e4a3f3a-2fa3-4dcf-864a-3a6c65f6e79d", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", + "catenaXId" : "urn:uuid:5e4a3f3a-2fa3-4dcf-864a-3a6c65f6e79d", "partTypeInformation" : { "ownerPartId" : "19073706-76", "partVersion" : "03", @@ -3543,53 +3505,51 @@ "nameAtOwner" : "Indicator right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5e4a3f3a-2fa3-4dcf-864a-3a6c65f6e79d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", + "catenaXId" : "urn:uuid:0a69149d-eb8c-4332-a197-34daec75dba2", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "970830", + "orderNumber" : "109366", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "7314", + "referencedStandard" : "GB", + "referencedStandardID" : "4902", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -3598,30 +3558,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -3636,7 +3596,7 @@ "value" : "45415162-57", "key" : "manufacturerPartId" }, { - "value" : "NO-706869576108504911888487", + "value" : "NO-547789641918425235492602", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -3647,7 +3607,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", + "catenaXId" : "urn:uuid:0a69149d-eb8c-4332-a197-34daec75dba2", "partTypeInformation" : { "manufacturerPartId" : "45415162-57", "customerPartId" : "45415162-57", @@ -3662,16 +3622,16 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", + "assetId" : "urn:uuid:0a69149d-eb8c-4332-a197-34daec75dba2", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", + "catenaXId" : "urn:uuid:0a69149d-eb8c-4332-a197-34daec75dba2", "partTypeInformation" : { "ownerPartId" : "45415162-57", "partVersion" : "04", @@ -3684,43 +3644,41 @@ "nameAtOwner" : "Led headlight" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0a69149d-eb8c-4332-a197-34daec75dba2", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", + "catenaXId" : "urn:uuid:f01ab02b-6861-40c5-a4c9-d6ed35b7fedd", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "190425", + "orderNumber" : "229623", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -3729,8 +3687,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "6691", + "referencedStandard" : "JASO", + "referencedStandardID" : "8668", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -3739,30 +3697,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -3777,7 +3735,7 @@ "value" : "78141846-87", "key" : "manufacturerPartId" }, { - "value" : "NO-302124803790642780585327", + "value" : "NO-162319335483232292850947", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -3788,7 +3746,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", + "catenaXId" : "urn:uuid:f01ab02b-6861-40c5-a4c9-d6ed35b7fedd", "partTypeInformation" : { "manufacturerPartId" : "78141846-87", "customerPartId" : "78141846-87", @@ -3800,22 +3758,22 @@ "nameAtManufacturer" : "Starter motor", "nameAtCustomer" : "Starter motor" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", + "assetId" : "urn:uuid:f01ab02b-6861-40c5-a4c9-d6ed35b7fedd", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", + "catenaXId" : "urn:uuid:f01ab02b-6861-40c5-a4c9-d6ed35b7fedd", "partTypeInformation" : { "ownerPartId" : "78141846-87", - "partVersion" : "01", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Starter motor", "partClassification" : [ { @@ -3825,53 +3783,51 @@ "nameAtOwner" : "Starter motor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f01ab02b-6861-40c5-a4c9-d6ed35b7fedd", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", + "catenaXId" : "urn:uuid:3e7a45da-8fd5-4204-adfd-88cf8e36e37a", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "172988", + "orderNumber" : "701102", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "7711", + "referencedStandard" : "GB", + "referencedStandardID" : "9337", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -3882,12 +3838,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -3897,7 +3853,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { @@ -3918,7 +3874,7 @@ "value" : "81324139-23", "key" : "manufacturerPartId" }, { - "value" : "NO-522630666682237918821842", + "value" : "NO-517838736103503680241432", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -3929,7 +3885,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", + "catenaXId" : "urn:uuid:3e7a45da-8fd5-4204-adfd-88cf8e36e37a", "partTypeInformation" : { "manufacturerPartId" : "81324139-23", "customerPartId" : "81324139-23", @@ -3941,22 +3897,22 @@ "nameAtManufacturer" : "Alternator", "nameAtCustomer" : "Alternator" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", + "assetId" : "urn:uuid:3e7a45da-8fd5-4204-adfd-88cf8e36e37a", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", + "catenaXId" : "urn:uuid:3e7a45da-8fd5-4204-adfd-88cf8e36e37a", "partTypeInformation" : { "ownerPartId" : "81324139-23", - "partVersion" : "04", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Alternator", "partClassification" : [ { @@ -3966,43 +3922,41 @@ "nameAtOwner" : "Alternator" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3e7a45da-8fd5-4204-adfd-88cf8e36e37a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", + "catenaXId" : "urn:uuid:21e09e0d-2d8f-499c-9bf2-4c1be0044be1", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "532019", + "orderNumber" : "397516", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 8 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -4011,8 +3965,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "2963", + "referencedStandard" : "ASME", + "referencedStandardID" : "8128", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -4021,24 +3975,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -4059,7 +4013,7 @@ "value" : "57929013-09", "key" : "manufacturerPartId" }, { - "value" : "NO-756871575834670298298957", + "value" : "NO-863929753905373967106622", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -4070,7 +4024,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", + "catenaXId" : "urn:uuid:21e09e0d-2d8f-499c-9bf2-4c1be0044be1", "partTypeInformation" : { "manufacturerPartId" : "57929013-09", "customerPartId" : "57929013-09", @@ -4082,22 +4036,22 @@ "nameAtManufacturer" : "AC compressor", "nameAtCustomer" : "Air conditioning compressor" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", + "assetId" : "urn:uuid:21e09e0d-2d8f-499c-9bf2-4c1be0044be1", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", + "catenaXId" : "urn:uuid:21e09e0d-2d8f-499c-9bf2-4c1be0044be1", "partTypeInformation" : { "ownerPartId" : "57929013-09", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Air conditioning compressor", "partClassification" : [ { @@ -4107,53 +4061,51 @@ "nameAtOwner" : "Air conditioning compressor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:21e09e0d-2d8f-499c-9bf2-4c1be0044be1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", + "catenaXId" : "urn:uuid:51437dc2-5557-49f8-9c17-a057cb3e62b7", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "131076", + "orderNumber" : "899356", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 8 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "5508", + "referencedStandard" : "GB", + "referencedStandardID" : "9599", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -4162,20 +4114,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -4185,7 +4137,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -4200,7 +4152,7 @@ "value" : "61184040-23", "key" : "manufacturerPartId" }, { - "value" : "NO-524620221933669424039127", + "value" : "NO-573486511202825465909783", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -4211,7 +4163,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", + "catenaXId" : "urn:uuid:51437dc2-5557-49f8-9c17-a057cb3e62b7", "partTypeInformation" : { "manufacturerPartId" : "61184040-23", "customerPartId" : "61184040-23", @@ -4223,22 +4175,22 @@ "nameAtManufacturer" : "Taillight rear", "nameAtCustomer" : "Taillight rear" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", + "assetId" : "urn:uuid:51437dc2-5557-49f8-9c17-a057cb3e62b7", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", + "catenaXId" : "urn:uuid:51437dc2-5557-49f8-9c17-a057cb3e62b7", "partTypeInformation" : { "ownerPartId" : "61184040-23", - "partVersion" : "03", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Taillight rear", "partClassification" : [ { @@ -4248,43 +4200,41 @@ "nameAtOwner" : "Taillight rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:51437dc2-5557-49f8-9c17-a057cb3e62b7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", + "catenaXId" : "urn:uuid:7dd40724-5338-4d8d-a5ae-bb602f7e9fb7", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "696401", + "orderNumber" : "524594", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -4294,7 +4244,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "JASO", - "referencedStandardID" : "2883", + "referencedStandardID" : "9853", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -4303,10 +4253,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -4316,11 +4266,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -4341,7 +4291,7 @@ "value" : "78744126-74", "key" : "manufacturerPartId" }, { - "value" : "NO-613060820318211072608449", + "value" : "NO-039945475879396863733510", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -4352,7 +4302,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", + "catenaXId" : "urn:uuid:7dd40724-5338-4d8d-a5ae-bb602f7e9fb7", "partTypeInformation" : { "manufacturerPartId" : "78744126-74", "customerPartId" : "78744126-74", @@ -4364,22 +4314,22 @@ "nameAtManufacturer" : "Taillight front", "nameAtCustomer" : "Taillight front" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", + "assetId" : "urn:uuid:7dd40724-5338-4d8d-a5ae-bb602f7e9fb7", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", + "catenaXId" : "urn:uuid:7dd40724-5338-4d8d-a5ae-bb602f7e9fb7", "partTypeInformation" : { "ownerPartId" : "78744126-74", - "partVersion" : "02", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Taillight front", "partClassification" : [ { @@ -4389,53 +4339,51 @@ "nameAtOwner" : "Taillight front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7dd40724-5338-4d8d-a5ae-bb602f7e9fb7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", + "catenaXId" : "urn:uuid:0e2f3906-e606-481e-bcf1-d7fd13f3a32b", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "988355", + "orderNumber" : "821061", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "ISO", - "referencedStandardID" : "6092", + "referencedStandardID" : "6622", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -4444,7 +4392,7 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 10 @@ -4457,7 +4405,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -4467,7 +4415,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -4482,7 +4430,7 @@ "value" : "12093297-03", "key" : "manufacturerPartId" }, { - "value" : "NO-295509185072402053464558", + "value" : "NO-967002501485712008404139", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -4493,7 +4441,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", + "catenaXId" : "urn:uuid:0e2f3906-e606-481e-bcf1-d7fd13f3a32b", "partTypeInformation" : { "manufacturerPartId" : "12093297-03", "customerPartId" : "12093297-03", @@ -4508,16 +4456,16 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", + "assetId" : "urn:uuid:0e2f3906-e606-481e-bcf1-d7fd13f3a32b", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", + "catenaXId" : "urn:uuid:0e2f3906-e606-481e-bcf1-d7fd13f3a32b", "partTypeInformation" : { "ownerPartId" : "12093297-03", "partVersion" : "03", @@ -4530,53 +4478,51 @@ "nameAtOwner" : "Axle part front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0e2f3906-e606-481e-bcf1-d7fd13f3a32b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", + "catenaXId" : "urn:uuid:f543da9b-1716-4e41-b63d-e7819b133ce5", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "173380", + "orderNumber" : "369659", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "5710", + "referencedStandard" : "DIN", + "referencedStandardID" : "9329", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -4585,24 +4531,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -4623,7 +4569,7 @@ "value" : "88111709-49", "key" : "manufacturerPartId" }, { - "value" : "NO-771993242485837410678109", + "value" : "NO-838288806889001789093226", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -4634,7 +4580,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", + "catenaXId" : "urn:uuid:f543da9b-1716-4e41-b63d-e7819b133ce5", "partTypeInformation" : { "manufacturerPartId" : "88111709-49", "customerPartId" : "88111709-49", @@ -4646,22 +4592,22 @@ "nameAtManufacturer" : "Axle part rear", "nameAtCustomer" : "Axle part rear" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", + "assetId" : "urn:uuid:f543da9b-1716-4e41-b63d-e7819b133ce5", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", + "catenaXId" : "urn:uuid:f543da9b-1716-4e41-b63d-e7819b133ce5", "partTypeInformation" : { "ownerPartId" : "88111709-49", - "partVersion" : "01", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Axle part rear", "partClassification" : [ { @@ -4671,37 +4617,35 @@ "nameAtOwner" : "Axle part rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f543da9b-1716-4e41-b63d-e7819b133ce5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", + "catenaXId" : "urn:uuid:6354d4d6-3cb7-47b3-8c3c-e9201d89b22f", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "510968", + "orderNumber" : "362481", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -4712,12 +4656,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "5089", + "referencedStandard" : "ISO", + "referencedStandardID" : "8155", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -4726,30 +4670,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -4764,7 +4708,7 @@ "value" : "00871379-44", "key" : "manufacturerPartId" }, { - "value" : "NO-403886949080884450587727", + "value" : "NO-878652606269557322711382", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -4775,7 +4719,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", + "catenaXId" : "urn:uuid:6354d4d6-3cb7-47b3-8c3c-e9201d89b22f", "partTypeInformation" : { "manufacturerPartId" : "00871379-44", "customerPartId" : "00871379-44", @@ -4790,16 +4734,16 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", + "assetId" : "urn:uuid:6354d4d6-3cb7-47b3-8c3c-e9201d89b22f", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", + "catenaXId" : "urn:uuid:6354d4d6-3cb7-47b3-8c3c-e9201d89b22f", "partTypeInformation" : { "ownerPartId" : "00871379-44", "partVersion" : "04", @@ -4812,41 +4756,39 @@ "nameAtOwner" : "Chassis" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6354d4d6-3cb7-47b3-8c3c-e9201d89b22f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", + "catenaXId" : "urn:uuid:e878d692-9393-4ed7-bc1c-0b7fae934403", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "632367", + "orderNumber" : "950180", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, @@ -4857,8 +4799,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "6913", + "referencedStandard" : "JIS", + "referencedStandardID" : "7573", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -4870,21 +4812,21 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -4905,7 +4847,7 @@ "value" : "08901347-87", "key" : "manufacturerPartId" }, { - "value" : "NO-567537304722173805639181", + "value" : "NO-101499617029308483778470", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -4916,7 +4858,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", + "catenaXId" : "urn:uuid:e878d692-9393-4ed7-bc1c-0b7fae934403", "partTypeInformation" : { "manufacturerPartId" : "08901347-87", "customerPartId" : "08901347-87", @@ -4928,22 +4870,22 @@ "nameAtManufacturer" : "Rims", "nameAtCustomer" : "Rims" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", + "assetId" : "urn:uuid:e878d692-9393-4ed7-bc1c-0b7fae934403", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", + "catenaXId" : "urn:uuid:e878d692-9393-4ed7-bc1c-0b7fae934403", "partTypeInformation" : { "ownerPartId" : "08901347-87", - "partVersion" : "04", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Rims", "partClassification" : [ { @@ -4953,28 +4895,26 @@ "nameAtOwner" : "Rims" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e878d692-9393-4ed7-bc1c-0b7fae934403", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", + "catenaXId" : "urn:uuid:62ef6377-0609-4d2c-b8b1-cabe262cf590", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "449891", + "orderNumber" : "225420", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -4983,23 +4923,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "9043", + "referencedStandard" : "DIN", + "referencedStandardID" : "2633", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -5008,30 +4948,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -5046,7 +4986,7 @@ "value" : "45863316-60", "key" : "manufacturerPartId" }, { - "value" : "NO-754930692443785638020334", + "value" : "NO-215625412208452667296362", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -5057,7 +4997,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", + "catenaXId" : "urn:uuid:62ef6377-0609-4d2c-b8b1-cabe262cf590", "partTypeInformation" : { "manufacturerPartId" : "45863316-60", "customerPartId" : "45863316-60", @@ -5069,22 +5009,22 @@ "nameAtManufacturer" : "Tires", "nameAtCustomer" : "Tires" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", + "assetId" : "urn:uuid:62ef6377-0609-4d2c-b8b1-cabe262cf590", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", + "catenaXId" : "urn:uuid:62ef6377-0609-4d2c-b8b1-cabe262cf590", "partTypeInformation" : { "ownerPartId" : "45863316-60", - "partVersion" : "04", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Tires", "partClassification" : [ { @@ -5094,28 +5034,26 @@ "nameAtOwner" : "Tires" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:62ef6377-0609-4d2c-b8b1-cabe262cf590", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Carbon Steel", - "recycledContent" : 19, + "recycledContent" : 50, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -5125,7 +5063,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Oil", - "recycledContent" : 51, + "recycledContent" : 12, "materialClass" : "9.2", "quantity" : { "unit" : "unit:kilogram", @@ -5135,7 +5073,7 @@ "materialAbbreviation" : "SAE40" }, { "materialName" : "Copper", - "recycledContent" : 57, + "recycledContent" : 89, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -5146,32 +5084,32 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "catenaXId" : "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", "childItems" : [ { - "catenaXId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "catenaXId" : "urn:uuid:0218c3f2-2f70-457c-acc8-b70f1ee53d43", "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2014 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "catenaXId" : "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "catenaXId" : "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2341 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AZQP", @@ -5179,35 +5117,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "catenaXId" : "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", "bpnl" : "BPNL00000003B2OM", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "514312", + "orderNumber" : "949914", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 22 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "1780", + "referencedStandard" : "ASME", + "referencedStandardID" : "4026", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -5218,18 +5156,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -5239,7 +5177,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -5254,7 +5192,7 @@ "value" : "42555H1-52", "key" : "manufacturerPartId" }, { - "value" : "NO-971749365763688998182907", + "value" : "NO-392235679424701475513847", "key" : "partInstanceId" }, { "value" : "Company 2", @@ -5271,7 +5209,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "catenaXId" : "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", "partTypeInformation" : { "manufacturerPartId" : "42555H1-52", "customerPartId" : "42555H1-52", @@ -5283,29 +5221,29 @@ "nameAtManufacturer" : "Transmission", "nameAtCustomer" : "Transmission" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "assetId" : "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", "manufacturerId" : "BPNL00000003B2OM", "childItems" : [ { "item" : [ { "itemClassification" : [ { - "value" : "Engineering Plastics", + "value" : "Mirror left", "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:071a570c-7f67-441d-b6f5-7c9b8a54ac8e", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:4e212a8e-72ef-48cc-8560-a62dd2729a72", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "childassetId" : "urn:uuid:0218c3f2-2f70-457c-acc8-b70f1ee53d43", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -5314,17 +5252,17 @@ "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2ecd94b8-ca32-4e01-81be-58d0e8cba1e6", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:eb5bf3b0-a8d2-4e56-bdc1-e48b9b53e74c", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "childassetId" : "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -5333,17 +5271,17 @@ "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4f3a4c9b-0ca3-440e-8ca0-650e2304dc91", + "ownerItemId" : "urn:uuid:94d79869-ca34-40ac-a279-1c5d680b901c", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "childassetId" : "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -5356,24 +5294,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", - "partTypeInformation" : { - "ownerPartId" : "42555H1-52", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "Transmission", - "partClassification" : [ { - "value" : "Transmission", - "key" : "BPNL00000003B2OM:PartFamily" - } ], - "nameAtOwner" : "Transmission" - } - } ], "urn:samm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { "productSpecificParameters" : { "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], @@ -5415,10 +5335,10 @@ "documentTitle" : "Title A" } ] }, - "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "catenaXId" : "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", "identification" : { "localIdentifiers" : [ { - "value" : "NO-971749365763688998182907", + "value" : "NO-392235679424701475513847", "key" : "PartInstanceID" } ], "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", @@ -5484,22 +5404,38 @@ "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", + "partTypeInformation" : { + "ownerPartId" : "42555H1-52", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Transmission", + "partClassification" : [ { + "value" : "Transmission", + "key" : "BPNL00000003B2OM:PartFamily" } ], + "nameAtOwner" : "Transmission" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B2OM" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -5507,7 +5443,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 24, + "recycledContent" : 31, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -5517,7 +5453,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 40, + "recycledContent" : 74, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -5527,35 +5463,35 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "catenaXId" : "urn:uuid:0218c3f2-2f70-457c-acc8-b70f1ee53d43", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "914874", + "orderNumber" : "322383", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "9797", + "referencedStandard" : "AS", + "referencedStandardID" : "1157", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -5564,10 +5500,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -5577,11 +5513,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -5595,7 +5531,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "assetId" : "urn:uuid:0218c3f2-2f70-457c-acc8-b70f1ee53d43", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -5612,27 +5548,27 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "catenaXId" : "urn:uuid:0218c3f2-2f70-457c-acc8-b70f1ee53d43", "partTypeInformation" : { - "manufacturerPartId" : "IS-82", + "manufacturerPartId" : "JK-40", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "Engineering Plastics" + "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "catenaXId" : "urn:uuid:0218c3f2-2f70-457c-acc8-b70f1ee53d43", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "03", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -5642,31 +5578,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0218c3f2-2f70-457c-acc8-b70f1ee53d43", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "catenaXId" : "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", "childItems" : [ { - "catenaXId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "catenaXId" : "urn:uuid:76ad44b1-89bc-47e3-ad84-b668a7899515", "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.1908 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -5674,23 +5608,23 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "catenaXId" : "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", "bpnl" : "BPNL00000003B3NX", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "183972", + "orderNumber" : "441704", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, @@ -5701,8 +5635,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "5873", + "referencedStandard" : "JIS", + "referencedStandardID" : "1678", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -5718,23 +5652,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -5746,10 +5680,10 @@ "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "18676V9-48", + "value" : "08708I5-06", "key" : "manufacturerPartId" }, { - "value" : "NO-695360115480032480516118", + "value" : "NO-072282005385522070609321", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -5760,10 +5694,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "catenaXId" : "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", "partTypeInformation" : { - "manufacturerPartId" : "18676V9-48", - "customerPartId" : "18676V9-48", + "manufacturerPartId" : "08708I5-06", + "customerPartId" : "08708I5-06", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -5772,10 +5706,10 @@ "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "assetId" : "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { "item" : [ { @@ -5784,29 +5718,29 @@ "key" : "BPNL00000003B3NX:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4e7a7f9b-5acc-4bc6-a4f5-82b5dda8bc7d", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:55c9596d-12bd-4673-88bb-76f5d798fd48", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "childassetId" : "urn:uuid:76ad44b1-89bc-47e3-ad84-b668a7899515", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "catenaXId" : "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", "partTypeInformation" : { - "ownerPartId" : "18676V9-48", - "partVersion" : "04", + "ownerPartId" : "08708I5-06", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Sensor", "partClassification" : [ { @@ -5816,22 +5750,20 @@ "nameAtOwner" : "Sensor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B3NX" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -5839,7 +5771,7 @@ "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 8, + "recycledContent" : 41, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -5849,7 +5781,7 @@ "materialAbbreviation" : "" }, { "materialName" : "Other", - "recycledContent" : 84, + "recycledContent" : 5, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -5859,35 +5791,35 @@ "materialAbbreviation" : "" } ] } ], - "catenaXId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "catenaXId" : "urn:uuid:76ad44b1-89bc-47e3-ad84-b668a7899515", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "864400", + "orderNumber" : "77511", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "1916", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "8791", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -5899,7 +5831,7 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -5909,17 +5841,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -5927,7 +5859,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "assetId" : "urn:uuid:76ad44b1-89bc-47e3-ad84-b668a7899515", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -5944,9 +5876,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "catenaXId" : "urn:uuid:76ad44b1-89bc-47e3-ad84-b668a7899515", "partTypeInformation" : { - "manufacturerPartId" : "RT-04", + "manufacturerPartId" : "QQ-78", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -5954,17 +5886,17 @@ } ], "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "catenaXId" : "urn:uuid:76ad44b1-89bc-47e3-ad84-b668a7899515", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "03", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -5974,26 +5906,24 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:76ad44b1-89bc-47e3-ad84-b668a7899515", + "parentItems" : [ { + "catenaXId" : "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "catenaXId" : "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", "childItems" : [ ] } ], "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -6008,35 +5938,35 @@ "materialAbbreviation" : "GL338" } ] } ], - "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "catenaXId" : "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "284458", + "orderNumber" : "566590", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 23 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "4331", + "referencedStandard" : "GB", + "referencedStandardID" : "1830", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -6048,27 +5978,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -6076,7 +6006,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "assetId" : "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] } ], @@ -6093,9 +6023,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "catenaXId" : "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", "partTypeInformation" : { - "manufacturerPartId" : "VP-89", + "manufacturerPartId" : "SC-00", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -6105,12 +6035,12 @@ }, "itemVersion" : "03" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "catenaXId" : "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", "partTypeInformation" : { "ownerPartId" : "", "partVersion" : "03", @@ -6123,28 +6053,26 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Glue", - "recycledContent" : 65, + "recycledContent" : 56, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -6155,32 +6083,32 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "catenaXId" : "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", "childItems" : [ { - "catenaXId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "catenaXId" : "urn:uuid:68da2386-7a95-4307-8ad1-b841ea2f4745", "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.3301 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "catenaXId" : "urn:uuid:59502115-9f03-48b7-871e-b9c6015c5563", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "catenaXId" : "urn:uuid:4e26d246-8a53-47ea-81ba-7d1d5d41f30b", "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2001 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -6188,19 +6116,19 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "catenaXId" : "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", "bpnl" : "BPNL00000003B5MJ", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "213226", + "orderNumber" : "87951", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -6211,12 +6139,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "5794", + "referencedStandard" : "GB", + "referencedStandardID" : "7162", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -6228,27 +6156,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -6260,10 +6188,10 @@ "value" : "BPNL00000003B5MJ", "key" : "manufacturerId" }, { - "value" : "56278T7-12", + "value" : "43954M5-06", "key" : "manufacturerPartId" }, { - "value" : "NO-014305725252821672580588", + "value" : "NO-840583801183834314235504", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -6274,10 +6202,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "catenaXId" : "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", "partTypeInformation" : { - "manufacturerPartId" : "56278T7-12", - "customerPartId" : "56278T7-12", + "manufacturerPartId" : "43954M5-06", + "customerPartId" : "43954M5-06", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -6286,10 +6214,10 @@ "nameAtManufacturer" : "ECU", "nameAtCustomer" : "ECU" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "assetId" : "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", "manufacturerId" : "BPNL00000003B5MJ", "childItems" : [ { "item" : [ { @@ -6298,17 +6226,17 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0ddcd695-9464-464a-b487-14a53f36023a", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:344c23d8-4096-4c83-94f5-7186efdcea85", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "childassetId" : "urn:uuid:68da2386-7a95-4307-8ad1-b841ea2f4745", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -6317,17 +6245,17 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:aa426b78-e61f-4c95-90c3-635f9ebc0233", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:d2c5dce4-80bb-4a9b-872d-5ab0a2c6e078", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "childassetId" : "urn:uuid:59502115-9f03-48b7-871e-b9c6015c5563", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -6336,29 +6264,29 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d33b687a-7663-42c5-98a4-39eddc9ff979", + "ownerItemId" : "urn:uuid:cfec0646-aa46-4837-b166-8b8c34bc6ee5", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "childassetId" : "urn:uuid:4e26d246-8a53-47ea-81ba-7d1d5d41f30b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "catenaXId" : "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", "partTypeInformation" : { - "ownerPartId" : "56278T7-12", - "partVersion" : "02", + "ownerPartId" : "43954M5-06", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "ECU", "partClassification" : [ { @@ -6368,22 +6296,20 @@ "nameAtOwner" : "ECU" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B5MJ" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -6391,7 +6317,7 @@ "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 25, + "recycledContent" : 65, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -6401,7 +6327,7 @@ "materialAbbreviation" : "AL7" }, { "materialName" : "Other", - "recycledContent" : 77, + "recycledContent" : 5, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -6411,35 +6337,35 @@ "materialAbbreviation" : "" } ] } ], - "catenaXId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "catenaXId" : "urn:uuid:68da2386-7a95-4307-8ad1-b841ea2f4745", "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "540047", + "orderNumber" : "620887", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "7664", + "referencedStandard" : "JASO", + "referencedStandardID" : "5584", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -6450,28 +6376,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -6479,7 +6405,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "assetId" : "urn:uuid:68da2386-7a95-4307-8ad1-b841ea2f4745", "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] } ], @@ -6496,9 +6422,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "catenaXId" : "urn:uuid:68da2386-7a95-4307-8ad1-b841ea2f4745", "partTypeInformation" : { - "manufacturerPartId" : "ID-97", + "manufacturerPartId" : "TK-01", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -6506,17 +6432,17 @@ } ], "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "catenaXId" : "urn:uuid:68da2386-7a95-4307-8ad1-b841ea2f4745", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "04", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -6526,31 +6452,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:68da2386-7a95-4307-8ad1-b841ea2f4745", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "catenaXId" : "urn:uuid:59502115-9f03-48b7-871e-b9c6015c5563", "childItems" : [ { - "catenaXId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "catenaXId" : "urn:uuid:0669d2b5-6a25-453b-ba96-3fdf42797c2d", "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.1908 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -6558,10 +6482,10 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "catenaXId" : "urn:uuid:59502115-9f03-48b7-871e-b9c6015c5563", "bpnl" : "BPNL00000003B3NX", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "24984", + "orderNumber" : "237131", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -6570,23 +6494,23 @@ "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "7508", + "referencedStandard" : "AISI", + "referencedStandardID" : "4914", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -6598,27 +6522,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -6630,10 +6554,10 @@ "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "80422J1-66", + "value" : "02059V6-96", "key" : "manufacturerPartId" }, { - "value" : "NO-114299309749179970389865", + "value" : "NO-099904543678137082014006", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -6644,10 +6568,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "catenaXId" : "urn:uuid:59502115-9f03-48b7-871e-b9c6015c5563", "partTypeInformation" : { - "manufacturerPartId" : "80422J1-66", - "customerPartId" : "80422J1-66", + "manufacturerPartId" : "02059V6-96", + "customerPartId" : "02059V6-96", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -6656,41 +6580,41 @@ "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "assetId" : "urn:uuid:59502115-9f03-48b7-871e-b9c6015c5563", "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { "item" : [ { "itemClassification" : [ { - "value" : "Engineering Plastics", + "value" : "Mirror left", "key" : "BPNL00000003B3NX:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a66063b1-92d4-42f1-b551-b04f4bc4e8e9", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:4bf74a73-4319-4bdc-bc00-5f265a9240d6", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "childassetId" : "urn:uuid:0669d2b5-6a25-453b-ba96-3fdf42797c2d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "catenaXId" : "urn:uuid:59502115-9f03-48b7-871e-b9c6015c5563", "partTypeInformation" : { - "ownerPartId" : "80422J1-66", - "partVersion" : "02", + "ownerPartId" : "02059V6-96", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Sensor", "partClassification" : [ { @@ -6700,22 +6624,20 @@ "nameAtOwner" : "Sensor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:59502115-9f03-48b7-871e-b9c6015c5563", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B3NX" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -6723,7 +6645,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 63, + "recycledContent" : 46, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -6733,7 +6655,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 16, + "recycledContent" : 26, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -6743,10 +6665,10 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "catenaXId" : "urn:uuid:0669d2b5-6a25-453b-ba96-3fdf42797c2d", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "631562", + "orderNumber" : "341811", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -6755,23 +6677,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "2022", + "referencedStandard" : "JASO", + "referencedStandardID" : "6684", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -6783,27 +6705,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -6811,7 +6733,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "assetId" : "urn:uuid:0669d2b5-6a25-453b-ba96-3fdf42797c2d", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -6828,27 +6750,27 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "catenaXId" : "urn:uuid:0669d2b5-6a25-453b-ba96-3fdf42797c2d", "partTypeInformation" : { - "manufacturerPartId" : "HP-63", + "manufacturerPartId" : "JC-28", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "Engineering Plastics" + "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "catenaXId" : "urn:uuid:0669d2b5-6a25-453b-ba96-3fdf42797c2d", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "02", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -6858,22 +6780,20 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0669d2b5-6a25-453b-ba96-3fdf42797c2d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:59502115-9f03-48b7-871e-b9c6015c5563", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -6881,7 +6801,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 19, + "recycledContent" : 72, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -6891,7 +6811,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 70, + "recycledContent" : 71, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -6901,35 +6821,35 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "catenaXId" : "urn:uuid:4e26d246-8a53-47ea-81ba-7d1d5d41f30b", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "744179", + "orderNumber" : "420685", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "9997", + "referencedStandard" : "ASME", + "referencedStandardID" : "3633", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -6938,30 +6858,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -6973,24 +6893,24 @@ "value" : "BPNL00000003B0Q0", "key" : "manufacturerId" }, { - "value" : "63678I1-57", + "value" : "56721H1-81", "key" : "manufacturerPartId" }, { - "value" : "NO-265189266576051308905480", + "value" : "NO-505064196503133330376728", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", "country" : "DEU", "sites" : [ { - "catenaXsiteId" : "BPNS00000003B0Q0", + "catenaXsiteId" : "BPNS00000003B5MJ", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "catenaXId" : "urn:uuid:4e26d246-8a53-47ea-81ba-7d1d5d41f30b", "partTypeInformation" : { - "manufacturerPartId" : "63678I1-57", - "customerPartId" : "63678I1-57", + "manufacturerPartId" : "56721H1-81", + "customerPartId" : "56721H1-81", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -7002,18 +6922,18 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "assetId" : "urn:uuid:4e26d246-8a53-47ea-81ba-7d1d5d41f30b", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "catenaXId" : "urn:uuid:4e26d246-8a53-47ea-81ba-7d1d5d41f30b", "partTypeInformation" : { - "ownerPartId" : "63678I1-57", + "ownerPartId" : "56721H1-81", "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Engineering Plastics", @@ -7024,25 +6944,87 @@ "nameAtOwner" : "Engineering Plastics" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4e26d246-8a53-47ea-81ba-7d1d5d41f30b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "childItems" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { @@ -7052,7 +7034,7 @@ "value" : "38049661-08", "key" : "manufacturerPartId" }, { - "value" : "NO-934355851064683759352825", + "value" : "NO-176599588259345153547203", "key" : "partInstanceId" }, { "value" : "Company 1", @@ -7069,7 +7051,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", "partTypeInformation" : { "manufacturerPartId" : "38049661-08", "customerPartId" : "38049661-08", @@ -7081,7 +7063,7 @@ "nameAtManufacturer" : "Battery", "nameAtCustomer" : "Battery" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { "incoterms" : "DAP (Delivered at Place)", @@ -7120,7 +7102,7 @@ "key" : "JxkyvRnL" } ], "productLink" : "https://123", - "oeNumber" : "NO-934355851064683759352825", + "oeNumber" : "NO-176599588259345153547203", "category" : { "subCategory" : [ "Battery" ], "mainCategory" : [ "Audio, video, navigation" ] @@ -7133,7 +7115,7 @@ "mileage" : 120000.06 } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "assetId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -7142,17 +7124,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e71d7b26-4f7a-4905-bf3e-0df598badc01", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:586a8aa7-7c45-4bea-b374-3c08c5e719f1", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "childassetId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -7161,17 +7143,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5237a522-3fa1-4af1-a8d9-ab0aa82e13cc", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:59b8dd32-9f49-4870-809d-35d3b3821b29", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "childassetId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -7180,17 +7162,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:01c089eb-b189-476a-9acb-323a7bc8e19a", + "ownerItemId" : "urn:uuid:47488bbe-ef93-49f0-a235-9eb99c74b14e", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "childassetId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -7199,17 +7181,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8aefd359-d90a-4c0f-abbb-e99faeeba771", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:5bf80483-20ad-4a82-b6a8-27b5612a21e7", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "childassetId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -7218,17 +7200,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ca3056fe-a946-405b-9966-c4b930d7acdd", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:316b802c-f237-456d-a5bf-2adcb9a78a33", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "childassetId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -7237,17 +7219,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7bb21073-8689-4939-b3b8-85d9fdbd2ae3", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:f00b5c8b-698a-406e-b93e-6b5d21f76054", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "childassetId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -7282,17 +7264,17 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2023-04-15", - "version" : 1.3, - "status" : "Invalid" + "issueDate" : "2023-03-18", + "version" : 1.6, + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 1704.0408, - "width" : 1704, - "length" : 2025, - "weight" : 533, - "height" : 278 + "diameter" : 1472.0566, + "width" : 1472, + "length" : 2188, + "weight" : 420, + "height" : 282 }, "lifespan" : { "unit" : "unit:year", @@ -7300,18 +7282,18 @@ } }, "commercial" : { - "placedOnMarket" : "2020-04-10", + "placedOnMarket" : "2022-07-17", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-934355851064683759352825", + "value" : "NO-176599588259345153547203", "key" : "PartInstanceID" } ], - "gtin" : " 94050133", + "gtin" : " 18345539", "additionalCode" : [ { "name" : "TARIC", - "value" : "516138614" + "value" : "384881233" } ] }, "sources" : { @@ -7333,7 +7315,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Passport", + "category" : "Compliance", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -7362,12 +7344,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2023-06-09", + "date" : "2023-11-07", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : false, + "reusablePackaging" : true, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -7378,9 +7360,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 2.9809 ] + "left" : [ 6.7514 ] }, - "id" : "PP9529" + "id" : "PP5462" } ] }, "additionalData" : [ { @@ -7406,9 +7388,9 @@ "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Others" + "name" : "UV Varnish" } ], - "critical" : [ "Lithium" ], + "critical" : [ "Cobalt" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -7418,39 +7400,40 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 109 + "carbonContentTotal" : 117 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AXS3", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003B3NX", "manufacturerId" : "BPNL00000003AVTH" } } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "partTypeInformation" : { + "ownerPartId" : "38049661-08", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Battery", + "partClassification" : [ { + "value" : "Battery", + "key" : "BPNL00000003AVTH:PartFamily" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + "nameAtOwner" : "Battery" + } } ], "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 81, + "recycledContent" : 73, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -7460,7 +7443,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 46, + "recycledContent" : 36, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -7470,7 +7453,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 19, + "recycledContent" : 37, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -7480,97 +7463,33 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", - "childItems" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "752234", + "orderNumber" : "782876", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "8442", + "referencedStandard" : "AISI", + "referencedStandardID" : "1473", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -7579,54 +7498,36 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } } } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", - "partTypeInformation" : { - "ownerPartId" : "38049661-08", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "Battery", - "partClassification" : [ { - "value" : "Battery", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "Battery" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -7852,7 +7753,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-934355851064683759352825", + "batteryIDDMCCode" : "NO-176599588259345153547203", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -7871,6 +7772,21 @@ } ], "productType" : "pack" } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "customers" : [ "BPNL00000003AVTH" ] + } ], "urn:samm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { "productConditions" : "at least 1990 model", "desiredPrice" : { @@ -7886,7 +7802,7 @@ "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 35, + "recycledContent" : 9, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -7896,7 +7812,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 29, + "recycledContent" : 88, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -7906,7 +7822,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 36, + "recycledContent" : 59, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -7917,112 +7833,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "catenaXId" : "urn:uuid:cb70b9d1-d0a0-49b2-bc61-eda5b6a4ee80", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "catenaXId" : "urn:uuid:f93c2d7f-ea73-410c-a0bf-7c45a0922fb0", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "catenaXId" : "urn:uuid:b9af12a4-2e90-4042-9476-04da79971726", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "catenaXId" : "urn:uuid:8163317a-7994-491e-84d3-08cf2c9dc27f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "catenaXId" : "urn:uuid:f396d33b-09bf-445d-9573-644ffa405693", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "catenaXId" : "urn:uuid:bada56cf-1256-4df7-8e86-4ef14e76860c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "catenaXId" : "urn:uuid:e965160a-73aa-4d89-b230-18fad11c9d83", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "catenaXId" : "urn:uuid:32fa4437-ac30-45fd-863e-2a0a218dc78e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "catenaXId" : "urn:uuid:63d12fa9-4fbd-4739-9064-5eaef0f1cd17", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "catenaXId" : "urn:uuid:bf9c22c9-758c-4119-8d91-0f760850f08c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -8030,19 +7946,19 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "955212", + "orderNumber" : "227352", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -8053,12 +7969,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "GB", - "referencedStandardID" : "5228", + "referencedStandardID" : "5682", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -8069,28 +7985,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -8105,7 +8021,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-919179362377079580444521", + "value" : "NO-201987510441217567632862", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -8116,7 +8032,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -8128,10 +8044,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "assetId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -8140,17 +8056,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:673c28c2-708b-433f-82db-56e61f8f66ca", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:5d0083b0-ffc7-4432-bf75-0643b15cbfcb", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -8159,17 +8075,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9f534261-dfb6-4baa-b8a7-ae313aa5b3ce", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:ff1db697-f654-4d63-875c-a0d6c83fcb05", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "childassetId" : "urn:uuid:cb70b9d1-d0a0-49b2-bc61-eda5b6a4ee80", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -8178,17 +8094,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0f89bb5e-a93f-4fdc-87be-2abf0129cc33", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:b0ef57d3-c5ff-4f05-a0eb-85d4ca70d926", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "childassetId" : "urn:uuid:f93c2d7f-ea73-410c-a0bf-7c45a0922fb0", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -8197,17 +8113,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:fac73553-c929-43c8-a4db-6a916522a098", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:e7c62e43-e4f6-43a5-9feb-f111fce490f8", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "childassetId" : "urn:uuid:b9af12a4-2e90-4042-9476-04da79971726", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -8216,17 +8132,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:796ea6f2-4b09-4674-87b0-ed3029417b95", + "ownerItemId" : "urn:uuid:d578e63b-2d52-48b3-a94a-08130b6bd0de", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "childassetId" : "urn:uuid:8163317a-7994-491e-84d3-08cf2c9dc27f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -8235,17 +8151,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d8f61b46-569f-4d31-9641-e545b5622dac", + "ownerItemId" : "urn:uuid:dbd7b439-f1ae-43b3-a8bc-e188fbd96614", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "childassetId" : "urn:uuid:f396d33b-09bf-445d-9573-644ffa405693", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -8254,17 +8170,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9dcd0291-a393-4234-b5e3-d4a9c275ac0b", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:f96fc238-c88c-446a-afc2-1421efe22093", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "childassetId" : "urn:uuid:bada56cf-1256-4df7-8e86-4ef14e76860c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -8273,17 +8189,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8a77c60e-723e-4d59-84ea-09144b28ff30", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:1cd0f980-b421-4013-9333-4ad987ac37f9", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "childassetId" : "urn:uuid:e965160a-73aa-4d89-b230-18fad11c9d83", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -8292,17 +8208,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:041a9a8b-b424-4f5d-8374-3f730d6313cf", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:ac714b43-5653-4525-9764-e1685128c944", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "childassetId" : "urn:uuid:32fa4437-ac30-45fd-863e-2a0a218dc78e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -8311,17 +8227,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0c2bd490-f173-4531-ab58-4f7a9a9888f3", + "ownerItemId" : "urn:uuid:15917e20-3a12-4eb3-82cb-28f02c0462b9", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "childassetId" : "urn:uuid:63d12fa9-4fbd-4739-9064-5eaef0f1cd17", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -8330,38 +8246,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ec6040d9-2a3c-46af-90d4-9644cc83bc9b", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:2e1c5ec5-d5e2-4332-9587-da58a2835fb3", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "childassetId" : "urn:uuid:bf9c22c9-758c-4119-8d91-0f760850f08c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -8587,7 +8485,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-919179362377079580444521", + "batteryIDDMCCode" : "NO-201987510441217567632862", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -8629,13 +8527,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2023-03-14", - "version" : 1.4, - "status" : "Approved" + "issueDate" : "2022-04-19", + "version" : 1.7, + "status" : "Draft" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6247, + "diameter" : 229.648, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -8643,22 +8541,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 15 + "value" : 16 } }, "commercial" : { - "placedOnMarket" : "2022-01-16", + "placedOnMarket" : "2021-04-20", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-919179362377079580444521", + "value" : "NO-201987510441217567632862", "key" : "PartInstanceID" } ], - "gtin" : " 45252906", + "gtin" : " 27769730", "additionalCode" : [ { "name" : "TARIC", - "value" : "696133927" + "value" : "816229662" } ] }, "sources" : { @@ -8680,7 +8578,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "SubstanceOfConcern", + "category" : "Safety", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -8709,7 +8607,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2023-03-29", + "date" : "2023-08-16", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -8725,9 +8623,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 0.2175 ] + "left" : [ 4.5095 ] }, - "id" : "TH5675" + "id" : "CS4138" } ] }, "additionalData" : [ { @@ -8753,9 +8651,9 @@ "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Manganese" + "name" : "Graphite" } ], - "critical" : [ "Nickel" ], + "critical" : [ "Manganese" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -8765,14 +8663,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 118 + "carbonContentTotal" : 119 }, "state" : "first life" }, "operation" : { "importer" : "BPNL00000003B2OM", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AVTH" } } @@ -8785,26 +8683,42 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItems" : [ ] } ], "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -9357,36 +9271,146 @@ "weight" : "0.11", "materialAbbreviation" : "SEL3321" } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] } ], - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "439214", + "orderNumber" : "964784", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "7990", + "referencedStandard" : "AS", + "referencedStandardID" : "7166", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -9395,10 +9419,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -9408,17 +9432,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -9426,7 +9450,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "assetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] } ], @@ -9443,9 +9467,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "partTypeInformation" : { - "manufacturerPartId" : "ZP-94", + "manufacturerPartId" : "CK-88", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -9453,17 +9477,17 @@ } ], "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -9473,31 +9497,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", + "parentItems" : [ { + "catenaXId" : "urn:uuid:29b47e6b-5f2b-401c-b868-efb2fe1779f9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:50a7db2d-2370-45db-99a0-1041c9f616fa", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "catenaXId" : "urn:uuid:cb70b9d1-d0a0-49b2-bc61-eda5b6a4ee80", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -9512,11 +9534,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-09-23", + "currentStateOfHealthTimestamp" : "2014-11-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -9526,35 +9548,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "catenaXId" : "urn:uuid:cb70b9d1-d0a0-49b2-bc61-eda5b6a4ee80", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "825197", + "orderNumber" : "433199", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 8 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "6699", + "referencedStandard" : "AISI", + "referencedStandardID" : "5931", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -9563,9 +9585,9 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { @@ -9576,17 +9598,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -9601,7 +9623,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-870119299818458530530204", + "value" : "NO-671324987876344500699840", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -9612,7 +9634,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "catenaXId" : "urn:uuid:cb70b9d1-d0a0-49b2-bc61-eda5b6a4ee80", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -9624,10 +9646,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "assetId" : "urn:uuid:cb70b9d1-d0a0-49b2-bc61-eda5b6a4ee80", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -9636,17 +9658,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ff6d56f4-ba0a-41a7-9eac-644afb77c476", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:23f94f77-6c6a-46cb-8d53-fe138edc73dc", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -9659,24 +9681,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -9902,7 +9906,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-870119299818458530530204", + "batteryIDDMCCode" : "NO-671324987876344500699840", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -9921,22 +9925,38 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:cb70b9d1-d0a0-49b2-bc61-eda5b6a4ee80", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cb70b9d1-d0a0-49b2-bc61-eda5b6a4ee80", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -9944,7 +9964,7 @@ "materialClass" : "8.1", "component" : [ { "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 64, + "recycledContent" : 32, "materialClass" : "8.1", "quantity" : { "unit" : "unit:percent", @@ -9954,25 +9974,25 @@ "materialAbbreviation" : "NCM" } ] } ], - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "284332", + "orderNumber" : "739105", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -9981,8 +10001,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "4702", + "referencedStandard" : "JIS", + "referencedStandardID" : "7745", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -9991,30 +10011,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -10022,7 +10042,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "assetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -10039,9 +10059,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "partTypeInformation" : { - "manufacturerPartId" : "PB-87", + "manufacturerPartId" : "VI-92", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -10049,17 +10069,17 @@ } ], "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "01", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -10069,31 +10089,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d3193d00-a5fd-4fa4-a1ea-c3bbae4ec5c5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b857d83b-24ba-4011-8670-afa57caee306", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "catenaXId" : "urn:uuid:f93c2d7f-ea73-410c-a0bf-7c45a0922fb0", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -10108,11 +10126,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-07-04", + "currentStateOfHealthTimestamp" : "2021-03-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -10122,35 +10140,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "catenaXId" : "urn:uuid:f93c2d7f-ea73-410c-a0bf-7c45a0922fb0", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "152028", + "orderNumber" : "862903", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "3992", + "referencedStandard" : "AS", + "referencedStandardID" : "8938", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -10161,28 +10179,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -10197,7 +10215,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-935980723922638521184633", + "value" : "NO-433039983976537226769763", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -10208,7 +10226,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "catenaXId" : "urn:uuid:f93c2d7f-ea73-410c-a0bf-7c45a0922fb0", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -10220,10 +10238,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "assetId" : "urn:uuid:f93c2d7f-ea73-410c-a0bf-7c45a0922fb0", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -10232,17 +10250,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:090a652a-eb82-4bd2-b922-9552d0dc119a", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:9b17bbe6-27c1-4d99-a1a5-bfb7d88c4bf1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -10255,24 +10273,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -10498,7 +10498,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-935980723922638521184633", + "batteryIDDMCCode" : "NO-433039983976537226769763", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -10517,31 +10517,193 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", - "customers" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f93c2d7f-ea73-410c-a0bf-7c45a0922fb0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f93c2d7f-ea73-410c-a0bf-7c45a0922fb0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "customers" : [ "BPNL00000003AYRE" ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 48, + "materialClass" : "8.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ] + } ], + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "636858", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "9082", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation" : { + "manufacturerPartId" : "VK-21", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bef2fb8c-c220-436a-bda5-6f75f90d3039", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "catenaXId" : "urn:uuid:b9af12a4-2e90-4042-9476-04da79971726", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -10556,11 +10718,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-12-23", + "currentStateOfHealthTimestamp" : "2023-05-22", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-03-31", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -10570,35 +10732,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "catenaXId" : "urn:uuid:b9af12a4-2e90-4042-9476-04da79971726", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "139981", + "orderNumber" : "514925", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "2416", + "referencedStandard" : "DIN", + "referencedStandardID" : "5519", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -10609,12 +10771,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -10630,7 +10792,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -10645,7 +10807,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-238580062345830034707563", + "value" : "NO-479198688158408022762058", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -10656,7 +10818,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "catenaXId" : "urn:uuid:b9af12a4-2e90-4042-9476-04da79971726", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -10668,10 +10830,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "assetId" : "urn:uuid:b9af12a4-2e90-4042-9476-04da79971726", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -10680,17 +10842,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9b2a9d07-362d-4280-b197-7560f8b83466", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:d2b4e541-a38f-4eb2-8803-81048ddf4094", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -10703,24 +10865,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -10946,7 +11090,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-238580062345830034707563", + "batteryIDDMCCode" : "NO-479198688158408022762058", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -10965,31 +11109,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b9af12a4-2e90-4042-9476-04da79971726", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b9af12a4-2e90-4042-9476-04da79971726", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "catenaXId" : "urn:uuid:8163317a-7994-491e-84d3-08cf2c9dc27f", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -11004,11 +11164,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-01-20", + "currentStateOfHealthTimestamp" : "2020-08-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-04", + "currentStateOfHealthTimestamp" : "2024-03-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -11018,14 +11178,14 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "catenaXId" : "urn:uuid:8163317a-7994-491e-84d3-08cf2c9dc27f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "595129", + "orderNumber" : "278990", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { @@ -11034,19 +11194,19 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "5497", + "referencedStandard" : "JASO", + "referencedStandardID" : "2803", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -11058,11 +11218,11 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -11072,13 +11232,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -11093,7 +11253,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-455702864631548437744445", + "value" : "NO-132833531716096180711426", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -11104,7 +11264,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "catenaXId" : "urn:uuid:8163317a-7994-491e-84d3-08cf2c9dc27f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -11119,7 +11279,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "assetId" : "urn:uuid:8163317a-7994-491e-84d3-08cf2c9dc27f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -11128,17 +11288,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:85e9413f-feb0-49ac-96eb-500434d4cd67", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:5ef1270f-e022-466f-81a5-a675db3c098e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -11151,24 +11311,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -11394,7 +11536,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-455702864631548437744445", + "batteryIDDMCCode" : "NO-132833531716096180711426", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -11413,31 +11555,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8163317a-7994-491e-84d3-08cf2c9dc27f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8163317a-7994-491e-84d3-08cf2c9dc27f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "catenaXId" : "urn:uuid:f396d33b-09bf-445d-9573-644ffa405693", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -11452,11 +11610,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-10-19", + "currentStateOfHealthTimestamp" : "2022-08-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-09", + "currentStateOfHealthTimestamp" : "2024-04-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -11466,35 +11624,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "catenaXId" : "urn:uuid:f396d33b-09bf-445d-9573-644ffa405693", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "585154", + "orderNumber" : "970553", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "5298", + "referencedStandard" : "IS", + "referencedStandardID" : "9662", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -11503,30 +11661,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -11541,7 +11699,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-979377149851032251466611", + "value" : "NO-292241856305076855775588", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -11552,7 +11710,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "catenaXId" : "urn:uuid:f396d33b-09bf-445d-9573-644ffa405693", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -11567,7 +11725,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "assetId" : "urn:uuid:f396d33b-09bf-445d-9573-644ffa405693", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -11576,17 +11734,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7c569605-cb6f-4c8a-8eea-023f57a54b2f", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:57ba17c9-e188-4d93-ae5d-f0905b6d7d87", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -11599,24 +11757,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -11842,7 +11982,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-979377149851032251466611", + "batteryIDDMCCode" : "NO-292241856305076855775588", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -11861,31 +12001,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f396d33b-09bf-445d-9573-644ffa405693", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f396d33b-09bf-445d-9573-644ffa405693", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "catenaXId" : "urn:uuid:bada56cf-1256-4df7-8e86-4ef14e76860c", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -11900,11 +12056,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-06-10", + "currentStateOfHealthTimestamp" : "2019-09-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -11914,23 +12070,23 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "catenaXId" : "urn:uuid:bada56cf-1256-4df7-8e86-4ef14e76860c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "659956", + "orderNumber" : "966102", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -11941,8 +12097,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "7569", + "referencedStandard" : "GB", + "referencedStandardID" : "5313", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -11953,28 +12109,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -11989,7 +12145,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-953337162480525054890231", + "value" : "NO-199218937729794417191306", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -12000,7 +12156,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "catenaXId" : "urn:uuid:bada56cf-1256-4df7-8e86-4ef14e76860c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -12012,10 +12168,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "assetId" : "urn:uuid:bada56cf-1256-4df7-8e86-4ef14e76860c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -12024,17 +12180,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6319ef3a-a750-460e-9dfb-11548c767ce3", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:edacd548-1ba2-4d65-bcee-57dd1c45efca", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -12047,24 +12203,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -12290,7 +12428,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-953337162480525054890231", + "batteryIDDMCCode" : "NO-199218937729794417191306", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -12309,31 +12447,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bada56cf-1256-4df7-8e86-4ef14e76860c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bada56cf-1256-4df7-8e86-4ef14e76860c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "catenaXId" : "urn:uuid:e965160a-73aa-4d89-b230-18fad11c9d83", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -12348,11 +12502,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-09-17", + "currentStateOfHealthTimestamp" : "2021-07-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthTimestamp" : "2024-03-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -12362,25 +12516,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "catenaXId" : "urn:uuid:e965160a-73aa-4d89-b230-18fad11c9d83", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "350434", + "orderNumber" : "22582", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -12389,8 +12543,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "5076", + "referencedStandard" : "ASME", + "referencedStandardID" : "9404", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -12401,7 +12555,7 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { @@ -12412,7 +12566,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -12437,7 +12591,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-283025147867584842633737", + "value" : "NO-797503102340948265815692", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -12448,7 +12602,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "catenaXId" : "urn:uuid:e965160a-73aa-4d89-b230-18fad11c9d83", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -12460,10 +12614,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "assetId" : "urn:uuid:e965160a-73aa-4d89-b230-18fad11c9d83", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -12472,17 +12626,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:227fc68c-8fcb-470e-b4b2-7d2a4306119a", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:86d2484e-6174-4143-93d1-665b80f0be14", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -12495,24 +12649,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -12738,7 +12874,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-283025147867584842633737", + "batteryIDDMCCode" : "NO-797503102340948265815692", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -12757,179 +12893,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 5, - "materialClass" : "8.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ] - } ], - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "bpnl" : "BPNL00000003B0Q0", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "367891", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 - }, - "bioBasedClass" : "gen1", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - } - }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Bluecert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "9726", - "materialNameStandardizedValue" : "PP-TD10" - }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : true, - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - } - }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - } - } - } - } - } ] - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "manufacturerId" : "BPNL00000003B0Q0", - "childItems" : [ ] - } ], - "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR", - "sites" : [ { - "catenaXsiteId" : "BPNS00000003B0Q0", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "partTypeInformation" : { - "manufacturerPartId" : "NF-25", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "Mirror left" - }, - "itemVersion" : "01" - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:e965160a-73aa-4d89-b230-18fad11c9d83", "partTypeInformation" : { - "ownerPartId" : "", - "partVersion" : "01", + "ownerPartId" : "8840374-09", + "partVersion" : "02", "itemCategory" : "component", - "partDescription" : "", + "partDescription" : "ZB ZELLE", "partClassification" : [ { - "value" : "", - "key" : "BPNL00000003B0Q0:PartFamily" + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], - "nameAtOwner" : "" + "nameAtOwner" : "ZB ZELLE" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:01a26bc3-e056-462d-a140-18143ef35552", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e965160a-73aa-4d89-b230-18fad11c9d83", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "catenaXId" : "urn:uuid:32fa4437-ac30-45fd-863e-2a0a218dc78e", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -12944,11 +12948,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-07-31", + "currentStateOfHealthTimestamp" : "2019-11-23", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthTimestamp" : "2024-03-09", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -12958,35 +12962,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "catenaXId" : "urn:uuid:32fa4437-ac30-45fd-863e-2a0a218dc78e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "859856", + "orderNumber" : "308012", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "5694", + "referencedStandard" : "ASME", + "referencedStandardID" : "4503", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -12995,30 +12999,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -13033,7 +13037,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-409479289986597261873689", + "value" : "NO-675038433261641027148171", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -13044,7 +13048,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "catenaXId" : "urn:uuid:32fa4437-ac30-45fd-863e-2a0a218dc78e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -13056,10 +13060,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "assetId" : "urn:uuid:32fa4437-ac30-45fd-863e-2a0a218dc78e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -13068,17 +13072,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e33f4ea9-6b55-43ce-95c1-2114aa644a79", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:05cc4fc7-83b5-40b3-acde-15628ccd27ab", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -13091,24 +13095,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -13334,7 +13320,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-409479289986597261873689", + "batteryIDDMCCode" : "NO-675038433261641027148171", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -13353,31 +13339,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:32fa4437-ac30-45fd-863e-2a0a218dc78e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:32fa4437-ac30-45fd-863e-2a0a218dc78e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "catenaXId" : "urn:uuid:63d12fa9-4fbd-4739-9064-5eaef0f1cd17", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -13392,11 +13394,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-04-13", + "currentStateOfHealthTimestamp" : "2019-08-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-03-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -13406,35 +13408,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "catenaXId" : "urn:uuid:63d12fa9-4fbd-4739-9064-5eaef0f1cd17", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "545341", + "orderNumber" : "678439", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 9 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "4845", + "referencedStandard" : "JASO", + "referencedStandardID" : "9065", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -13445,28 +13447,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -13481,7 +13483,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-927504595898056099855081", + "value" : "NO-490203710993131773561088", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -13492,7 +13494,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "catenaXId" : "urn:uuid:63d12fa9-4fbd-4739-9064-5eaef0f1cd17", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -13507,7 +13509,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "assetId" : "urn:uuid:63d12fa9-4fbd-4739-9064-5eaef0f1cd17", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -13516,17 +13518,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:23dcadc5-48a6-44c2-ab39-a0f7df4c3673", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:136df96d-e72c-4700-9b93-4f04680d7237", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -13539,24 +13541,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -13782,7 +13766,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-927504595898056099855081", + "batteryIDDMCCode" : "NO-490203710993131773561088", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -13801,31 +13785,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:63d12fa9-4fbd-4739-9064-5eaef0f1cd17", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:63d12fa9-4fbd-4739-9064-5eaef0f1cd17", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "catenaXId" : "urn:uuid:bf9c22c9-758c-4119-8d91-0f760850f08c", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -13840,11 +13840,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-11-12", + "currentStateOfHealthTimestamp" : "2023-04-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthTimestamp" : "2024-03-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -13854,35 +13854,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "catenaXId" : "urn:uuid:bf9c22c9-758c-4119-8d91-0f760850f08c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "953322", + "orderNumber" : "451523", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "7532", + "referencedStandard" : "DIN", + "referencedStandardID" : "4114", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -13893,7 +13893,7 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { @@ -13908,13 +13908,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -13929,7 +13929,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-235015725608216527525071", + "value" : "NO-946429514730639817233206", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -13940,7 +13940,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "catenaXId" : "urn:uuid:bf9c22c9-758c-4119-8d91-0f760850f08c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -13952,10 +13952,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "assetId" : "urn:uuid:bf9c22c9-758c-4119-8d91-0f760850f08c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -13964,17 +13964,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2992debd-b624-4e10-a8b0-14d75bacb06e", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:b43f7e1b-17cb-4eef-ae5d-0f68680592b4", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -13987,24 +13987,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -14230,7 +14212,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-235015725608216527525071", + "batteryIDDMCCode" : "NO-946429514730639817233206", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -14249,28 +14231,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bf9c22c9-758c-4119-8d91-0f760850f08c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bf9c22c9-758c-4119-8d91-0f760850f08c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 85, + "recycledContent" : 18, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -14280,7 +14278,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 22, + "recycledContent" : 13, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -14290,7 +14288,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 42, + "recycledContent" : 72, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -14301,112 +14299,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "catenaXId" : "urn:uuid:b5c85c28-5132-45dc-b9df-12b15bca2f02", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "catenaXId" : "urn:uuid:5bb47c9b-8d30-46f9-9c30-2931dbcdd853", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "catenaXId" : "urn:uuid:4baf4aed-459d-4920-ac99-56bed0fb08ef", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "catenaXId" : "urn:uuid:ad4b6fce-52a1-4276-a2fc-01c653b9629a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "catenaXId" : "urn:uuid:7ba844f7-10dd-47d5-a132-239415b29e84", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "catenaXId" : "urn:uuid:73e5e6c2-776e-4b01-b414-0b5365090593", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "catenaXId" : "urn:uuid:ba6432e2-0178-4ec4-a9f8-ce64d8599ecf", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "catenaXId" : "urn:uuid:f363788a-032b-45fe-956d-054e984df5dd", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "catenaXId" : "urn:uuid:1fd263f4-adf3-46a5-b024-90609d83a609", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "catenaXId" : "urn:uuid:812935f4-88f3-447d-9cf1-e8bbf09af03d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -14414,10 +14412,10 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "257733", + "orderNumber" : "578439", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -14426,23 +14424,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "8201", + "referencedStandard" : "ASME", + "referencedStandardID" : "4036", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -14454,11 +14452,11 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -14468,13 +14466,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -14489,7 +14487,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-838322959839811561036246", + "value" : "NO-296848907669508648073521", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -14500,7 +14498,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -14512,10 +14510,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "assetId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -14524,17 +14522,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:237a08cc-a748-4328-a1a3-26fce5b741ec", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:11900cf4-6f35-4296-a7cc-317fdcfcec7e", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -14543,17 +14541,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1a880c81-c570-4f23-86bd-dd1663ba5005", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:4f1b4967-c756-472c-9164-dea7a2dece4c", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "childassetId" : "urn:uuid:b5c85c28-5132-45dc-b9df-12b15bca2f02", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -14562,17 +14560,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8178eeef-1938-42bd-bae0-b36c1ef2955b", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:5c189ac2-1df5-46fd-bf9d-054b28e71b21", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "childassetId" : "urn:uuid:5bb47c9b-8d30-46f9-9c30-2931dbcdd853", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -14581,17 +14579,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0a095fba-2240-4a3e-99e8-2a131d955aa8", + "ownerItemId" : "urn:uuid:6df10f4a-1ee1-4a01-8078-af6b076ae8a9", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "childassetId" : "urn:uuid:4baf4aed-459d-4920-ac99-56bed0fb08ef", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -14600,17 +14598,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e74b82c3-238d-4183-a09d-9aefe69ff2a1", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:648ede6c-eabf-4e84-82b6-19090a2c3c8c", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "childassetId" : "urn:uuid:ad4b6fce-52a1-4276-a2fc-01c653b9629a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -14619,17 +14617,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c4071f3c-ace8-422a-bb4d-24f525ec4205", + "ownerItemId" : "urn:uuid:3092eaf6-e1ac-47cc-9a00-e37675249c9b", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "childassetId" : "urn:uuid:7ba844f7-10dd-47d5-a132-239415b29e84", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -14638,17 +14636,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4637ad73-e6cb-4d46-9969-bb072fa94ce4", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:32e7d5e1-b4f6-46ab-ab26-440b2db24ed2", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "childassetId" : "urn:uuid:73e5e6c2-776e-4b01-b414-0b5365090593", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -14657,17 +14655,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0b3b77b9-bebb-4b19-9c57-ec03c29e084b", + "ownerItemId" : "urn:uuid:83391cc7-6df3-41c3-ae7a-50d1470beacd", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "childassetId" : "urn:uuid:ba6432e2-0178-4ec4-a9f8-ce64d8599ecf", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -14676,17 +14674,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c113691e-5a5b-4dd4-92f9-4770d88aa2ae", + "ownerItemId" : "urn:uuid:7fd827aa-76c9-4472-b913-85cbc0a3426d", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "childassetId" : "urn:uuid:f363788a-032b-45fe-956d-054e984df5dd", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -14695,17 +14693,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:dc4d46c1-3254-4655-85df-ade73fdd2276", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:ebf2e6c9-532b-4e9f-a20b-a6805f84b7a6", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "childassetId" : "urn:uuid:1fd263f4-adf3-46a5-b024-90609d83a609", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -14714,38 +14712,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4487104c-2670-48c8-821f-95bb06d457e4", + "ownerItemId" : "urn:uuid:e260189c-f15a-4cdb-8675-9d786ccfe276", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "childassetId" : "urn:uuid:812935f4-88f3-447d-9cf1-e8bbf09af03d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -14971,7 +14951,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-838322959839811561036246", + "batteryIDDMCCode" : "NO-296848907669508648073521", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -15013,13 +14993,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2022-10-11", - "version" : 1.7, - "status" : "Approved" + "issueDate" : "2024-03-27", + "version" : 1.3, + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6942, + "diameter" : 229.6654, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -15027,22 +15007,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 16 + "value" : 19 } }, "commercial" : { - "placedOnMarket" : "2021-12-17", + "placedOnMarket" : "2023-04-26", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-838322959839811561036246", + "value" : "NO-296848907669508648073521", "key" : "PartInstanceID" } ], - "gtin" : " 97227772", + "gtin" : " 64708173", "additionalCode" : [ { "name" : "TARIC", - "value" : "636715904" + "value" : "679731400" } ] }, "sources" : { @@ -15064,7 +15044,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Compliance", + "category" : "Passport", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -15093,12 +15073,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2023-04-26", + "date" : "2024-03-30", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : true, + "reusablePackaging" : false, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -15109,9 +15089,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 6.5069 ] + "left" : [ 1.2501 ] }, - "id" : "YQ8580" + "id" : "VX5486" } ] }, "additionalData" : [ { @@ -15137,9 +15117,9 @@ "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "UV Varnish" + "name" : "Nickel" } ], - "critical" : [ "Cobalt" ], + "critical" : [ "Lithium" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -15149,14 +15129,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 118 + "carbonContentTotal" : 123 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003B2OM", "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", + "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AVTH" } } @@ -15169,31 +15149,843 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "customers" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "customers" : [ "BPNL00000003AVTH" ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + } ], + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "424794", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "1018", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", + "manufacturerId" : "BPNL00000003AXS3", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", + "partTypeInformation" : { + "manufacturerPartId" : "FQ-22", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ac1d3a10-e889-4c60-aae5-12c1f84574ae", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "catenaXId" : "urn:uuid:b5c85c28-5132-45dc-b9df-12b15bca2f02", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -15208,11 +16000,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-01-16", + "currentStateOfHealthTimestamp" : "2020-02-03", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-17", + "currentStateOfHealthTimestamp" : "2024-03-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -15222,10 +16014,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "catenaXId" : "urn:uuid:b5c85c28-5132-45dc-b9df-12b15bca2f02", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "904375", + "orderNumber" : "780497", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -15234,13 +16026,13 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 23 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -15249,8 +16041,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "2364", + "referencedStandard" : "AS", + "referencedStandardID" : "3831", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -15259,20 +16051,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -15282,7 +16074,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -15297,7 +16089,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-663073156093039453892485", + "value" : "NO-016339537790317629674230", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -15308,7 +16100,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "catenaXId" : "urn:uuid:b5c85c28-5132-45dc-b9df-12b15bca2f02", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -15320,10 +16112,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "assetId" : "urn:uuid:b5c85c28-5132-45dc-b9df-12b15bca2f02", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -15332,17 +16124,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:30d3e983-f90e-4392-9d12-d30ba1b6c9ed", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:23300b37-04fd-46ce-88f3-0c5622f1482d", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -15355,24 +16147,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -15598,7 +16372,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-663073156093039453892485", + "batteryIDDMCCode" : "NO-016339537790317629674230", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -15617,31 +16391,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b5c85c28-5132-45dc-b9df-12b15bca2f02", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b5c85c28-5132-45dc-b9df-12b15bca2f02", + "parentItems" : [ { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "catenaXId" : "urn:uuid:5bb47c9b-8d30-46f9-9c30-2931dbcdd853", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -15656,11 +16446,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-02-07", + "currentStateOfHealthTimestamp" : "2017-08-29", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -15670,35 +16460,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "catenaXId" : "urn:uuid:5bb47c9b-8d30-46f9-9c30-2931dbcdd853", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "421491", + "orderNumber" : "617335", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "1098", + "referencedStandard" : "ISO", + "referencedStandardID" : "5572", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -15707,30 +16497,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -15745,7 +16535,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-816234871234575434175023", + "value" : "NO-617981988528419498927484", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -15756,7 +16546,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "catenaXId" : "urn:uuid:5bb47c9b-8d30-46f9-9c30-2931dbcdd853", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -15768,10 +16558,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "assetId" : "urn:uuid:5bb47c9b-8d30-46f9-9c30-2931dbcdd853", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -15780,17 +16570,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:adee468e-b4ac-449d-bd1d-af91c0ef97b8", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:ff6b698a-c95c-48af-b98f-eb37de88e386", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -15803,24 +16593,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -16046,7 +16818,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-816234871234575434175023", + "batteryIDDMCCode" : "NO-617981988528419498927484", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -16065,31 +16837,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5bb47c9b-8d30-46f9-9c30-2931dbcdd853", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5bb47c9b-8d30-46f9-9c30-2931dbcdd853", + "parentItems" : [ { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "catenaXId" : "urn:uuid:4baf4aed-459d-4920-ac99-56bed0fb08ef", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -16104,11 +16892,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-04-26", + "currentStateOfHealthTimestamp" : "2020-05-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-06", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -16118,14 +16906,14 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "catenaXId" : "urn:uuid:4baf4aed-459d-4920-ac99-56bed0fb08ef", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "779982", + "orderNumber" : "199017", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { @@ -16134,7 +16922,7 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -16145,8 +16933,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "6142", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "4070", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -16155,30 +16943,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -16193,7 +16981,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-738268322111071992512022", + "value" : "NO-320853368171916289548897", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -16204,7 +16992,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "catenaXId" : "urn:uuid:4baf4aed-459d-4920-ac99-56bed0fb08ef", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -16219,7 +17007,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "assetId" : "urn:uuid:4baf4aed-459d-4920-ac99-56bed0fb08ef", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -16228,17 +17016,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b54255d5-26c1-439f-9fed-cc1234d85a7c", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:0ac61e73-f600-495a-b962-96b24d8bfc5e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -16251,24 +17039,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -16494,7 +17264,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-738268322111071992512022", + "batteryIDDMCCode" : "NO-320853368171916289548897", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -16513,31 +17283,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4baf4aed-459d-4920-ac99-56bed0fb08ef", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4baf4aed-459d-4920-ac99-56bed0fb08ef", + "parentItems" : [ { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "catenaXId" : "urn:uuid:ad4b6fce-52a1-4276-a2fc-01c653b9629a", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -16552,11 +17338,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-12-12", + "currentStateOfHealthTimestamp" : "2021-01-05", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthTimestamp" : "2024-04-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -16566,35 +17352,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "catenaXId" : "urn:uuid:ad4b6fce-52a1-4276-a2fc-01c653b9629a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "873620", + "orderNumber" : "576227", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 8 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "6215", + "referencedStandard" : "EN", + "referencedStandardID" : "7473", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -16605,18 +17391,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -16626,7 +17412,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -16641,7 +17427,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-321442052139648020241062", + "value" : "NO-992341679513676507660096", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -16652,7 +17438,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "catenaXId" : "urn:uuid:ad4b6fce-52a1-4276-a2fc-01c653b9629a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -16664,10 +17450,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "assetId" : "urn:uuid:ad4b6fce-52a1-4276-a2fc-01c653b9629a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -16676,17 +17462,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6f120025-b053-4ce1-baad-62df174f0b12", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:3172f576-8253-435a-87ad-a48cdd29723c", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -16699,24 +17485,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -16942,7 +17710,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-321442052139648020241062", + "batteryIDDMCCode" : "NO-992341679513676507660096", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -16961,31 +17729,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ad4b6fce-52a1-4276-a2fc-01c653b9629a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ad4b6fce-52a1-4276-a2fc-01c653b9629a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "catenaXId" : "urn:uuid:7ba844f7-10dd-47d5-a132-239415b29e84", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -17000,11 +17784,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-10-04", + "currentStateOfHealthTimestamp" : "2021-01-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthTimestamp" : "2024-03-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -17014,35 +17798,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "catenaXId" : "urn:uuid:7ba844f7-10dd-47d5-a132-239415b29e84", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "175377", + "orderNumber" : "984724", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "9620", + "referencedStandard" : "AISI", + "referencedStandardID" : "5298", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -17053,28 +17837,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -17089,7 +17873,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-114516443320856885894272", + "value" : "NO-073655130038141205508570", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -17100,7 +17884,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "catenaXId" : "urn:uuid:7ba844f7-10dd-47d5-a132-239415b29e84", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -17115,7 +17899,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "assetId" : "urn:uuid:7ba844f7-10dd-47d5-a132-239415b29e84", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -17124,17 +17908,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f7fb4221-398c-4445-8392-1f52a7bf6263", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:bb06b413-855e-413f-9e1b-54dd39cac74c", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -17147,24 +17931,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -17390,7 +18156,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-114516443320856885894272", + "batteryIDDMCCode" : "NO-073655130038141205508570", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -17409,31 +18175,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7ba844f7-10dd-47d5-a132-239415b29e84", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7ba844f7-10dd-47d5-a132-239415b29e84", + "parentItems" : [ { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "catenaXId" : "urn:uuid:73e5e6c2-776e-4b01-b414-0b5365090593", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -17448,11 +18230,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-02-09", + "currentStateOfHealthTimestamp" : "2019-04-02", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -17462,25 +18244,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "catenaXId" : "urn:uuid:73e5e6c2-776e-4b01-b414-0b5365090593", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "968582", + "orderNumber" : "752771", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 24 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -17489,8 +18271,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "2601", + "referencedStandard" : "DIN", + "referencedStandardID" : "9966", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -17499,24 +18281,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -17537,7 +18319,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-202860084166978430348394", + "value" : "NO-261194026953093506440422", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -17548,7 +18330,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "catenaXId" : "urn:uuid:73e5e6c2-776e-4b01-b414-0b5365090593", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -17560,10 +18342,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "assetId" : "urn:uuid:73e5e6c2-776e-4b01-b414-0b5365090593", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -17572,17 +18354,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:11a35756-0df2-4e6f-8360-a615062cd546", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:51b4982d-27f8-4eb7-b7eb-0e536da78e6b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -17595,24 +18377,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -17838,7 +18602,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-202860084166978430348394", + "batteryIDDMCCode" : "NO-261194026953093506440422", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -17857,31 +18621,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:73e5e6c2-776e-4b01-b414-0b5365090593", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:73e5e6c2-776e-4b01-b414-0b5365090593", + "parentItems" : [ { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "catenaXId" : "urn:uuid:ba6432e2-0178-4ec4-a9f8-ce64d8599ecf", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -17896,11 +18676,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-05-30", + "currentStateOfHealthTimestamp" : "2023-03-15", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-03-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -17910,10 +18690,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "catenaXId" : "urn:uuid:ba6432e2-0178-4ec4-a9f8-ce64d8599ecf", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "745299", + "orderNumber" : "245263", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -17922,23 +18702,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "GB", - "referencedStandardID" : "3571", + "referencedStandardID" : "1279", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -17947,14 +18727,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -17964,13 +18744,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -17985,7 +18765,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-494374901619716039791371", + "value" : "NO-535611923072661018387594", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -17996,7 +18776,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "catenaXId" : "urn:uuid:ba6432e2-0178-4ec4-a9f8-ce64d8599ecf", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -18011,7 +18791,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "assetId" : "urn:uuid:ba6432e2-0178-4ec4-a9f8-ce64d8599ecf", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -18020,17 +18800,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:34462397-5903-4a4a-9c39-257ac4d690e6", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:c4169336-58cb-4b88-8c4a-742dd218d240", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -18043,24 +18823,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -18286,7 +19048,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-494374901619716039791371", + "batteryIDDMCCode" : "NO-535611923072661018387594", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -18305,31 +19067,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ba6432e2-0178-4ec4-a9f8-ce64d8599ecf", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ba6432e2-0178-4ec4-a9f8-ce64d8599ecf", + "parentItems" : [ { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "catenaXId" : "urn:uuid:f363788a-032b-45fe-956d-054e984df5dd", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -18344,11 +19122,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-10-04", + "currentStateOfHealthTimestamp" : "2021-10-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthTimestamp" : "2024-03-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -18358,19 +19136,19 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "catenaXId" : "urn:uuid:f363788a-032b-45fe-956d-054e984df5dd", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "429296", + "orderNumber" : "145129", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -18385,8 +19163,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "1645", + "referencedStandard" : "ISO", + "referencedStandardID" : "8379", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -18397,28 +19175,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -18433,7 +19211,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-794467681195929992255435", + "value" : "NO-484647398722946442239604", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -18444,7 +19222,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "catenaXId" : "urn:uuid:f363788a-032b-45fe-956d-054e984df5dd", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -18459,7 +19237,7 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "assetId" : "urn:uuid:f363788a-032b-45fe-956d-054e984df5dd", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -18468,17 +19246,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8e862982-2150-453e-8229-654d52d3cd65", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:b5b4d66b-5bb0-43b3-a71d-3ed357f35997", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -18491,24 +19269,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -18734,7 +19494,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-794467681195929992255435", + "batteryIDDMCCode" : "NO-484647398722946442239604", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -18753,31 +19513,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f363788a-032b-45fe-956d-054e984df5dd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f363788a-032b-45fe-956d-054e984df5dd", + "parentItems" : [ { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "catenaXId" : "urn:uuid:1fd263f4-adf3-46a5-b024-90609d83a609", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -18792,11 +19568,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-04-11", + "currentStateOfHealthTimestamp" : "2021-12-22", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -18806,25 +19582,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "catenaXId" : "urn:uuid:1fd263f4-adf3-46a5-b024-90609d83a609", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "144745", + "orderNumber" : "320740", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -18834,7 +19610,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "DIN", - "referencedStandardID" : "7152", + "referencedStandardID" : "4457", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -18846,17 +19622,17 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -18866,7 +19642,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -18881,7 +19657,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-034590603053687442399458", + "value" : "NO-813080145802249908284610", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -18892,7 +19668,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "catenaXId" : "urn:uuid:1fd263f4-adf3-46a5-b024-90609d83a609", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -18904,10 +19680,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "assetId" : "urn:uuid:1fd263f4-adf3-46a5-b024-90609d83a609", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -18916,17 +19692,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4283681d-1881-4219-ba87-e2bc0caa933b", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:9750034c-1fb4-4d0e-b62c-5f5379b42692", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -18939,24 +19715,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -19182,7 +19940,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-034590603053687442399458", + "batteryIDDMCCode" : "NO-813080145802249908284610", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -19201,31 +19959,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1fd263f4-adf3-46a5-b024-90609d83a609", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1fd263f4-adf3-46a5-b024-90609d83a609", + "parentItems" : [ { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "catenaXId" : "urn:uuid:812935f4-88f3-447d-9cf1-e8bbf09af03d", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -19240,11 +20014,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-03-08", + "currentStateOfHealthTimestamp" : "2016-06-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -19254,25 +20028,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "catenaXId" : "urn:uuid:812935f4-88f3-447d-9cf1-e8bbf09af03d", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "876397", + "orderNumber" : "301653", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -19281,8 +20055,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "9888", + "referencedStandard" : "AS", + "referencedStandardID" : "9654", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -19293,28 +20067,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -19329,7 +20103,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-616535750451374596363638", + "value" : "NO-959547848200732624330573", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -19340,7 +20114,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "catenaXId" : "urn:uuid:812935f4-88f3-447d-9cf1-e8bbf09af03d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -19355,7 +20129,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "assetId" : "urn:uuid:812935f4-88f3-447d-9cf1-e8bbf09af03d", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -19364,17 +20138,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:dd9de3f8-aa2d-4cf6-b047-fd58b7327057", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:e52b885d-4b07-4601-b06f-3cac1bd2b9a1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -19387,24 +20161,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -19630,7 +20386,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-616535750451374596363638", + "batteryIDDMCCode" : "NO-959547848200732624330573", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -19649,28 +20405,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:812935f4-88f3-447d-9cf1-e8bbf09af03d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:812935f4-88f3-447d-9cf1-e8bbf09af03d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 47, + "recycledContent" : 18, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -19680,7 +20452,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 47, + "recycledContent" : 18, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -19690,7 +20462,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 22, + "recycledContent" : 34, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -19701,112 +20473,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "catenaXId" : "urn:uuid:6da0ff5b-0056-4015-9381-eb43fc5bb130", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "catenaXId" : "urn:uuid:061758e1-2df1-4236-871c-68b03ddfd92e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "catenaXId" : "urn:uuid:d7f728a6-631d-4fc3-a829-6bd45f67cd04", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "catenaXId" : "urn:uuid:523a4415-cb70-4dc6-a891-9b9eba082262", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "catenaXId" : "urn:uuid:d9c6b8e2-0b23-4f3d-8779-255250809255", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "catenaXId" : "urn:uuid:efd11666-d3cb-45ce-8328-ae903382ccc2", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "catenaXId" : "urn:uuid:70dead91-c6a2-4cbc-b149-d6765b27ba01", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", + "catenaXId" : "urn:uuid:2532244b-095d-4c98-be88-bd85af8ebe00", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "catenaXId" : "urn:uuid:f5e98435-2432-4ee9-a454-b3d42a2c689d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", + "catenaXId" : "urn:uuid:851edce8-7720-40e3-8a96-08e34882ed4e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -19814,35 +20586,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "45913", + "orderNumber" : "543484", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "1869", + "referencedStandard" : "ASME", + "referencedStandardID" : "8090", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -19858,23 +20630,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -19889,7 +20661,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-757418965725956072308711", + "value" : "NO-444049960239880933393726", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -19900,7 +20672,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -19915,7 +20687,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "assetId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -19924,17 +20696,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:80223f49-7d96-423f-b359-43ca533684f3", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:b098587e-4dcb-4f0a-b09e-847e41451684", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -19943,17 +20715,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d0b73988-05f1-4457-98da-cd5afc4bcdaa", + "ownerItemId" : "urn:uuid:33e5ddba-bbb7-45c8-9c61-0bc54da15d3a", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "childassetId" : "urn:uuid:6da0ff5b-0056-4015-9381-eb43fc5bb130", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -19962,17 +20734,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:dfeddda1-3f79-46dc-97d1-165cf02ed355", + "ownerItemId" : "urn:uuid:4dde962c-7816-435d-81d9-ea473a07a7b7", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "childassetId" : "urn:uuid:061758e1-2df1-4236-871c-68b03ddfd92e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -19981,17 +20753,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7ac77862-aeea-4613-9a60-a44ee96a2de6", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:3d68807c-7d77-4f88-91f9-fd428b229416", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "childassetId" : "urn:uuid:d7f728a6-631d-4fc3-a829-6bd45f67cd04", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -20000,17 +20772,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d767f979-c2ff-4609-bc6c-0504129a99cc", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:0b3ea14f-d88a-4191-978f-bf806f70e852", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "childassetId" : "urn:uuid:523a4415-cb70-4dc6-a891-9b9eba082262", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -20019,17 +20791,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:84c058c5-83fb-4b6d-b971-ae9c9efc9995", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:ade35156-34f2-4b07-8109-93126201fe68", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "childassetId" : "urn:uuid:d9c6b8e2-0b23-4f3d-8779-255250809255", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -20038,17 +20810,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d3f548b3-47cd-42e1-9972-b64deb3f5ae2", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:eeb981f4-d293-4739-8ef5-f1ce8d21270a", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "childassetId" : "urn:uuid:efd11666-d3cb-45ce-8328-ae903382ccc2", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -20057,17 +20829,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7011d5bc-bbfb-4d22-981a-2f90607db71c", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:212c6232-1724-4d86-8e0c-549c8f2dde23", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "childassetId" : "urn:uuid:70dead91-c6a2-4cbc-b149-d6765b27ba01", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -20076,17 +20848,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b4a3840e-e9cf-42f8-8d08-49010ad2e780", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:257d4edd-b970-4c07-acfb-2f9827d28f71", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", + "childassetId" : "urn:uuid:2532244b-095d-4c98-be88-bd85af8ebe00", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -20095,17 +20867,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a000e83f-e975-4979-919c-bd75199d653e", + "ownerItemId" : "urn:uuid:bac9d2f9-df65-4a56-b09d-73103edc7a55", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "childassetId" : "urn:uuid:f5e98435-2432-4ee9-a454-b3d42a2c689d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -20114,38 +20886,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c31a4a71-f96a-4e58-9ad6-462dc39a9be0", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:c4c1d1fe-f709-476d-88d5-be9748915e15", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", + "childassetId" : "urn:uuid:851edce8-7720-40e3-8a96-08e34882ed4e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -20371,7 +21125,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-757418965725956072308711", + "batteryIDDMCCode" : "NO-444049960239880933393726", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -20413,13 +21167,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2022-07-01", - "version" : 1.6, - "status" : "Invalid" + "issueDate" : "2022-07-29", + "version" : 2.1, + "status" : "Draft" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6343, + "diameter" : 229.6556, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -20431,18 +21185,18 @@ } }, "commercial" : { - "placedOnMarket" : "2021-07-24", + "placedOnMarket" : "2020-12-26", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-757418965725956072308711", + "value" : "NO-444049960239880933393726", "key" : "PartInstanceID" } ], - "gtin" : " 14004109", + "gtin" : " 20693494", "additionalCode" : [ { "name" : "TARIC", - "value" : "263852104" + "value" : "675346905" } ] }, "sources" : { @@ -20464,7 +21218,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", + "category" : "Passport", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -20493,7 +21247,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-02-04", + "date" : "2023-02-24", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -20509,9 +21263,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 6.181 ] + "left" : [ 0.549 ] }, - "id" : "GB2917" + "id" : "NH4168" } ] }, "additionalData" : [ { @@ -20537,7 +21291,7 @@ "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Cobalt" + "name" : "Nickel" } ], "critical" : [ "Graphite" ], "carbonFootprint" : { @@ -20549,12 +21303,12 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 109 + "carbonContentTotal" : 118 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003AYRE", "manufacturer" : { "facilityId" : "BPNL00000003B2OM", "manufacturerId" : "BPNL00000003AVTH" @@ -20569,939 +21323,939 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", - "childItems" : [ ] - } ], - "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", + "catenaXId" : "urn:uuid:6da0ff5b-0056-4015-9381-eb43fc5bb130", + "childItems" : [ { + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "unit" : "unit:piece", + "value" : 20 }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-09-06", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-31", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:6da0ff5b-0056-4015-9381-eb43fc5bb130", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "913477", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "8777", + "materialNameStandardizedValue" : "PP-TD10" }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-914378285285794559596331", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:6da0ff5b-0056-4015-9381-eb43fc5bb130", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "04" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:6da0ff5b-0056-4015-9381-eb43fc5bb130", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" + }, + "ownerItemId" : "urn:uuid:3a5f66b2-f430-4bec-b6a3-e8affe192ba2", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } + }, + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" + } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" + } }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", + "dateOfManufacturing" : "2023-03-07" + }, + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-914378285285794559596331", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" + }, + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" + } ], + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6da0ff5b-0056-4015-9381-eb43fc5bb130", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6da0ff5b-0056-4015-9381-eb43fc5bb130", + "parentItems" : [ { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "isOnlyPotentialParent" : false, "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "unit" : "unit:piece", + "value" : 20 }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "customers" : [ "BPNL00000003AYRE" ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:061758e1-2df1-4236-871c-68b03ddfd92e", + "childItems" : [ { + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "unit" : "unit:piece", + "value" : 20 }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-03-26", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-23", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:061758e1-2df1-4236-871c-68b03ddfd92e", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "167513", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "7350", + "materialNameStandardizedValue" : "PP-TD10" }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-208079010497383150143341", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:061758e1-2df1-4236-871c-68b03ddfd92e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "02" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:061758e1-2df1-4236-871c-68b03ddfd92e", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" + }, + "ownerItemId" : "urn:uuid:ece2d65b-6c3f-46cd-a98e-d9862eb0478c", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 + } + } ], + "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { + "electrochemicalProperties" : { + "ratedCapacity" : 210, + "batteryEnergy" : { + "energyRoundtripEfficiencyChange" : 67, + "maximumAllowedBatteryEnergy" : 90000, + "energyRoundtripEfficiency" : 56 }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, + "batteryVoltage" : { + "nominalVoltage" : 4.3, + "maxVoltage" : 6, + "minVoltage" : 2.04 }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "internalResistance" : { + "cellInternalResistance" : 45, + "packInternalResistance" : 67, + "packInternalResistanceIncrease" : 23 }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "capacityThresholdExhaustion" : 23, + "batteryPower" : { + "originalPowerCapability" : -1.7976931348623157E308, + "powerFade" : 23, + "originalPowerCapabilityLimits" : -1.7976931348623157E308, + "maximumAllowedBatteryPower" : -1.7976931348623157E308, + "powerCapabilityAt20Charge" : -1.7976931348623157E308, + "powerCapabilityAt80Charge" : -1.7976931348623157E308 }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - } ], - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", - "bpnl" : "BPNL00000003AXS3", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "478965", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "capacityFade" : 34 + }, + "document" : { + "responsibleSourcing" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "LlN" + } ], + "packagingInstructions" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "eOMtThyhVNLWUZNRcBaQKxI" + } ], + "transportationInstructions" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" + } ], + "vehicleDismantlingProcedure" : [ { + "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", + "title" : "JxkyvRnL" + } ], + "testReportsResults" : [ { + "fileLocation" : "telnet://192.0.2.16:80/", + "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" + } ], + "batteryDismantlingProcedure" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "RYtGKbgicZaHCBRQDSx" + } ], + "safetyMeasures" : [ { + "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", + "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" + } ], + "declarationOfConformity" : [ { + "fileLocation" : "http://www.wikipedia.org", + "title" : "dpHYZGhtgdntugzvvKAXLhM" + } ] + }, + "datePlacedOnMarket" : "2023-03-14", + "cellChemistry" : { + "anodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "anodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeCompositionOther" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "electrolyteComposition" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "recyclateContentActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "cathodeActiveMaterials" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ] + }, + "physicalDimensions" : { + "diameter" : 3, + "length" : 20000, + "width" : 1000, + "weight" : 1007, + "height" : 1 + }, + "temperatureRangeIdleState" : { + "temperatureRangeIdleStateUpperLimit" : 67, + "temperatureRangeIdleStateLowerLimit" : 67 + }, + "batteryCycleLife" : { + "cycleLifeTestCRate" : 45, + "expectedLifetime" : 456, + "cycleLifeTestDepthOfDischarge" : 23 + }, + "manufacturer" : { + "address" : { + "country" : { + "shortName" : "XB-1M" }, - "bioBasedClass" : "gen3", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" } }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Yellowcert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "9356", - "materialNameStandardizedValue" : "PP-TD10" + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : true, - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "name" : "Company A" + }, + "warrantyPeriod" : 60, + "composition" : { + "components" : { + "componentsSupplier" : [ { + "componentsSupplierName" : "XY Corporation", + "address" : { + "country" : { + "shortName" : "" }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" } }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - } + "contact" : { + "website" : "https://www.samsung.com", + "phoneNumber" : "+49 89 1234567890", + "faxNumber" : "+49 89 0987654321", + "email" : "test.mail@example.com" } + } ], + "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + }, + "compositionOfBattery" : [ { + "materialName" : "Graphite", + "materialWeight" : 2.5, + "materialPercentageMassFraction" : 19 + } ], + "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" + }, + "manufacturing" : { + "address" : { + "country" : { + "shortName" : "RG-8" + }, + "premise" : { + "technicalKey" : "BUILDING", + "value" : "Werk 1" + }, + "postalDeliveryPoint" : { + "technicalKey" : "INTERURBAN_DELIVERY_POINT", + "value" : "Tor 1" + }, + "locality" : { + "technicalKey" : "BLOCK", + "value" : "Mannheim" + }, + "postCode" : { + "technicalKey" : "CEDEX", + "value" : "68161-12" + }, + "thoroughfare" : { + "number" : "45", + "technicalKey" : "STREET", + "value" : "Bernstraße" } - } - } ] - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", - "manufacturerId" : "BPNL00000003AXS3", - "childItems" : [ ] - } ], - "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR", - "sites" : [ { - "catenaXsiteId" : "BPNS00000003AXS3", - "function" : "production" - } ] + }, + "dateOfManufacturing" : "2023-03-07" }, - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", - "partTypeInformation" : { - "manufacturerPartId" : "LV-64", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "Mirror left" + "batteryIdentification" : { + "batteryIDDMCCode" : "NO-208079010497383150143341", + "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", + "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, - "itemVersion" : "03" + "stateOfBattery" : { + "stateOfCharge" : 23, + "stateOfHealth" : 12, + "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + }, + "cO2FootprintTotal" : 124 + } ], + "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } ], + "productType" : "cell" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:061758e1-2df1-4236-871c-68b03ddfd92e", "partTypeInformation" : { - "ownerPartId" : "", - "partVersion" : "03", + "ownerPartId" : "8840374-09", + "partVersion" : "02", "itemCategory" : "component", - "partDescription" : "", + "partDescription" : "ZB ZELLE", "partClassification" : [ { - "value" : "", - "key" : "BPNL00000003AXS3:PartFamily" + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], - "nameAtOwner" : "" + "nameAtOwner" : "ZB ZELLE" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", - "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:77d765dc-1725-4fa0-850f-14ff4d221640", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:061758e1-2df1-4236-871c-68b03ddfd92e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "catenaXId" : "urn:uuid:d7f728a6-631d-4fc3-a829-6bd45f67cd04", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -21516,11 +22270,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-10-10", + "currentStateOfHealthTimestamp" : "2016-02-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -21530,35 +22284,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "catenaXId" : "urn:uuid:d7f728a6-631d-4fc3-a829-6bd45f67cd04", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "187290", + "orderNumber" : "575743", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "5718", + "referencedStandard" : "GB", + "referencedStandardID" : "3375", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -21567,14 +22321,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -21584,13 +22338,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -21605,7 +22359,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-196750260355920905784672", + "value" : "NO-186835878158661663948625", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -21616,7 +22370,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "catenaXId" : "urn:uuid:d7f728a6-631d-4fc3-a829-6bd45f67cd04", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -21631,7 +22385,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "assetId" : "urn:uuid:d7f728a6-631d-4fc3-a829-6bd45f67cd04", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -21640,17 +22394,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6975d17d-ad2e-4f27-a09a-7a8c146b67ef", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:c7cc2cb2-f310-4d5b-8ea7-d1993a983919", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -21663,24 +22417,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -21906,7 +22642,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-196750260355920905784672", + "batteryIDDMCCode" : "NO-186835878158661663948625", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -21925,31 +22661,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d7f728a6-631d-4fc3-a829-6bd45f67cd04", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d7f728a6-631d-4fc3-a829-6bd45f67cd04", + "parentItems" : [ { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "catenaXId" : "urn:uuid:523a4415-cb70-4dc6-a891-9b9eba082262", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -21964,11 +22716,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-06-24", + "currentStateOfHealthTimestamp" : "2018-01-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-05", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -21978,19 +22730,19 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "catenaXId" : "urn:uuid:523a4415-cb70-4dc6-a891-9b9eba082262", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "52305", + "orderNumber" : "942180", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -22001,12 +22753,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "7544", + "referencedStandard" : "DIN", + "referencedStandardID" : "3641", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -22015,9 +22767,9 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { @@ -22028,17 +22780,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -22053,7 +22805,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-851192230441246681631253", + "value" : "NO-469066644573312236590150", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -22064,7 +22816,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "catenaXId" : "urn:uuid:523a4415-cb70-4dc6-a891-9b9eba082262", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -22079,7 +22831,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "assetId" : "urn:uuid:523a4415-cb70-4dc6-a891-9b9eba082262", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -22088,17 +22840,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:15dbcdd6-dd2d-45ad-aac1-734e616a03bf", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:b2631602-ff50-4172-acd4-73edba87c4bc", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -22111,24 +22863,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -22354,7 +23088,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-851192230441246681631253", + "batteryIDDMCCode" : "NO-469066644573312236590150", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -22373,31 +23107,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:523a4415-cb70-4dc6-a891-9b9eba082262", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:523a4415-cb70-4dc6-a891-9b9eba082262", + "parentItems" : [ { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "catenaXId" : "urn:uuid:d9c6b8e2-0b23-4f3d-8779-255250809255", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -22412,11 +23162,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-09-11", + "currentStateOfHealthTimestamp" : "2021-08-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -22426,35 +23176,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "catenaXId" : "urn:uuid:d9c6b8e2-0b23-4f3d-8779-255250809255", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "564965", + "orderNumber" : "867471", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "ASME", - "referencedStandardID" : "3263", + "referencedStandardID" : "6158", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -22463,20 +23213,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -22486,7 +23236,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -22501,7 +23251,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-561731599817906783111770", + "value" : "NO-968294246751594821198186", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -22512,7 +23262,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "catenaXId" : "urn:uuid:d9c6b8e2-0b23-4f3d-8779-255250809255", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -22524,10 +23274,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "assetId" : "urn:uuid:d9c6b8e2-0b23-4f3d-8779-255250809255", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -22536,17 +23286,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:129f667e-3c6f-401c-88cc-2ba08ba8e90f", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:d1423f91-b0a7-407f-bc1c-bec69b6de9c3", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -22559,24 +23309,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -22802,7 +23534,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-561731599817906783111770", + "batteryIDDMCCode" : "NO-968294246751594821198186", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -22821,31 +23553,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d9c6b8e2-0b23-4f3d-8779-255250809255", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d9c6b8e2-0b23-4f3d-8779-255250809255", + "parentItems" : [ { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "catenaXId" : "urn:uuid:efd11666-d3cb-45ce-8328-ae903382ccc2", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -22860,11 +23608,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-04-15", + "currentStateOfHealthTimestamp" : "2022-06-29", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -22874,35 +23622,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "catenaXId" : "urn:uuid:efd11666-d3cb-45ce-8328-ae903382ccc2", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "429757", + "orderNumber" : "459727", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "8870", + "referencedStandard" : "ASME", + "referencedStandardID" : "5320", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -22911,14 +23659,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -22928,13 +23676,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -22949,7 +23697,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-601684402916676295378875", + "value" : "NO-727859505217916052545732", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -22960,7 +23708,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "catenaXId" : "urn:uuid:efd11666-d3cb-45ce-8328-ae903382ccc2", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -22972,10 +23720,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "assetId" : "urn:uuid:efd11666-d3cb-45ce-8328-ae903382ccc2", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -22984,17 +23732,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2b3628a7-4249-484d-bc58-666402b64cbe", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:59d6d094-960a-44b6-b441-7ccb46480079", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -23007,24 +23755,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -23250,7 +23980,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-601684402916676295378875", + "batteryIDDMCCode" : "NO-727859505217916052545732", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -23269,31 +23999,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:efd11666-d3cb-45ce-8328-ae903382ccc2", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:efd11666-d3cb-45ce-8328-ae903382ccc2", + "parentItems" : [ { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "catenaXId" : "urn:uuid:70dead91-c6a2-4cbc-b149-d6765b27ba01", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -23308,7 +24054,7 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-12-13", + "currentStateOfHealthTimestamp" : "2021-07-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { @@ -23322,25 +24068,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "catenaXId" : "urn:uuid:70dead91-c6a2-4cbc-b149-d6765b27ba01", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "106891", + "orderNumber" : "673193", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -23349,8 +24095,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "7770", + "referencedStandard" : "DIN", + "referencedStandardID" : "7857", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -23359,30 +24105,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -23397,7 +24143,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-220579398527605828592786", + "value" : "NO-634147692982310270951905", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -23408,7 +24154,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "catenaXId" : "urn:uuid:70dead91-c6a2-4cbc-b149-d6765b27ba01", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -23420,10 +24166,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "assetId" : "urn:uuid:70dead91-c6a2-4cbc-b149-d6765b27ba01", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -23432,17 +24178,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2c866b62-ebb6-441f-abb8-2e5a48f094a2", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:b13e9347-a6f3-4e47-907e-db6e1e883ed3", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -23455,24 +24201,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -23698,7 +24426,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-220579398527605828592786", + "batteryIDDMCCode" : "NO-634147692982310270951905", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -23717,31 +24445,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:70dead91-c6a2-4cbc-b149-d6765b27ba01", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:70dead91-c6a2-4cbc-b149-d6765b27ba01", + "parentItems" : [ { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "catenaXId" : "urn:uuid:2532244b-095d-4c98-be88-bd85af8ebe00", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -23756,11 +24500,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-08-20", + "currentStateOfHealthTimestamp" : "2016-10-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-01", + "currentStateOfHealthTimestamp" : "2024-03-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -23770,35 +24514,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "catenaXId" : "urn:uuid:2532244b-095d-4c98-be88-bd85af8ebe00", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "970794", + "orderNumber" : "856245", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "3631", + "referencedStandard" : "AISI", + "referencedStandardID" : "1743", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -23807,10 +24551,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -23830,7 +24574,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -23845,7 +24589,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-989896312164316486011352", + "value" : "NO-313782703750602425316051", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -23856,7 +24600,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "catenaXId" : "urn:uuid:2532244b-095d-4c98-be88-bd85af8ebe00", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -23868,10 +24612,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "assetId" : "urn:uuid:2532244b-095d-4c98-be88-bd85af8ebe00", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -23880,17 +24624,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:20916d3d-c2e1-472b-83ba-7a22b30ff252", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:934481a9-89d6-448e-beeb-6d4f9a67341e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -23903,24 +24647,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -24146,7 +24872,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-989896312164316486011352", + "batteryIDDMCCode" : "NO-313782703750602425316051", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -24165,31 +24891,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2532244b-095d-4c98-be88-bd85af8ebe00", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2532244b-095d-4c98-be88-bd85af8ebe00", + "parentItems" : [ { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "catenaXId" : "urn:uuid:f5e98435-2432-4ee9-a454-b3d42a2c689d", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -24204,11 +24946,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-09-14", + "currentStateOfHealthTimestamp" : "2021-03-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -24218,25 +24960,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "catenaXId" : "urn:uuid:f5e98435-2432-4ee9-a454-b3d42a2c689d", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "603324", + "orderNumber" : "934441", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -24246,7 +24988,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "DIN", - "referencedStandardID" : "4498", + "referencedStandardID" : "7487", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -24255,10 +24997,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -24268,17 +25010,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -24293,7 +25035,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-668413753586612912737466", + "value" : "NO-810796015857366550760177", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -24304,7 +25046,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "catenaXId" : "urn:uuid:f5e98435-2432-4ee9-a454-b3d42a2c689d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -24316,10 +25058,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "assetId" : "urn:uuid:f5e98435-2432-4ee9-a454-b3d42a2c689d", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -24328,17 +25070,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:18550a52-d54c-49e1-b977-2f8a33051998", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:94e8e6e1-dbac-493a-a431-b45bb289a8f4", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -24351,24 +25093,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -24594,7 +25318,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-668413753586612912737466", + "batteryIDDMCCode" : "NO-810796015857366550760177", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -24613,201 +25337,15 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", - "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-06-12", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-02-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ], - "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "533786", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 - }, - "bioBasedClass" : "gen2", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - } - }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Yellowcert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "7404", - "materialNameStandardizedValue" : "PP-TD10" - }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : false, - "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - } - }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - } - } - } - } - } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-573889269137330790927065", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "01" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:b4fd6b8c-9210-49ad-9633-86dea8229898", - "itemVersion" : "04", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", + "catenaXId" : "urn:uuid:f5e98435-2432-4ee9-a454-b3d42a2c689d", "partTypeInformation" : { "ownerPartId" : "8840374-09", - "partVersion" : "01", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "ZB ZELLE", "partClassification" : [ { @@ -24817,275 +25355,29 @@ "nameAtOwner" : "ZB ZELLE" } } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f5e98435-2432-4ee9-a454-b3d42a2c689d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-573889269137330790927065", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", - "customers" : [ { "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "catenaXId" : "urn:uuid:851edce8-7720-40e3-8a96-08e34882ed4e", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -25100,11 +25392,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-03-27", + "currentStateOfHealthTimestamp" : "2018-10-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -25114,25 +25406,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "catenaXId" : "urn:uuid:851edce8-7720-40e3-8a96-08e34882ed4e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "288513", + "orderNumber" : "786179", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -25141,8 +25433,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "9298", + "referencedStandard" : "JASO", + "referencedStandardID" : "1499", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -25153,12 +25445,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -25168,13 +25460,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -25189,7 +25481,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-548985088263485891029251", + "value" : "NO-282429356471879113475504", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -25200,7 +25492,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "catenaXId" : "urn:uuid:851edce8-7720-40e3-8a96-08e34882ed4e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -25212,10 +25504,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "assetId" : "urn:uuid:851edce8-7720-40e3-8a96-08e34882ed4e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -25224,17 +25516,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:88cd2bda-e15b-4b2f-ac30-7d1f734f22fc", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:53424c66-d131-4209-a901-3be0dafbeb8e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -25247,24 +25539,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -25490,7 +25764,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-548985088263485891029251", + "batteryIDDMCCode" : "NO-282429356471879113475504", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -25509,201 +25783,15 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", - "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-02-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-02-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ], - "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "117589", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 - }, - "bioBasedClass" : "gen2", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 - } - }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Redcert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "4089", - "materialNameStandardizedValue" : "PP-TD10" - }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : true, - "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - } - }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 - } - } - } - } - } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-905223916160251431905990", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "03" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:5f1b604b-bfce-4875-9577-5ea764d1e380", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", + "catenaXId" : "urn:uuid:851edce8-7720-40e3-8a96-08e34882ed4e", "partTypeInformation" : { "ownerPartId" : "8840374-09", - "partVersion" : "03", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "ZB ZELLE", "partClassification" : [ { @@ -25713,272 +25801,26 @@ "nameAtOwner" : "ZB ZELLE" } } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:851edce8-7720-40e3-8a96-08e34882ed4e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-905223916160251431905990", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", - "customers" : [ { "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 72, + "recycledContent" : 43, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -25988,7 +25830,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 47, + "recycledContent" : 56, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -25998,7 +25840,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 24, + "recycledContent" : 66, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -26009,112 +25851,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "catenaXId" : "urn:uuid:68ac7b42-4df7-4b66-8d24-3fb6bdbcbd6f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "catenaXId" : "urn:uuid:6e857fcc-a35b-4c55-8bf9-89a7dd27ed5e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "catenaXId" : "urn:uuid:72673c26-1202-40d1-877e-730591c2d487", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "catenaXId" : "urn:uuid:4ed1b940-4612-406a-ae64-1c119d92eed3", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "catenaXId" : "urn:uuid:b6b0f84f-1134-488a-8be9-1b25f35b534b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "catenaXId" : "urn:uuid:1f831d99-4a1a-44bb-8805-72f67ac33beb", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "catenaXId" : "urn:uuid:2a13488f-acbc-4784-8f20-11c096dc1d31", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "catenaXId" : "urn:uuid:ca209f5f-d454-4473-882a-9231f44ac3ad", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "catenaXId" : "urn:uuid:04117576-bc8d-45e4-a3d3-55edf8198ecb", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "catenaXId" : "urn:uuid:549fce25-6c7e-43cc-ad59-6d39992f9bf1", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -26122,35 +25964,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "948584", + "orderNumber" : "990380", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "4179", + "referencedStandard" : "JASO", + "referencedStandardID" : "5074", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -26159,30 +26001,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -26197,7 +26039,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-883610489267919397198041", + "value" : "NO-004408690175782905965278", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -26208,7 +26050,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -26220,10 +26062,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "assetId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -26232,17 +26074,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:964a163a-2bf0-4777-8155-79c675c4c576", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:35ae017a-4617-47ed-8672-619fddb9e9aa", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -26251,17 +26093,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:804f7b43-0ad9-47ec-bab9-4c16a3097999", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:3ee5caac-4893-48d9-954a-cb7006d01e11", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "childassetId" : "urn:uuid:68ac7b42-4df7-4b66-8d24-3fb6bdbcbd6f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -26270,17 +26112,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:16da91d1-50f8-491f-972b-b678de36973d", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:fa09d078-deb8-4542-851c-baaa1a97dfc8", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "childassetId" : "urn:uuid:6e857fcc-a35b-4c55-8bf9-89a7dd27ed5e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -26289,17 +26131,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f24fd8bc-8e8c-4ded-af59-71001eda2efd", + "ownerItemId" : "urn:uuid:e0e2a832-0e90-451b-ab53-185691c8040e", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "childassetId" : "urn:uuid:72673c26-1202-40d1-877e-730591c2d487", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -26308,17 +26150,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a144cf41-dace-416d-a063-312c148fbb00", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:43f8e02f-48a2-49e7-88e6-7d2bc315df06", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "childassetId" : "urn:uuid:4ed1b940-4612-406a-ae64-1c119d92eed3", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -26327,17 +26169,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:78fac256-ef9b-4c39-9731-1d23972dbf7e", + "ownerItemId" : "urn:uuid:2b3c9bec-e091-44b6-b810-4e2501b0f520", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "childassetId" : "urn:uuid:b6b0f84f-1134-488a-8be9-1b25f35b534b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -26346,17 +26188,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4b8c898d-96a2-4c77-83f3-15eaa25e9c56", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:580bfb76-278d-4bba-8e75-d78aeda6e43d", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "childassetId" : "urn:uuid:1f831d99-4a1a-44bb-8805-72f67ac33beb", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -26365,17 +26207,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2f9907f8-8d78-4c98-b627-14d40b90f64a", + "ownerItemId" : "urn:uuid:88418c7e-20a6-4bae-ae96-3aeb52c75a4c", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "childassetId" : "urn:uuid:2a13488f-acbc-4784-8f20-11c096dc1d31", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -26384,17 +26226,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:71ca0891-49a6-4095-9eec-1512a1e32a01", + "ownerItemId" : "urn:uuid:60900c59-4155-438d-9a04-599901ae75e0", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "childassetId" : "urn:uuid:ca209f5f-d454-4473-882a-9231f44ac3ad", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -26403,17 +26245,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:26705c57-e946-4965-b203-1ca0e893edf5", + "ownerItemId" : "urn:uuid:2b501e75-9c06-4b99-a544-7b6eb320958a", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "childassetId" : "urn:uuid:04117576-bc8d-45e4-a3d3-55edf8198ecb", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -26422,38 +26264,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:de2242ff-f394-425d-90fb-519986cc0f9e", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:f0597a67-f2e4-4fea-bc80-845e36a9db72", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "childassetId" : "urn:uuid:549fce25-6c7e-43cc-ad59-6d39992f9bf1", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -26679,7 +26503,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-883610489267919397198041", + "batteryIDDMCCode" : "NO-004408690175782905965278", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -26721,13 +26545,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2022-05-31", - "version" : 2.9, - "status" : "Approved" + "issueDate" : "2020-07-04", + "version" : 1.9, + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.658, + "diameter" : 229.6711, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -26735,22 +26559,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 19 + "value" : 17 } }, "commercial" : { - "placedOnMarket" : "2020-05-21", + "placedOnMarket" : "2020-05-22", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-883610489267919397198041", + "value" : "NO-004408690175782905965278", "key" : "PartInstanceID" } ], - "gtin" : " 78139498", + "gtin" : " 83161972", "additionalCode" : [ { "name" : "TARIC", - "value" : "567980732" + "value" : "208440030" } ] }, "sources" : { @@ -26772,7 +26596,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Sustainability", + "category" : "Safety", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -26801,7 +26625,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2023-04-24", + "date" : "2021-02-17", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -26817,9 +26641,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 1.2616 ] + "left" : [ 1.6594 ] }, - "id" : "HP4995" + "id" : "TQ9835" } ] }, "additionalData" : [ { @@ -26845,9 +26669,9 @@ "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Aluminium" + "name" : "Sealant" } ], - "critical" : [ "Nickel" ], + "critical" : [ "Graphite" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -26857,14 +26681,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 118 + "carbonContentTotal" : 116 }, "state" : "first life" }, "operation" : { "importer" : "BPNL00000003B2OM", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003AXS3", "manufacturerId" : "BPNL00000003AVTH" } } @@ -26877,31 +26701,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "catenaXId" : "urn:uuid:68ac7b42-4df7-4b66-8d24-3fb6bdbcbd6f", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -26916,11 +26756,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-06-23", + "currentStateOfHealthTimestamp" : "2023-03-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-18", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -26930,35 +26770,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "catenaXId" : "urn:uuid:68ac7b42-4df7-4b66-8d24-3fb6bdbcbd6f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "466131", + "orderNumber" : "973375", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "8863", + "referencedStandard" : "EN", + "referencedStandardID" : "4251", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -26969,28 +26809,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -27005,7 +26845,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-864415204672012382995251", + "value" : "NO-957187015679612885785906", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -27016,7 +26856,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "catenaXId" : "urn:uuid:68ac7b42-4df7-4b66-8d24-3fb6bdbcbd6f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -27028,10 +26868,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "assetId" : "urn:uuid:68ac7b42-4df7-4b66-8d24-3fb6bdbcbd6f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -27040,17 +26880,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:072bb6c2-1eb4-4e56-abee-b9fb5bc1abb3", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:e46c1bbb-6c7b-4854-bfc8-ed7f76454904", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -27063,24 +26903,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -27306,7 +27128,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-864415204672012382995251", + "batteryIDDMCCode" : "NO-957187015679612885785906", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -27325,31 +27147,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:68ac7b42-4df7-4b66-8d24-3fb6bdbcbd6f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:68ac7b42-4df7-4b66-8d24-3fb6bdbcbd6f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "catenaXId" : "urn:uuid:6e857fcc-a35b-4c55-8bf9-89a7dd27ed5e", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -27364,11 +27202,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-05-05", + "currentStateOfHealthTimestamp" : "2016-01-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -27378,23 +27216,23 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "catenaXId" : "urn:uuid:6e857fcc-a35b-4c55-8bf9-89a7dd27ed5e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "661427", + "orderNumber" : "170077", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, @@ -27405,8 +27243,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "8111", + "referencedStandard" : "AISI", + "referencedStandardID" : "5514", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -27418,21 +27256,21 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -27453,7 +27291,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-493676181103178298845139", + "value" : "NO-760592533179373962741529", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -27464,7 +27302,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "catenaXId" : "urn:uuid:6e857fcc-a35b-4c55-8bf9-89a7dd27ed5e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -27476,10 +27314,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "assetId" : "urn:uuid:6e857fcc-a35b-4c55-8bf9-89a7dd27ed5e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -27488,17 +27326,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5e37e292-0127-4167-9f4f-cb99076b0b4d", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:466e8c96-ed23-4769-b2e1-8acd9fdae728", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -27511,24 +27349,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -27754,7 +27574,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-493676181103178298845139", + "batteryIDDMCCode" : "NO-760592533179373962741529", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -27773,31 +27593,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6e857fcc-a35b-4c55-8bf9-89a7dd27ed5e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6e857fcc-a35b-4c55-8bf9-89a7dd27ed5e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "catenaXId" : "urn:uuid:72673c26-1202-40d1-877e-730591c2d487", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -27812,11 +27648,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-09-22", + "currentStateOfHealthTimestamp" : "2016-12-23", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -27826,35 +27662,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "catenaXId" : "urn:uuid:72673c26-1202-40d1-877e-730591c2d487", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "366897", + "orderNumber" : "478567", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "1132", + "referencedStandard" : "ISO", + "referencedStandardID" : "3841", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -27863,30 +27699,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -27901,7 +27737,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-791018505140292878166021", + "value" : "NO-708297363451953472023890", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -27912,7 +27748,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "catenaXId" : "urn:uuid:72673c26-1202-40d1-877e-730591c2d487", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -27927,7 +27763,7 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "assetId" : "urn:uuid:72673c26-1202-40d1-877e-730591c2d487", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -27936,17 +27772,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:75b068da-aa67-4e6a-b520-481221293bc6", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:f27a10d4-41a3-4457-a901-fe9817072661", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -27959,24 +27795,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -28202,7 +28020,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-791018505140292878166021", + "batteryIDDMCCode" : "NO-708297363451953472023890", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -28221,31 +28039,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:72673c26-1202-40d1-877e-730591c2d487", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:72673c26-1202-40d1-877e-730591c2d487", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "catenaXId" : "urn:uuid:4ed1b940-4612-406a-ae64-1c119d92eed3", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -28260,11 +28094,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-12-22", + "currentStateOfHealthTimestamp" : "2021-11-07", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -28274,25 +28108,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "catenaXId" : "urn:uuid:4ed1b940-4612-406a-ae64-1c119d92eed3", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "815598", + "orderNumber" : "719423", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -28301,8 +28135,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "8846", + "referencedStandard" : "EN", + "referencedStandardID" : "2943", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -28318,23 +28152,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -28349,7 +28183,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-136928786987253017532224", + "value" : "NO-029529278592433295756746", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -28360,7 +28194,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "catenaXId" : "urn:uuid:4ed1b940-4612-406a-ae64-1c119d92eed3", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -28372,10 +28206,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "assetId" : "urn:uuid:4ed1b940-4612-406a-ae64-1c119d92eed3", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -28384,17 +28218,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2ddf726b-1c8d-4254-8b95-f2382d10158a", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:24b4ed13-2f46-4af3-baf0-73346fcf32b1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -28407,24 +28241,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -28650,7 +28466,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-136928786987253017532224", + "batteryIDDMCCode" : "NO-029529278592433295756746", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -28669,31 +28485,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4ed1b940-4612-406a-ae64-1c119d92eed3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4ed1b940-4612-406a-ae64-1c119d92eed3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "catenaXId" : "urn:uuid:b6b0f84f-1134-488a-8be9-1b25f35b534b", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -28708,11 +28540,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthTimestamp" : "2022-07-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-02", + "currentStateOfHealthTimestamp" : "2024-04-01", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -28722,14 +28554,14 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "catenaXId" : "urn:uuid:b6b0f84f-1134-488a-8be9-1b25f35b534b", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "267061", + "orderNumber" : "573030", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { @@ -28738,9 +28570,9 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -28750,7 +28582,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "ASME", - "referencedStandardID" : "4880", + "referencedStandardID" : "2758", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -28762,27 +28594,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -28797,7 +28629,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-823948286883766869040317", + "value" : "NO-830575760219801993867025", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -28808,7 +28640,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "catenaXId" : "urn:uuid:b6b0f84f-1134-488a-8be9-1b25f35b534b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -28823,7 +28655,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "assetId" : "urn:uuid:b6b0f84f-1134-488a-8be9-1b25f35b534b", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -28832,17 +28664,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:296d4b41-5468-48c4-9c08-b016c8ecf54f", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:4b677509-4fdb-4ef1-9217-29aaf591adae", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -28855,24 +28687,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -29098,7 +28912,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-823948286883766869040317", + "batteryIDDMCCode" : "NO-830575760219801993867025", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -29117,31 +28931,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b6b0f84f-1134-488a-8be9-1b25f35b534b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b6b0f84f-1134-488a-8be9-1b25f35b534b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "catenaXId" : "urn:uuid:1f831d99-4a1a-44bb-8805-72f67ac33beb", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -29156,11 +28986,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-07-10", + "currentStateOfHealthTimestamp" : "2018-11-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -29170,19 +29000,19 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "catenaXId" : "urn:uuid:1f831d99-4a1a-44bb-8805-72f67ac33beb", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "589990", + "orderNumber" : "200739", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -29193,12 +29023,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "7657", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7340", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -29209,7 +29039,7 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { @@ -29220,11 +29050,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -29245,7 +29075,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-587471081576721367794244", + "value" : "NO-684184848273081919696221", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -29256,7 +29086,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "catenaXId" : "urn:uuid:1f831d99-4a1a-44bb-8805-72f67ac33beb", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -29268,10 +29098,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "assetId" : "urn:uuid:1f831d99-4a1a-44bb-8805-72f67ac33beb", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -29280,17 +29110,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5a48df90-7b8a-4b95-9344-52eca9965050", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:1be8fa2e-abad-456c-a3a3-6cacb8c383a6", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -29303,24 +29133,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -29546,7 +29358,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-587471081576721367794244", + "batteryIDDMCCode" : "NO-684184848273081919696221", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -29565,31 +29377,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1f831d99-4a1a-44bb-8805-72f67ac33beb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1f831d99-4a1a-44bb-8805-72f67ac33beb", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "catenaXId" : "urn:uuid:2a13488f-acbc-4784-8f20-11c096dc1d31", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -29604,11 +29432,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-12-19", + "currentStateOfHealthTimestamp" : "2021-03-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-18", + "currentStateOfHealthTimestamp" : "2024-03-18", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -29618,25 +29446,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "catenaXId" : "urn:uuid:2a13488f-acbc-4784-8f20-11c096dc1d31", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "523416", + "orderNumber" : "862379", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -29645,8 +29473,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "1489", + "referencedStandard" : "IS", + "referencedStandardID" : "3506", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -29655,10 +29483,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -29668,7 +29496,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -29678,7 +29506,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -29693,7 +29521,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-109272763412992271485457", + "value" : "NO-039223807230856042953836", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -29704,7 +29532,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "catenaXId" : "urn:uuid:2a13488f-acbc-4784-8f20-11c096dc1d31", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -29719,7 +29547,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "assetId" : "urn:uuid:2a13488f-acbc-4784-8f20-11c096dc1d31", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -29728,17 +29556,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:295e2d27-7c8c-4e5a-81dd-5c530b21c778", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:03859396-dcec-4aa9-89f2-9ac6893bdf2b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -29751,24 +29579,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -29994,7 +29804,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-109272763412992271485457", + "batteryIDDMCCode" : "NO-039223807230856042953836", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -30013,31 +29823,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2a13488f-acbc-4784-8f20-11c096dc1d31", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2a13488f-acbc-4784-8f20-11c096dc1d31", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "catenaXId" : "urn:uuid:ca209f5f-d454-4473-882a-9231f44ac3ad", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -30052,11 +29878,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-08-11", + "currentStateOfHealthTimestamp" : "2021-10-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-13", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -30066,10 +29892,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "catenaXId" : "urn:uuid:ca209f5f-d454-4473-882a-9231f44ac3ad", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "604789", + "orderNumber" : "379502", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -30078,23 +29904,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "1043", + "referencedStandard" : "DIN", + "referencedStandardID" : "6140", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -30103,30 +29929,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -30141,7 +29967,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-148715251312244684318074", + "value" : "NO-347116735745663646665615", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -30152,7 +29978,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "catenaXId" : "urn:uuid:ca209f5f-d454-4473-882a-9231f44ac3ad", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -30167,7 +29993,7 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "assetId" : "urn:uuid:ca209f5f-d454-4473-882a-9231f44ac3ad", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -30176,17 +30002,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c576a060-ff25-4a2f-b542-34d06030c193", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:8facbc20-1048-48e2-8c07-61c8ce56eb7f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -30199,24 +30025,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -30442,7 +30250,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-148715251312244684318074", + "batteryIDDMCCode" : "NO-347116735745663646665615", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -30461,31 +30269,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ca209f5f-d454-4473-882a-9231f44ac3ad", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ca209f5f-d454-4473-882a-9231f44ac3ad", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "catenaXId" : "urn:uuid:04117576-bc8d-45e4-a3d3-55edf8198ecb", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -30500,11 +30324,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-10-27", + "currentStateOfHealthTimestamp" : "2022-05-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-05", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -30514,35 +30338,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "catenaXId" : "urn:uuid:04117576-bc8d-45e4-a3d3-55edf8198ecb", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "111210", + "orderNumber" : "637159", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "1999", + "referencedStandard" : "GB", + "referencedStandardID" : "2077", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -30551,10 +30375,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -30568,13 +30392,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -30589,7 +30413,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-080480141948547472036219", + "value" : "NO-945021193800451566340978", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -30600,7 +30424,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "catenaXId" : "urn:uuid:04117576-bc8d-45e4-a3d3-55edf8198ecb", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -30615,7 +30439,7 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "assetId" : "urn:uuid:04117576-bc8d-45e4-a3d3-55edf8198ecb", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -30624,17 +30448,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:dcf94afa-e965-4435-8341-c5489012be59", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:08e6d207-18a9-4474-a62f-f8d12cd9e314", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -30647,24 +30471,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -30890,7 +30696,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-080480141948547472036219", + "batteryIDDMCCode" : "NO-945021193800451566340978", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -30909,31 +30715,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:04117576-bc8d-45e4-a3d3-55edf8198ecb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:04117576-bc8d-45e4-a3d3-55edf8198ecb", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "catenaXId" : "urn:uuid:549fce25-6c7e-43cc-ad59-6d39992f9bf1", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -30948,11 +30770,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2018-02-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -30962,25 +30784,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "catenaXId" : "urn:uuid:549fce25-6c7e-43cc-ad59-6d39992f9bf1", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "721267", + "orderNumber" : "932852", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -30989,8 +30811,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "1845", + "referencedStandard" : "ASME", + "referencedStandardID" : "9882", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -30999,20 +30821,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -31022,7 +30844,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -31037,7 +30859,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-671408531894681437693915", + "value" : "NO-484325548258551080620438", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -31048,7 +30870,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "catenaXId" : "urn:uuid:549fce25-6c7e-43cc-ad59-6d39992f9bf1", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -31060,10 +30882,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "assetId" : "urn:uuid:549fce25-6c7e-43cc-ad59-6d39992f9bf1", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -31072,17 +30894,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d0c68643-a52f-41ae-9b3f-387e41741101", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:cc0200a4-a4b3-4d73-bc75-307311119f9b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -31095,24 +30917,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -31338,7 +31142,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-671408531894681437693915", + "batteryIDDMCCode" : "NO-484325548258551080620438", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -31357,28 +31161,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:549fce25-6c7e-43cc-ad59-6d39992f9bf1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:549fce25-6c7e-43cc-ad59-6d39992f9bf1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 31, + "recycledContent" : 49, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -31388,7 +31208,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 79, + "recycledContent" : 14, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -31398,7 +31218,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 48, + "recycledContent" : 52, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -31409,112 +31229,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "catenaXId" : "urn:uuid:58874991-6fc3-4c00-a4d5-a75a8faf6ad6", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "catenaXId" : "urn:uuid:356cf8c0-d8e7-4270-b1e9-21d2698279fb", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "catenaXId" : "urn:uuid:5d10c142-3928-49d4-a6d8-a9fbe7961c7e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "catenaXId" : "urn:uuid:17798e72-be09-461e-90e1-afe8459c88e3", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "catenaXId" : "urn:uuid:1152698a-9744-44dd-b509-8e6ff02200f7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "catenaXId" : "urn:uuid:4ce8764c-b792-45de-9301-7447059ff2f5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "catenaXId" : "urn:uuid:7083f045-c442-4cd4-a16b-1570db5bc64f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "catenaXId" : "urn:uuid:971580b6-c1bd-4850-a6b9-84f6bc85d956", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "catenaXId" : "urn:uuid:132f582c-07a4-4cf3-95cd-3a0ab718731f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "catenaXId" : "urn:uuid:71791f6a-3e19-4672-98fd-58311923635e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -31522,35 +31342,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "575177", + "orderNumber" : "566097", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "1123", + "referencedStandard" : "DIN", + "referencedStandardID" : "6795", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -31561,12 +31381,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -31576,7 +31396,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -31597,7 +31417,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-421487237719664337926264", + "value" : "NO-396892550112390060297089", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -31608,7 +31428,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -31620,10 +31440,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "assetId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -31632,17 +31452,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:169730f9-82c2-419e-bec4-679b074587e1", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:c8af13de-392d-41e5-bfbc-1b1ecb0f7079", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -31651,17 +31471,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e924db85-85d0-44a1-85e9-f4ab255622b6", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:7655558e-965d-471d-833d-cd578a0cd63d", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "childassetId" : "urn:uuid:58874991-6fc3-4c00-a4d5-a75a8faf6ad6", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -31670,17 +31490,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7c4cffaa-7828-4fab-a805-de5eecec1be6", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:c38bb568-f5d9-475c-a6a0-a01ac9e6d0ca", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "childassetId" : "urn:uuid:356cf8c0-d8e7-4270-b1e9-21d2698279fb", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -31689,17 +31509,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:304cfe22-30a3-45ad-8dee-86ec2a1a3951", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:af727811-cea7-4bb4-b449-163fa65f7b9d", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "childassetId" : "urn:uuid:5d10c142-3928-49d4-a6d8-a9fbe7961c7e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -31708,17 +31528,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:13346a9c-c939-4477-bfde-9b8d1bf3eb46", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:3b73978b-5ac4-435a-9aa9-53400eb6f850", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "childassetId" : "urn:uuid:17798e72-be09-461e-90e1-afe8459c88e3", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -31727,17 +31547,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1cba473f-5ef8-4ea8-8247-c695813a0507", + "ownerItemId" : "urn:uuid:c36505bd-2206-4a4d-864e-a683dad84dc2", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "childassetId" : "urn:uuid:1152698a-9744-44dd-b509-8e6ff02200f7", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -31746,17 +31566,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:153c7f6f-c3d7-4473-9c0b-0fdd2af161a6", + "ownerItemId" : "urn:uuid:611c241e-8da3-4ab4-900b-88e0b796cd4b", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "childassetId" : "urn:uuid:4ce8764c-b792-45de-9301-7447059ff2f5", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -31765,17 +31585,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:632aaffc-66ce-4718-92f6-1176c2e1aca3", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:0a108d83-0f73-4e09-a5fe-63be92a672bb", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "childassetId" : "urn:uuid:7083f045-c442-4cd4-a16b-1570db5bc64f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -31784,17 +31604,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e4486c97-ca35-46a3-ab8c-c3e0931bb0c2", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:b9f09941-8a38-4b93-a81b-f0aafff659c8", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "childassetId" : "urn:uuid:971580b6-c1bd-4850-a6b9-84f6bc85d956", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -31803,17 +31623,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:56e69495-40bd-4652-be40-0e32b8153e11", + "ownerItemId" : "urn:uuid:a07ee93b-ec0c-41d9-95f7-ef51d49175f1", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "childassetId" : "urn:uuid:132f582c-07a4-4cf3-95cd-3a0ab718731f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -31822,38 +31642,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8c2ba5fe-0312-4618-8d66-f0188585c8c5", + "ownerItemId" : "urn:uuid:ca4d31b0-dc49-494d-a63a-b388f6072c1c", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "childassetId" : "urn:uuid:71791f6a-3e19-4672-98fd-58311923635e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -32079,7 +31881,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-421487237719664337926264", + "batteryIDDMCCode" : "NO-396892550112390060297089", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -32121,13 +31923,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2023-12-17", - "version" : 2.5, - "status" : "Expired" + "issueDate" : "2023-12-22", + "version" : 1.5, + "status" : "Invalid" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6908, + "diameter" : 229.6886, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -32139,18 +31941,18 @@ } }, "commercial" : { - "placedOnMarket" : "2023-10-13", + "placedOnMarket" : "2022-09-18", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-421487237719664337926264", + "value" : "NO-396892550112390060297089", "key" : "PartInstanceID" } ], - "gtin" : " 58568407", + "gtin" : " 25020765", "additionalCode" : [ { "name" : "TARIC", - "value" : "284386811" + "value" : "603192610" } ] }, "sources" : { @@ -32172,7 +31974,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", + "category" : "Sustainability", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -32217,9 +32019,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 9.7722 ] + "left" : [ 4.5573 ] }, - "id" : "AB2318" + "id" : "CD2392" } ] }, "additionalData" : [ { @@ -32245,9 +32047,9 @@ "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Manganese" + "name" : "Aluminium" } ], - "critical" : [ "Nickel" ], + "critical" : [ "Lithium" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -32257,14 +32059,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 120 + "carbonContentTotal" : 117 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B2OM", + "importer" : "BPNL00000003AXS3", "manufacturer" : { - "facilityId" : "BPNL00000003AYRE", + "facilityId" : "BPNL00000003B2OM", "manufacturerId" : "BPNL00000003AVTH" } } @@ -32277,31 +32079,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "catenaXId" : "urn:uuid:58874991-6fc3-4c00-a4d5-a75a8faf6ad6", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -32316,11 +32134,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-06-10", + "currentStateOfHealthTimestamp" : "2023-10-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-14", + "currentStateOfHealthTimestamp" : "2024-03-06", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -32330,19 +32148,19 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "catenaXId" : "urn:uuid:58874991-6fc3-4c00-a4d5-a75a8faf6ad6", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "641081", + "orderNumber" : "245799", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 8 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -32357,8 +32175,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "3197", + "referencedStandard" : "AS", + "referencedStandardID" : "1921", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -32367,14 +32185,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -32384,13 +32202,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -32405,7 +32223,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-657973422519230479340430", + "value" : "NO-936595542990754600925788", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -32416,7 +32234,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "catenaXId" : "urn:uuid:58874991-6fc3-4c00-a4d5-a75a8faf6ad6", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -32428,10 +32246,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "assetId" : "urn:uuid:58874991-6fc3-4c00-a4d5-a75a8faf6ad6", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -32440,17 +32258,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:54335cc3-c3a9-4c6d-841b-9d6869d7518f", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:043207b0-94d7-4a15-8d68-8bc7eee65927", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -32463,24 +32281,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -32706,7 +32506,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-657973422519230479340430", + "batteryIDDMCCode" : "NO-936595542990754600925788", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -32725,31 +32525,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:58874991-6fc3-4c00-a4d5-a75a8faf6ad6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:58874991-6fc3-4c00-a4d5-a75a8faf6ad6", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "catenaXId" : "urn:uuid:356cf8c0-d8e7-4270-b1e9-21d2698279fb", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -32764,11 +32580,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-08-26", + "currentStateOfHealthTimestamp" : "2019-10-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-04", + "currentStateOfHealthTimestamp" : "2024-03-30", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -32778,35 +32594,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "catenaXId" : "urn:uuid:356cf8c0-d8e7-4270-b1e9-21d2698279fb", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "551084", + "orderNumber" : "787563", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "1432", + "referencedStandard" : "ASME", + "referencedStandardID" : "2763", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -32815,30 +32631,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -32853,7 +32669,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-732408130437623009753172", + "value" : "NO-564950367804649428245953", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -32864,7 +32680,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "catenaXId" : "urn:uuid:356cf8c0-d8e7-4270-b1e9-21d2698279fb", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -32876,10 +32692,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "assetId" : "urn:uuid:356cf8c0-d8e7-4270-b1e9-21d2698279fb", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -32888,17 +32704,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ab04d475-4d30-4039-b0ce-1f565317db77", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:6b7394a6-e392-406d-98b6-ef092610dc87", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -32911,24 +32727,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -33154,7 +32952,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-732408130437623009753172", + "batteryIDDMCCode" : "NO-564950367804649428245953", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -33173,31 +32971,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:356cf8c0-d8e7-4270-b1e9-21d2698279fb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:356cf8c0-d8e7-4270-b1e9-21d2698279fb", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "catenaXId" : "urn:uuid:5d10c142-3928-49d4-a6d8-a9fbe7961c7e", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -33212,11 +33026,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-02-12", + "currentStateOfHealthTimestamp" : "2015-05-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthTimestamp" : "2024-04-01", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -33226,10 +33040,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "catenaXId" : "urn:uuid:5d10c142-3928-49d4-a6d8-a9fbe7961c7e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "912331", + "orderNumber" : "53247", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -33238,23 +33052,23 @@ "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "2489", + "referencedStandard" : "DIN", + "referencedStandardID" : "6936", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -33263,7 +33077,7 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, "percentageOfMaterialWeight" : 10 @@ -33276,17 +33090,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -33301,7 +33115,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-712777341404709239849724", + "value" : "NO-032804246183692203092051", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -33312,7 +33126,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "catenaXId" : "urn:uuid:5d10c142-3928-49d4-a6d8-a9fbe7961c7e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -33324,10 +33138,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "assetId" : "urn:uuid:5d10c142-3928-49d4-a6d8-a9fbe7961c7e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -33336,17 +33150,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:801d7df0-96c4-4c05-9b00-244356090ef6", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:e98ce1ac-72c3-4a67-8c5f-7b8010b63f68", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -33359,24 +33173,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -33602,7 +33398,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-712777341404709239849724", + "batteryIDDMCCode" : "NO-032804246183692203092051", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -33621,31 +33417,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5d10c142-3928-49d4-a6d8-a9fbe7961c7e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5d10c142-3928-49d4-a6d8-a9fbe7961c7e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "catenaXId" : "urn:uuid:17798e72-be09-461e-90e1-afe8459c88e3", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -33660,11 +33472,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-11-02", + "currentStateOfHealthTimestamp" : "2020-11-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-14", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -33674,14 +33486,14 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "catenaXId" : "urn:uuid:17798e72-be09-461e-90e1-afe8459c88e3", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "258856", + "orderNumber" : "475277", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { @@ -33690,9 +33502,9 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -33701,8 +33513,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "1575", + "referencedStandard" : "JIS", + "referencedStandardID" : "4167", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -33714,7 +33526,7 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -33724,17 +33536,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -33749,7 +33561,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-275660379821389876239471", + "value" : "NO-157546003879482080514027", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -33760,7 +33572,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "catenaXId" : "urn:uuid:17798e72-be09-461e-90e1-afe8459c88e3", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -33772,10 +33584,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "assetId" : "urn:uuid:17798e72-be09-461e-90e1-afe8459c88e3", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -33784,17 +33596,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:135ff411-75d6-4d5e-87f2-8fd3c709bdd5", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:8092b9c2-4948-4120-889d-2d538b6b4d24", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -33807,24 +33619,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -34050,7 +33844,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-275660379821389876239471", + "batteryIDDMCCode" : "NO-157546003879482080514027", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -34069,31 +33863,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:17798e72-be09-461e-90e1-afe8459c88e3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:17798e72-be09-461e-90e1-afe8459c88e3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "catenaXId" : "urn:uuid:1152698a-9744-44dd-b509-8e6ff02200f7", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -34108,11 +33918,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-09-18", + "currentStateOfHealthTimestamp" : "2019-12-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthTimestamp" : "2024-03-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -34122,35 +33932,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "catenaXId" : "urn:uuid:1152698a-9744-44dd-b509-8e6ff02200f7", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "956265", + "orderNumber" : "758504", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "1435", + "referencedStandard" : "ASME", + "referencedStandardID" : "2286", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -34159,30 +33969,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -34197,7 +34007,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-874268115549473309109964", + "value" : "NO-177922074842125795420007", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -34208,7 +34018,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "catenaXId" : "urn:uuid:1152698a-9744-44dd-b509-8e6ff02200f7", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -34223,7 +34033,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "assetId" : "urn:uuid:1152698a-9744-44dd-b509-8e6ff02200f7", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -34232,17 +34042,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:13484890-85d1-49cf-8913-163da1ea297f", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:fe95aeed-a8c6-47b6-8e09-245ba22fc37f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -34255,24 +34065,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -34498,7 +34290,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-874268115549473309109964", + "batteryIDDMCCode" : "NO-177922074842125795420007", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -34517,31 +34309,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1152698a-9744-44dd-b509-8e6ff02200f7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1152698a-9744-44dd-b509-8e6ff02200f7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "catenaXId" : "urn:uuid:4ce8764c-b792-45de-9301-7447059ff2f5", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -34556,11 +34364,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-07-20", + "currentStateOfHealthTimestamp" : "2018-09-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthTimestamp" : "2024-03-18", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -34570,35 +34378,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "catenaXId" : "urn:uuid:4ce8764c-b792-45de-9301-7447059ff2f5", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "476029", + "orderNumber" : "46034", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 24 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "8462", + "referencedStandard" : "JASO", + "referencedStandardID" : "6266", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -34607,10 +34415,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -34624,13 +34432,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -34645,7 +34453,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-804755969458043907284335", + "value" : "NO-214635896808155138901731", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -34656,7 +34464,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "catenaXId" : "urn:uuid:4ce8764c-b792-45de-9301-7447059ff2f5", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -34671,7 +34479,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "assetId" : "urn:uuid:4ce8764c-b792-45de-9301-7447059ff2f5", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -34680,17 +34488,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b1a988dc-e01d-4dc7-bae8-ed2d0bca93e4", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:6e1fa2e4-244b-46e5-bf48-6c32c1fe06d0", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -34703,24 +34511,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -34946,7 +34736,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-804755969458043907284335", + "batteryIDDMCCode" : "NO-214635896808155138901731", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -34965,31 +34755,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4ce8764c-b792-45de-9301-7447059ff2f5", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4ce8764c-b792-45de-9301-7447059ff2f5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "catenaXId" : "urn:uuid:7083f045-c442-4cd4-a16b-1570db5bc64f", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -35004,11 +34810,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-10-15", + "currentStateOfHealthTimestamp" : "2016-01-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-23", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -35018,25 +34824,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "catenaXId" : "urn:uuid:7083f045-c442-4cd4-a16b-1570db5bc64f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "484209", + "orderNumber" : "790172", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -35045,8 +34851,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "6055", + "referencedStandard" : "AS", + "referencedStandardID" : "5815", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -35055,30 +34861,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -35093,7 +34899,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-613319179318249998509155", + "value" : "NO-717852589858335943379764", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -35104,7 +34910,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "catenaXId" : "urn:uuid:7083f045-c442-4cd4-a16b-1570db5bc64f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -35116,10 +34922,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "assetId" : "urn:uuid:7083f045-c442-4cd4-a16b-1570db5bc64f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -35128,17 +34934,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8cb2eddf-2036-4fb1-bdc1-a4825eb2822e", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:de3019b8-3e6d-4dfa-96ef-6126afea13c7", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -35151,24 +34957,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -35394,7 +35182,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-613319179318249998509155", + "batteryIDDMCCode" : "NO-717852589858335943379764", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -35413,31 +35201,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7083f045-c442-4cd4-a16b-1570db5bc64f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7083f045-c442-4cd4-a16b-1570db5bc64f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "catenaXId" : "urn:uuid:971580b6-c1bd-4850-a6b9-84f6bc85d956", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -35452,11 +35256,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-01-06", + "currentStateOfHealthTimestamp" : "2016-02-02", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthTimestamp" : "2024-03-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -35466,35 +35270,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "catenaXId" : "urn:uuid:971580b6-c1bd-4850-a6b9-84f6bc85d956", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "494277", + "orderNumber" : "489266", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "9889", + "referencedStandard" : "AISI", + "referencedStandardID" : "9239", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -35503,14 +35307,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -35520,7 +35324,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -35541,7 +35345,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-054137834947942447689111", + "value" : "NO-757694058301393495015233", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -35552,7 +35356,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "catenaXId" : "urn:uuid:971580b6-c1bd-4850-a6b9-84f6bc85d956", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -35564,10 +35368,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "assetId" : "urn:uuid:971580b6-c1bd-4850-a6b9-84f6bc85d956", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -35576,17 +35380,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6a9d095d-a988-440d-acf0-660677522014", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:89d92daf-3349-4b9d-a2cf-b6fe2f02b249", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -35599,24 +35403,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -35842,7 +35628,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-054137834947942447689111", + "batteryIDDMCCode" : "NO-757694058301393495015233", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -35861,31 +35647,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:971580b6-c1bd-4850-a6b9-84f6bc85d956", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:971580b6-c1bd-4850-a6b9-84f6bc85d956", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "catenaXId" : "urn:uuid:132f582c-07a4-4cf3-95cd-3a0ab718731f", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -35900,11 +35702,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-09-27", + "currentStateOfHealthTimestamp" : "2021-10-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -35914,35 +35716,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "catenaXId" : "urn:uuid:132f582c-07a4-4cf3-95cd-3a0ab718731f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "689401", + "orderNumber" : "734537", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "3427", + "referencedStandard" : "ISO", + "referencedStandardID" : "9978", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -35951,14 +35753,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -35968,13 +35770,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -35989,7 +35791,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-295359038428033538101406", + "value" : "NO-795678168368907772963536", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -36000,7 +35802,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "catenaXId" : "urn:uuid:132f582c-07a4-4cf3-95cd-3a0ab718731f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -36015,7 +35817,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "assetId" : "urn:uuid:132f582c-07a4-4cf3-95cd-3a0ab718731f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -36024,17 +35826,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:bfda2cef-43dd-458e-832e-813cdf46be9f", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:26802797-1542-464f-9e0f-5f531b88dd5a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -36047,24 +35849,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -36290,7 +36074,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-295359038428033538101406", + "batteryIDDMCCode" : "NO-795678168368907772963536", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -36309,31 +36093,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:132f582c-07a4-4cf3-95cd-3a0ab718731f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:132f582c-07a4-4cf3-95cd-3a0ab718731f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "catenaXId" : "urn:uuid:71791f6a-3e19-4672-98fd-58311923635e", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -36348,11 +36148,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-05-21", + "currentStateOfHealthTimestamp" : "2016-04-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthTimestamp" : "2024-03-28", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -36362,35 +36162,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "catenaXId" : "urn:uuid:71791f6a-3e19-4672-98fd-58311923635e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "893293", + "orderNumber" : "673465", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "8058", + "referencedStandard" : "GB", + "referencedStandardID" : "3670", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -36401,22 +36201,22 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -36437,7 +36237,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-508562801787981572367093", + "value" : "NO-729292714417407952927805", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -36448,7 +36248,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "catenaXId" : "urn:uuid:71791f6a-3e19-4672-98fd-58311923635e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -36463,7 +36263,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "assetId" : "urn:uuid:71791f6a-3e19-4672-98fd-58311923635e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -36472,17 +36272,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:71f692c6-666b-4b55-9bb8-5eca46c7427b", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:4c99f3b4-eb48-4913-8ce4-7ea0736f6606", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -36495,24 +36295,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -36738,7 +36520,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-508562801787981572367093", + "batteryIDDMCCode" : "NO-729292714417407952927805", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -36757,28 +36539,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:71791f6a-3e19-4672-98fd-58311923635e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:71791f6a-3e19-4672-98fd-58311923635e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 41, + "recycledContent" : 6, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -36788,7 +36586,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 26, + "recycledContent" : 63, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -36798,7 +36596,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 87, + "recycledContent" : 78, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -36809,112 +36607,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "catenaXId" : "urn:uuid:10ded4f6-f3e7-4675-9e2c-52d56ebc8f99", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "catenaXId" : "urn:uuid:23f33b6f-17ff-4c73-a73e-966320cd47c3", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "catenaXId" : "urn:uuid:dc9ba4a1-7e17-4de7-b5b4-32c709ab49d9", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "catenaXId" : "urn:uuid:7c3fc31a-a02c-48b5-a722-cd10900df556", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "catenaXId" : "urn:uuid:3e388884-567a-4406-86d8-629086d5cffa", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "catenaXId" : "urn:uuid:e72768b0-2386-4386-a92f-c155d64ee3b0", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "catenaXId" : "urn:uuid:df1215c6-7e6c-4fdc-8c56-50a82889c907", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "catenaXId" : "urn:uuid:11b2512c-3684-4345-bca1-94da74cbc082", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "catenaXId" : "urn:uuid:e14681cd-fd92-4c05-9f46-fdb654b7190e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "catenaXId" : "urn:uuid:40cd75e1-723c-4a22-b8d8-d9a34417431e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -36922,35 +36720,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "953493", + "orderNumber" : "32775", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "6276", + "referencedStandard" : "ISO", + "referencedStandardID" : "6565", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -36962,17 +36760,17 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -36982,7 +36780,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -36997,7 +36795,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-649025193247744815308547", + "value" : "NO-359081035858409777849821", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -37008,7 +36806,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -37020,10 +36818,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "assetId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -37032,17 +36830,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:59d5a09f-265a-4255-930a-69499e6099a1", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:4d45be30-b376-45a6-bdf0-2fa13737d8ab", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -37051,17 +36849,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e835451c-55d1-4583-b120-5b05b4fe4298", + "ownerItemId" : "urn:uuid:9af73eca-ac28-4881-9194-d236c60a48f1", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "childassetId" : "urn:uuid:10ded4f6-f3e7-4675-9e2c-52d56ebc8f99", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -37070,17 +36868,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:47a14445-3677-42b5-8f58-4fc036767737", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:2540f719-3308-41c7-9088-40e810f012d9", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "childassetId" : "urn:uuid:23f33b6f-17ff-4c73-a73e-966320cd47c3", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -37089,17 +36887,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:42df3cfd-be3a-4a23-8cbb-4886f5f42310", + "ownerItemId" : "urn:uuid:dc4cf5d0-5057-48b7-b314-716e49c424bb", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "childassetId" : "urn:uuid:dc9ba4a1-7e17-4de7-b5b4-32c709ab49d9", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -37108,17 +36906,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:891a63c7-b3fb-4165-ba99-9318634c3c3e", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:a4c54ca6-2b76-460d-8102-652581dd4bda", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "childassetId" : "urn:uuid:7c3fc31a-a02c-48b5-a722-cd10900df556", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -37127,17 +36925,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:bad2579c-8d56-4cde-ae3f-106b91207f16", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:473a8d81-7e3b-4cff-ab0d-822ed6318339", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "childassetId" : "urn:uuid:3e388884-567a-4406-86d8-629086d5cffa", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -37146,17 +36944,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:af6d4227-3759-4c93-8400-88750f845d42", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:331fe0d2-fb42-46a1-ab1a-0db5b024737d", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "childassetId" : "urn:uuid:e72768b0-2386-4386-a92f-c155d64ee3b0", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -37165,17 +36963,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:39db236d-265d-4e53-81f1-89c3a42280c2", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:f4226f53-db35-44c3-94e4-aa8fccb4cef9", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "childassetId" : "urn:uuid:df1215c6-7e6c-4fdc-8c56-50a82889c907", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -37184,17 +36982,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d815f036-f26c-4f88-8ce6-573fc3c8e978", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:cdacc4d2-f624-4740-9f5d-b894f7a0c222", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "childassetId" : "urn:uuid:11b2512c-3684-4345-bca1-94da74cbc082", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -37203,17 +37001,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e7cf96b2-2184-4400-b6a7-3191969893e2", + "ownerItemId" : "urn:uuid:8c53ca79-bd7a-45df-ae29-813b57aff9c7", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "childassetId" : "urn:uuid:e14681cd-fd92-4c05-9f46-fdb654b7190e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -37222,38 +37020,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9418e4fc-f1a0-42a1-8bb0-b637d0ea2e8f", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:19fabf5f-be0e-4c2c-b8bc-ba93aa20f5dd", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "childassetId" : "urn:uuid:40cd75e1-723c-4a22-b8d8-d9a34417431e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -37479,7 +37259,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-649025193247744815308547", + "batteryIDDMCCode" : "NO-359081035858409777849821", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -37521,13 +37301,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2022-08-13", - "version" : 1.1, - "status" : "Approved" + "issueDate" : "2024-04-02", + "version" : 1.6, + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6209, + "diameter" : 229.6937, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -37535,22 +37315,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 17 + "value" : 19 } }, "commercial" : { - "placedOnMarket" : "2021-01-11", + "placedOnMarket" : "2022-04-13", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-649025193247744815308547", + "value" : "NO-359081035858409777849821", "key" : "PartInstanceID" } ], - "gtin" : " 58303814", + "gtin" : " 50397385", "additionalCode" : [ { "name" : "TARIC", - "value" : "172951776" + "value" : "340059295" } ] }, "sources" : { @@ -37572,7 +37352,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", + "category" : "Sustainability", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -37601,7 +37381,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2022-11-10", + "date" : "2024-04-02", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -37617,9 +37397,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 7.7691 ] + "left" : [ 0.67 ] }, - "id" : "EV5532" + "id" : "UZ1361" } ] }, "additionalData" : [ { @@ -37642,10 +37422,10 @@ } ], "sustainability" : { "material" : [ { - "recycled" : false, + "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Graphite" + "name" : "Sealant" } ], "critical" : [ "Manganese" ], "carbonFootprint" : { @@ -37657,14 +37437,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 120 + "carbonContentTotal" : 105 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003B2OM", "manufacturer" : { - "facilityId" : "BPNL00000003B3NX", + "facilityId" : "BPNL00000003AXS3", "manufacturerId" : "BPNL00000003AVTH" } } @@ -37677,31 +37457,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "catenaXId" : "urn:uuid:10ded4f6-f3e7-4675-9e2c-52d56ebc8f99", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -37716,11 +37512,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-12-09", + "currentStateOfHealthTimestamp" : "2022-12-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -37730,35 +37526,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "catenaXId" : "urn:uuid:10ded4f6-f3e7-4675-9e2c-52d56ebc8f99", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "839204", + "orderNumber" : "822067", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "2411", + "referencedStandard" : "JIS", + "referencedStandardID" : "7702", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -37767,14 +37563,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -37790,7 +37586,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -37805,7 +37601,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-478966071391968090480935", + "value" : "NO-970096378233819741474519", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -37816,7 +37612,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "catenaXId" : "urn:uuid:10ded4f6-f3e7-4675-9e2c-52d56ebc8f99", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -37831,7 +37627,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "assetId" : "urn:uuid:10ded4f6-f3e7-4675-9e2c-52d56ebc8f99", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -37840,17 +37636,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3240960f-1f84-4e53-bc45-cd326f27b452", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:3b52a4e1-5990-4c8b-b647-8a8fb6fcc127", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -37863,24 +37659,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -38106,7 +37884,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-478966071391968090480935", + "batteryIDDMCCode" : "NO-970096378233819741474519", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -38125,31 +37903,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:10ded4f6-f3e7-4675-9e2c-52d56ebc8f99", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:10ded4f6-f3e7-4675-9e2c-52d56ebc8f99", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "catenaXId" : "urn:uuid:23f33b6f-17ff-4c73-a73e-966320cd47c3", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -38164,11 +37958,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-07-09", + "currentStateOfHealthTimestamp" : "2015-06-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-09", + "currentStateOfHealthTimestamp" : "2024-03-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -38178,35 +37972,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "catenaXId" : "urn:uuid:23f33b6f-17ff-4c73-a73e-966320cd47c3", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "361335", + "orderNumber" : "812432", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "1733", + "referencedStandard" : "AS", + "referencedStandardID" : "1181", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -38215,10 +38009,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -38228,17 +38022,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -38253,7 +38047,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-335150056102107596933721", + "value" : "NO-318132647172819069875892", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -38264,7 +38058,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "catenaXId" : "urn:uuid:23f33b6f-17ff-4c73-a73e-966320cd47c3", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -38276,10 +38070,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "assetId" : "urn:uuid:23f33b6f-17ff-4c73-a73e-966320cd47c3", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -38288,17 +38082,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:51b3cf5d-11f4-4db6-a584-02ecc5bdedec", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:6276ac23-f044-4397-ab55-35a5a1bbfbd3", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -38311,24 +38105,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -38554,7 +38330,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-335150056102107596933721", + "batteryIDDMCCode" : "NO-318132647172819069875892", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -38573,31 +38349,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:23f33b6f-17ff-4c73-a73e-966320cd47c3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:23f33b6f-17ff-4c73-a73e-966320cd47c3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "catenaXId" : "urn:uuid:dc9ba4a1-7e17-4de7-b5b4-32c709ab49d9", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -38612,11 +38404,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-05-17", + "currentStateOfHealthTimestamp" : "2018-08-29", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -38626,35 +38418,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "catenaXId" : "urn:uuid:dc9ba4a1-7e17-4de7-b5b4-32c709ab49d9", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "105259", + "orderNumber" : "852229", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "9968", + "referencedStandard" : "AS", + "referencedStandardID" : "9040", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -38665,12 +38457,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -38680,13 +38472,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -38701,7 +38493,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-809969344592637616415689", + "value" : "NO-005302332284040801035461", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -38712,7 +38504,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "catenaXId" : "urn:uuid:dc9ba4a1-7e17-4de7-b5b4-32c709ab49d9", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -38727,7 +38519,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "assetId" : "urn:uuid:dc9ba4a1-7e17-4de7-b5b4-32c709ab49d9", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -38736,17 +38528,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8b1028ea-217a-4876-b747-0410b9b185b7", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:3b66433a-5011-4e54-9404-f105257c3822", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -38759,24 +38551,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -39002,7 +38776,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-809969344592637616415689", + "batteryIDDMCCode" : "NO-005302332284040801035461", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -39021,31 +38795,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:dc9ba4a1-7e17-4de7-b5b4-32c709ab49d9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:dc9ba4a1-7e17-4de7-b5b4-32c709ab49d9", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "catenaXId" : "urn:uuid:7c3fc31a-a02c-48b5-a722-cd10900df556", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -39060,11 +38850,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-10-30", + "currentStateOfHealthTimestamp" : "2018-04-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -39074,25 +38864,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "catenaXId" : "urn:uuid:7c3fc31a-a02c-48b5-a722-cd10900df556", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "307973", + "orderNumber" : "205779", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -39101,8 +38891,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "8934", + "referencedStandard" : "GB", + "referencedStandardID" : "6909", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -39111,24 +38901,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -39149,7 +38939,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-428529070818912818758400", + "value" : "NO-633235849695047729477643", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -39160,7 +38950,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "catenaXId" : "urn:uuid:7c3fc31a-a02c-48b5-a722-cd10900df556", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -39172,10 +38962,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "assetId" : "urn:uuid:7c3fc31a-a02c-48b5-a722-cd10900df556", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -39184,17 +38974,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6fe7d49a-4569-4fc3-841e-3b93a22ca927", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:2cb8a82d-2426-4f0c-9517-04b2172c62f3", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -39207,24 +38997,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -39450,7 +39222,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-428529070818912818758400", + "batteryIDDMCCode" : "NO-633235849695047729477643", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -39469,31 +39241,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7c3fc31a-a02c-48b5-a722-cd10900df556", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7c3fc31a-a02c-48b5-a722-cd10900df556", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "catenaXId" : "urn:uuid:3e388884-567a-4406-86d8-629086d5cffa", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -39508,11 +39296,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-12-03", + "currentStateOfHealthTimestamp" : "2015-06-05", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthTimestamp" : "2024-03-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -39522,35 +39310,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "catenaXId" : "urn:uuid:3e388884-567a-4406-86d8-629086d5cffa", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "893839", + "orderNumber" : "397350", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "9261", + "referencedStandard" : "AISI", + "referencedStandardID" : "5679", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -39559,14 +39347,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -39576,13 +39364,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -39597,7 +39385,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-325143358634226278153686", + "value" : "NO-180507091805456863307743", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -39608,7 +39396,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "catenaXId" : "urn:uuid:3e388884-567a-4406-86d8-629086d5cffa", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -39620,10 +39408,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "assetId" : "urn:uuid:3e388884-567a-4406-86d8-629086d5cffa", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -39632,17 +39420,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:75435db2-3868-4a77-a72f-78f96faad8b7", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:8bcd47a4-f3df-47e7-9049-38d5b756c784", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -39655,24 +39443,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -39898,7 +39668,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-325143358634226278153686", + "batteryIDDMCCode" : "NO-180507091805456863307743", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -39917,31 +39687,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3e388884-567a-4406-86d8-629086d5cffa", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3e388884-567a-4406-86d8-629086d5cffa", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "catenaXId" : "urn:uuid:e72768b0-2386-4386-a92f-c155d64ee3b0", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -39956,11 +39742,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-06-06", + "currentStateOfHealthTimestamp" : "2023-08-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-03-27", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -39970,35 +39756,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "catenaXId" : "urn:uuid:e72768b0-2386-4386-a92f-c155d64ee3b0", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "909402", + "orderNumber" : "98968", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "8746", + "referencedStandard" : "AISI", + "referencedStandardID" : "1757", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -40007,10 +39793,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -40030,7 +39816,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -40045,7 +39831,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-123760690132854833745762", + "value" : "NO-296563716806108031733209", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -40056,7 +39842,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "catenaXId" : "urn:uuid:e72768b0-2386-4386-a92f-c155d64ee3b0", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -40068,10 +39854,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "assetId" : "urn:uuid:e72768b0-2386-4386-a92f-c155d64ee3b0", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -40080,17 +39866,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:55ef973f-260b-452e-bfd6-3e359ec8918c", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:c434c740-67a0-4912-a776-5323455b3002", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -40103,24 +39889,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -40346,7 +40114,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-123760690132854833745762", + "batteryIDDMCCode" : "NO-296563716806108031733209", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -40365,31 +40133,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e72768b0-2386-4386-a92f-c155d64ee3b0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e72768b0-2386-4386-a92f-c155d64ee3b0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "catenaXId" : "urn:uuid:df1215c6-7e6c-4fdc-8c56-50a82889c907", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -40404,11 +40188,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-05-10", + "currentStateOfHealthTimestamp" : "2019-10-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -40418,35 +40202,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "catenaXId" : "urn:uuid:df1215c6-7e6c-4fdc-8c56-50a82889c907", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "549487", + "orderNumber" : "727116", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "1699", + "referencedStandard" : "GB", + "referencedStandardID" : "5117", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -40455,10 +40239,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -40468,17 +40252,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -40493,7 +40277,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-202618736706229575349972", + "value" : "NO-250801480041613674840227", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -40504,7 +40288,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "catenaXId" : "urn:uuid:df1215c6-7e6c-4fdc-8c56-50a82889c907", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -40516,10 +40300,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "assetId" : "urn:uuid:df1215c6-7e6c-4fdc-8c56-50a82889c907", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -40528,17 +40312,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:82c4d997-9689-4641-8a39-200b0848aede", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:dee493d3-1fa7-45cd-b2c5-abe9fc01b257", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -40551,24 +40335,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -40794,7 +40560,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-202618736706229575349972", + "batteryIDDMCCode" : "NO-250801480041613674840227", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -40813,31 +40579,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:df1215c6-7e6c-4fdc-8c56-50a82889c907", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:df1215c6-7e6c-4fdc-8c56-50a82889c907", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "catenaXId" : "urn:uuid:11b2512c-3684-4345-bca1-94da74cbc082", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -40852,11 +40634,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-05-15", + "currentStateOfHealthTimestamp" : "2014-04-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -40866,25 +40648,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "catenaXId" : "urn:uuid:11b2512c-3684-4345-bca1-94da74cbc082", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "989917", + "orderNumber" : "609854", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -40893,8 +40675,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "3060", + "referencedStandard" : "ASME", + "referencedStandardID" : "4653", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -40906,11 +40688,11 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -40920,13 +40702,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -40941,7 +40723,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-332282418462283630241021", + "value" : "NO-733273787017273071493331", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -40952,7 +40734,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "catenaXId" : "urn:uuid:11b2512c-3684-4345-bca1-94da74cbc082", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -40964,10 +40746,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "assetId" : "urn:uuid:11b2512c-3684-4345-bca1-94da74cbc082", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -40976,17 +40758,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:bfea1181-1f4c-4571-b52d-91d5a060833e", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:afc9b849-2425-417e-9dce-a876771821d8", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -40999,24 +40781,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -41242,7 +41006,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-332282418462283630241021", + "batteryIDDMCCode" : "NO-733273787017273071493331", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -41261,31 +41025,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:11b2512c-3684-4345-bca1-94da74cbc082", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:11b2512c-3684-4345-bca1-94da74cbc082", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "catenaXId" : "urn:uuid:e14681cd-fd92-4c05-9f46-fdb654b7190e", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -41300,11 +41080,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-07-24", + "currentStateOfHealthTimestamp" : "2023-10-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -41314,35 +41094,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "catenaXId" : "urn:uuid:e14681cd-fd92-4c05-9f46-fdb654b7190e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "558744", + "orderNumber" : "534200", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "5000", + "referencedStandard" : "GB", + "referencedStandardID" : "1356", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -41351,24 +41131,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -41389,7 +41169,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-661181049931223872649703", + "value" : "NO-092034534832069879588800", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -41400,7 +41180,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "catenaXId" : "urn:uuid:e14681cd-fd92-4c05-9f46-fdb654b7190e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -41415,7 +41195,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "assetId" : "urn:uuid:e14681cd-fd92-4c05-9f46-fdb654b7190e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -41424,17 +41204,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:275da478-579d-4cd2-94fe-9a637090bf99", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:d2b5ce7d-91b8-472f-b0ea-ef96aeef77fa", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -41447,24 +41227,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -41690,7 +41452,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-661181049931223872649703", + "batteryIDDMCCode" : "NO-092034534832069879588800", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -41709,31 +41471,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e14681cd-fd92-4c05-9f46-fdb654b7190e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e14681cd-fd92-4c05-9f46-fdb654b7190e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "catenaXId" : "urn:uuid:40cd75e1-723c-4a22-b8d8-d9a34417431e", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -41748,11 +41526,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-06-14", + "currentStateOfHealthTimestamp" : "2017-05-16", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-17", + "currentStateOfHealthTimestamp" : "2024-03-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -41762,35 +41540,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "catenaXId" : "urn:uuid:40cd75e1-723c-4a22-b8d8-d9a34417431e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "361193", + "orderNumber" : "381911", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "5792", + "referencedStandard" : "JASO", + "referencedStandardID" : "7211", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -41799,14 +41577,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -41816,13 +41594,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -41837,7 +41615,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-045025435576056642106570", + "value" : "NO-736835087578073393468258", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -41848,7 +41626,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "catenaXId" : "urn:uuid:40cd75e1-723c-4a22-b8d8-d9a34417431e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -41860,10 +41638,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "assetId" : "urn:uuid:40cd75e1-723c-4a22-b8d8-d9a34417431e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -41872,17 +41650,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0c0ca7b0-9908-4de8-bc68-15f64c1ab8a4", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:4e753e0e-32f4-4ef0-a68e-c714df1849e1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -41895,24 +41673,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -42138,7 +41898,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-045025435576056642106570", + "batteryIDDMCCode" : "NO-736835087578073393468258", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -42157,28 +41917,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:40cd75e1-723c-4a22-b8d8-d9a34417431e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:40cd75e1-723c-4a22-b8d8-d9a34417431e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Iron", - "recycledContent" : 65, + "recycledContent" : 25, "materialClass" : "1.1", "quantity" : { "unit" : "unit:kilogram", @@ -42188,7 +41964,7 @@ "materialAbbreviation" : "IR334" }, { "materialName" : "Polyethylen", - "recycledContent" : 76, + "recycledContent" : 74, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -42198,7 +41974,7 @@ "materialAbbreviation" : "PE221" }, { "materialName" : "Polyamid6", - "recycledContent" : 7, + "recycledContent" : 43, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -42208,7 +41984,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Aluminium", - "recycledContent" : 71, + "recycledContent" : 4, "materialClass" : "2.1", "quantity" : { "unit" : "unit:kilogram", @@ -42218,7 +41994,7 @@ "materialAbbreviation" : "ALU331" }, { "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", - "recycledContent" : 4, + "recycledContent" : 87, "materialClass" : "0.7", "quantity" : { "unit" : "unit:kilogram", @@ -42228,7 +42004,7 @@ "materialAbbreviation" : "W123" }, { "materialName" : "Glue", - "recycledContent" : 86, + "recycledContent" : 52, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -42238,7 +42014,7 @@ "materialAbbreviation" : "GL338" }, { "materialName" : "Carbon Steel", - "recycledContent" : 47, + "recycledContent" : 3, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -42248,7 +42024,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Cooper", - "recycledContent" : 42, + "recycledContent" : 12, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -42258,7 +42034,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Rubber", - "recycledContent" : 80, + "recycledContent" : 71, "materialClass" : "5.3", "quantity" : { "unit" : "unit:kilogram", @@ -42268,7 +42044,7 @@ "materialAbbreviation" : "R22" }, { "materialName" : "Textiles", - "recycledContent" : 54, + "recycledContent" : 66, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:kilogram", @@ -42279,356 +42055,356 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", "childItems" : [ { - "catenaXId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", + "catenaXId" : "urn:uuid:bd30d13e-e104-4c96-a629-aacd0413021f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "catenaXId" : "urn:uuid:fc55ad2b-672f-48af-9011-0830ff13f6d1", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "catenaXId" : "urn:uuid:e5deb7df-9f3a-477d-b96d-a9216e046a10", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", + "catenaXId" : "urn:uuid:bbb1ca68-0d86-4e23-9d13-8b66ef676f5d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", + "catenaXId" : "urn:uuid:90aa937c-b9c2-4852-922f-0918cd24d4fe", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", + "catenaXId" : "urn:uuid:08088765-8c3c-4394-8c91-394a61453725", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", + "catenaXId" : "urn:uuid:d14ce067-46ef-4105-b786-edb6ad92e804", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", + "catenaXId" : "urn:uuid:ccb989ae-d1fe-409e-9f5b-267f9a153d3b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", + "catenaXId" : "urn:uuid:7c118681-a117-401f-8cbe-31304cf8118f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", + "catenaXId" : "urn:uuid:071bf83c-ede2-41a4-b197-012f9bd35946", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", + "catenaXId" : "urn:uuid:7e5268d1-54c0-4be5-8133-adba3d1c61a6", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", + "catenaXId" : "urn:uuid:36acc9b2-4064-4f61-841c-9f94a163af8b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", + "catenaXId" : "urn:uuid:1a3d7f33-7544-446a-807e-9a110d7aaea7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", + "catenaXId" : "urn:uuid:465428c8-16bc-42ae-9f7d-d9edbe21be11", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", + "catenaXId" : "urn:uuid:2d051085-01cc-40ff-b430-4dc10e017bf4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", + "catenaXId" : "urn:uuid:1ae66169-69ae-495d-93b7-da6359c08724", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", + "catenaXId" : "urn:uuid:0e3617b8-e7f2-4383-a109-a0e73fb0f414", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", + "catenaXId" : "urn:uuid:0f443a69-0b87-49bb-b55d-defb58b9940a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", + "catenaXId" : "urn:uuid:68e2466c-4e2f-442b-b8b7-492911bae610", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", + "catenaXId" : "urn:uuid:2491ff76-5d2d-4c4a-8aa3-8a28863d0e93", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", + "catenaXId" : "urn:uuid:053623f4-8f1b-4a8a-ba61-92f5f1e2907e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", + "catenaXId" : "urn:uuid:1100d2f5-cfb6-4da1-8c87-f04b557fe8fc", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", + "catenaXId" : "urn:uuid:046583d6-fa6f-4f2c-815e-bac9e9015cf9", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", + "catenaXId" : "urn:uuid:e96c06ee-ae07-4c1b-8493-f78d4ada6c9a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", + "catenaXId" : "urn:uuid:19f8d9be-d313-4198-b1a3-e23746fd44e0", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", + "catenaXId" : "urn:uuid:6789957f-f8d1-4d4a-a254-a1d4cfcabc82", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", + "catenaXId" : "urn:uuid:6bdf64aa-3078-4ed0-b17f-2ea236faca9b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", + "catenaXId" : "urn:uuid:2cdd4ea0-8ed4-4df4-9b38-683646b175dc", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", + "catenaXId" : "urn:uuid:f80f4c6f-fd70-44fa-9d72-00e218f77c13", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "catenaXId" : "urn:uuid:12169e60-fdbf-4c75-a9a3-a374e1230da1", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "catenaXId" : "urn:uuid:74d29b3f-7f2f-49b7-b7ce-5f5e6d05ff45", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B5MJ", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { - "value" : "XM-20", + "value" : "ZZ-43", "key" : "manufacturerPartId" }, { - "value" : "OMACDBUHKIXKCMYBT", + "value" : "OMCLTKSQIIWSAVTDX", "key" : "partInstanceId" }, { - "value" : "OMACDBUHKIXKCMYBT", + "value" : "OMCLTKSQIIWSAVTDX", "key" : "van" } ], "manufacturingInformation" : { - "date" : "2020-02-01T11:52:28.000Z", + "date" : "2014-04-13T19:40:44.000Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", "partTypeInformation" : { - "manufacturerPartId" : "XM-20", + "manufacturerPartId" : "ZZ-43", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -42636,29 +42412,29 @@ } ], "nameAtManufacturer" : "Vehicle Fully Electric" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "04", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "" } } ], "urn:samm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Coupé", - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "bodyVariant" : "Cabrio-Limousine", + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", "engine" : { "size" : 2998, "power" : 143 @@ -42668,6 +42444,10 @@ "vehicleModel" : "Vehicle Fully Electric", "productionDateGMT" : "2010-01-01", "equipmentVariants" : [ { + "code" : "A01CR", + "description" : "remote engine start", + "group" : "special equipment" + }, { "code" : "S388C", "description" : "security plus", "group" : "special equipment" @@ -42676,51 +42456,47 @@ "description" : "steering wheel heating", "group" : "special equipment" }, { - "code" : "A01CR", - "description" : "remote engine start", - "group" : "special equipment" - }, { - "code" : "A458D", - "description" : "parking assistance ", + "code" : "C247R", + "description" : "trailer hitch", "group" : "special equipment" } ], "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", "mileage" : [ { "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2018-02-28", + "mileageTimestamp" : "2022-07-12", "mileageDistance" : 120000 } ] } ] }, { - "catenaXId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:bd30d13e-e104-4c96-a629-aacd0413021f", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "635211", + "orderNumber" : "925194", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "7359", + "referencedStandard" : "JASO", + "referencedStandardID" : "6712", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -42731,28 +42507,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -42761,13 +42537,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "73849201-61", "key" : "manufacturerPartId" }, { - "value" : "NO-300645322195279224647156", + "value" : "NO-058312915657981127343520", "key" : "partInstanceId" }, { "value" : "Company 10", @@ -42784,7 +42560,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", + "catenaXId" : "urn:uuid:bd30d13e-e104-4c96-a629-aacd0413021f", "partTypeInformation" : { "manufacturerPartId" : "73849201-61", "customerPartId" : "73849201-61", @@ -42796,56 +42572,54 @@ "nameAtManufacturer" : "Catalysator", "nameAtCustomer" : "Catalysator" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:bd30d13e-e104-4c96-a629-aacd0413021f", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", + "catenaXId" : "urn:uuid:bd30d13e-e104-4c96-a629-aacd0413021f", "partTypeInformation" : { "ownerPartId" : "73849201-61", - "partVersion" : "01", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Catalysator", "partClassification" : [ { "value" : "Catalysator", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Catalysator" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bd30d13e-e104-4c96-a629-aacd0413021f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "catenaXId" : "urn:uuid:fc55ad2b-672f-48af-9011-0830ff13f6d1", "childItems" : [ { - "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "catenaXId" : "urn:uuid:fa206766-3f60-49b2-84fc-7a82cd3aaa5b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000000BJTL", @@ -42853,25 +42627,25 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "catenaXId" : "urn:uuid:fc55ad2b-672f-48af-9011-0830ff13f6d1", "bpnl" : "BPNL00000003CSGV", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "306254", + "orderNumber" : "134654", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -42881,7 +42655,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "JIS", - "referencedStandardID" : "1480", + "referencedStandardID" : "6817", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -42892,28 +42666,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -42928,7 +42702,7 @@ "value" : "22782277-50", "key" : "manufacturerPartId" }, { - "value" : "NO-314061229466361556071536", + "value" : "NO-828789896602323276359989", "key" : "partInstanceId" }, { "value" : "Company 3", @@ -42945,7 +42719,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "catenaXId" : "urn:uuid:fc55ad2b-672f-48af-9011-0830ff13f6d1", "partTypeInformation" : { "manufacturerPartId" : "22782277-50", "customerPartId" : "22782277-50", @@ -42957,10 +42731,10 @@ "nameAtManufacturer" : "Door f-l", "nameAtCustomer" : "Door front-left" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "assetId" : "urn:uuid:fc55ad2b-672f-48af-9011-0830ff13f6d1", "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { "item" : [ { @@ -42969,29 +42743,29 @@ "key" : "BPNL00000003CSGV:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:15868485-0fc6-42a1-94c7-7d7d518990d0", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:7b6ea66e-54b4-4190-9eb8-28455fdacd2f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "childassetId" : "urn:uuid:fa206766-3f60-49b2-84fc-7a82cd3aaa5b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "catenaXId" : "urn:uuid:fc55ad2b-672f-48af-9011-0830ff13f6d1", "partTypeInformation" : { "ownerPartId" : "22782277-50", - "partVersion" : "01", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Door front-left", "partClassification" : [ { @@ -43001,27 +42775,25 @@ "nameAtOwner" : "Door front-left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fc55ad2b-672f-48af-9011-0830ff13f6d1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003CSGV" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "72994826PTN", + "value" : "33394911HGO", "key" : "jisNumber" } ], "manufacturingInformation" : { @@ -43032,7 +42804,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "catenaXId" : "urn:uuid:fa206766-3f60-49b2-84fc-7a82cd3aaa5b", "partTypeInformation" : { "manufacturerPartId" : "123-0.740-3434-A", "customerPartId" : "PRT-12345", @@ -43045,35 +42817,35 @@ "nameAtCustomer" : "side element A" } } ], - "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "catenaXId" : "urn:uuid:fa206766-3f60-49b2-84fc-7a82cd3aaa5b", "bpnl" : "BPNL00000000BJTL", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "188157", + "orderNumber" : "340235", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "2637", + "referencedStandard" : "AISI", + "referencedStandardID" : "5536", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -43089,23 +42861,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -43120,7 +42892,7 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-720426909780861540771729", + "value" : "NO-885256708530390045836416", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -43131,7 +42903,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "catenaXId" : "urn:uuid:fa206766-3f60-49b2-84fc-7a82cd3aaa5b", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", @@ -43143,22 +42915,22 @@ "nameAtManufacturer" : "Door Key", "nameAtCustomer" : "Door Key" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "assetId" : "urn:uuid:fa206766-3f60-49b2-84fc-7a82cd3aaa5b", "manufacturerId" : "BPNL00000000BJTL", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "catenaXId" : "urn:uuid:fa206766-3f60-49b2-84fc-7a82cd3aaa5b", "partTypeInformation" : { "ownerPartId" : "95657762-59", - "partVersion" : "04", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Door Key", "partClassification" : [ { @@ -43168,31 +42940,29 @@ "nameAtOwner" : "Door Key" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fa206766-3f60-49b2-84fc-7a82cd3aaa5b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fc55ad2b-672f-48af-9011-0830ff13f6d1", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000000BJTL" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "catenaXId" : "urn:uuid:e5deb7df-9f3a-477d-b96d-a9216e046a10", "childItems" : [ { - "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "catenaXId" : "urn:uuid:f4fb9434-6b2f-4581-8db1-eca740664964", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000000BJTL", @@ -43200,25 +42970,25 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "catenaXId" : "urn:uuid:e5deb7df-9f3a-477d-b96d-a9216e046a10", "bpnl" : "BPNL00000003CSGV", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "932970", + "orderNumber" : "544187", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -43227,8 +42997,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "9670", + "referencedStandard" : "DIN", + "referencedStandardID" : "5155", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -43240,7 +43010,7 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -43250,11 +43020,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -43275,7 +43045,7 @@ "value" : "95657362-64", "key" : "manufacturerPartId" }, { - "value" : "NO-895320576393660790702186", + "value" : "NO-454490705156894111920051", "key" : "partInstanceId" }, { "value" : "Company 4", @@ -43292,7 +43062,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "catenaXId" : "urn:uuid:e5deb7df-9f3a-477d-b96d-a9216e046a10", "partTypeInformation" : { "manufacturerPartId" : "33740332-54", "customerPartId" : "33740332-54", @@ -43304,10 +43074,10 @@ "nameAtManufacturer" : "Door f-r", "nameAtCustomer" : "Door front-right" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "assetId" : "urn:uuid:e5deb7df-9f3a-477d-b96d-a9216e046a10", "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { "item" : [ { @@ -43316,29 +43086,29 @@ "key" : "BPNL00000003CSGV:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6e00ae59-8e13-4e95-b2c5-f0d429f9c067", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:70eea669-5fc3-4160-9a69-8a2605e49b30", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "childassetId" : "urn:uuid:f4fb9434-6b2f-4581-8db1-eca740664964", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "catenaXId" : "urn:uuid:e5deb7df-9f3a-477d-b96d-a9216e046a10", "partTypeInformation" : { "ownerPartId" : "33740332-54", - "partVersion" : "01", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Door front-right", "partClassification" : [ { @@ -43348,27 +43118,25 @@ "nameAtOwner" : "Door front-right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e5deb7df-9f3a-477d-b96d-a9216e046a10", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003CSGV" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "11820948CYH", + "value" : "12893319GXN", "key" : "jisNumber" } ], "manufacturingInformation" : { @@ -43379,7 +43147,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "catenaXId" : "urn:uuid:f4fb9434-6b2f-4581-8db1-eca740664964", "partTypeInformation" : { "manufacturerPartId" : "123-0.740-3434-A", "customerPartId" : "PRT-12345", @@ -43392,35 +43160,35 @@ "nameAtCustomer" : "side element A" } } ], - "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "catenaXId" : "urn:uuid:f4fb9434-6b2f-4581-8db1-eca740664964", "bpnl" : "BPNL00000000BJTL", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "158524", + "orderNumber" : "213041", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "2020", + "referencedStandard" : "JIS", + "referencedStandardID" : "2243", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -43429,30 +43197,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -43467,7 +43235,7 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-165918348059332899986718", + "value" : "NO-499009584330431877361640", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -43478,7 +43246,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "catenaXId" : "urn:uuid:f4fb9434-6b2f-4581-8db1-eca740664964", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", @@ -43490,22 +43258,22 @@ "nameAtManufacturer" : "Door Key", "nameAtCustomer" : "Door Key" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "assetId" : "urn:uuid:f4fb9434-6b2f-4581-8db1-eca740664964", "manufacturerId" : "BPNL00000000BJTL", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "catenaXId" : "urn:uuid:f4fb9434-6b2f-4581-8db1-eca740664964", "partTypeInformation" : { "ownerPartId" : "95657762-59", - "partVersion" : "01", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Door Key", "partClassification" : [ { @@ -43515,53 +43283,51 @@ "nameAtOwner" : "Door Key" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f4fb9434-6b2f-4581-8db1-eca740664964", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e5deb7df-9f3a-477d-b96d-a9216e046a10", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000000BJTL" ] } ] }, { - "catenaXId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:bbb1ca68-0d86-4e23-9d13-8b66ef676f5d", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "928774", + "orderNumber" : "727783", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "8546", + "referencedStandard" : "DIN", + "referencedStandardID" : "3586", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -43570,30 +43336,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -43602,13 +43368,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "15635759-16", "key" : "manufacturerPartId" }, { - "value" : "NO-539699124243847797443656", + "value" : "NO-529380834656608753684129", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -43619,7 +43385,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", + "catenaXId" : "urn:uuid:bbb1ca68-0d86-4e23-9d13-8b66ef676f5d", "partTypeInformation" : { "manufacturerPartId" : "15635759-16", "customerPartId" : "15635759-16", @@ -43631,78 +43397,76 @@ "nameAtManufacturer" : "Door r-l", "nameAtCustomer" : "Door rear-left" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:bbb1ca68-0d86-4e23-9d13-8b66ef676f5d", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", + "catenaXId" : "urn:uuid:bbb1ca68-0d86-4e23-9d13-8b66ef676f5d", "partTypeInformation" : { "ownerPartId" : "15635759-16", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Door rear-left", "partClassification" : [ { "value" : "Door rear-left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Door rear-left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bbb1ca68-0d86-4e23-9d13-8b66ef676f5d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:90aa937c-b9c2-4852-922f-0918cd24d4fe", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "578586", + "orderNumber" : "259464", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "6652", + "referencedStandard" : "DIN", + "referencedStandardID" : "9413", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -43711,30 +43475,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -43743,13 +43507,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "28673126-98", "key" : "manufacturerPartId" }, { - "value" : "NO-744737867632442042678606", + "value" : "NO-870150178712038444914762", "key" : "partInstanceId" }, { "value" : "Company 5", @@ -43766,7 +43530,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", + "catenaXId" : "urn:uuid:90aa937c-b9c2-4852-922f-0918cd24d4fe", "partTypeInformation" : { "manufacturerPartId" : "28673126-98", "customerPartId" : "28673126-98", @@ -43778,78 +43542,76 @@ "nameAtManufacturer" : "Door r-r", "nameAtCustomer" : "Door rear-right" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:90aa937c-b9c2-4852-922f-0918cd24d4fe", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", + "catenaXId" : "urn:uuid:90aa937c-b9c2-4852-922f-0918cd24d4fe", "partTypeInformation" : { "ownerPartId" : "28673126-98", - "partVersion" : "03", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Door rear-right", "partClassification" : [ { "value" : "Door rear-right", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Door rear-right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:90aa937c-b9c2-4852-922f-0918cd24d4fe", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:08088765-8c3c-4394-8c91-394a61453725", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "951165", + "orderNumber" : "432267", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "8043", + "referencedStandard" : "ISO", + "referencedStandardID" : "8967", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -43860,18 +43622,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -43881,7 +43643,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -43890,13 +43652,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "94421589-82", "key" : "manufacturerPartId" }, { - "value" : "NO-590903203146053071493601", + "value" : "NO-559141980423426926539653", "key" : "partInstanceId" }, { "value" : "Company 6", @@ -43913,7 +43675,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", + "catenaXId" : "urn:uuid:08088765-8c3c-4394-8c91-394a61453725", "partTypeInformation" : { "manufacturerPartId" : "94421589-82", "customerPartId" : "94421589-82", @@ -43925,78 +43687,76 @@ "nameAtManufacturer" : "Engine hood", "nameAtCustomer" : "Engine hood" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:08088765-8c3c-4394-8c91-394a61453725", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", + "catenaXId" : "urn:uuid:08088765-8c3c-4394-8c91-394a61453725", "partTypeInformation" : { "ownerPartId" : "94421589-82", - "partVersion" : "04", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Engine hood", "partClassification" : [ { "value" : "Engine hood", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Engine hood" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:08088765-8c3c-4394-8c91-394a61453725", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:d14ce067-46ef-4105-b786-edb6ad92e804", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "37350", + "orderNumber" : "65259", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "9566", + "referencedStandard" : "ASME", + "referencedStandardID" : "5431", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -44008,27 +43768,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -44037,13 +43797,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "85023955-75", "key" : "manufacturerPartId" }, { - "value" : "NO-242804366786572471820393", + "value" : "NO-088469086393847675759224", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -44054,7 +43814,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", + "catenaXId" : "urn:uuid:d14ce067-46ef-4105-b786-edb6ad92e804", "partTypeInformation" : { "manufacturerPartId" : "85023955-75", "customerPartId" : "85023955-75", @@ -44066,78 +43826,76 @@ "nameAtManufacturer" : "Tailgate", "nameAtCustomer" : "Tailgate" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:d14ce067-46ef-4105-b786-edb6ad92e804", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", + "catenaXId" : "urn:uuid:d14ce067-46ef-4105-b786-edb6ad92e804", "partTypeInformation" : { "ownerPartId" : "85023955-75", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Tailgate", "partClassification" : [ { "value" : "Tailgate", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Tailgate" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d14ce067-46ef-4105-b786-edb6ad92e804", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:ccb989ae-d1fe-409e-9f5b-267f9a153d3b", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "646452", + "orderNumber" : "632911", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "5891", + "referencedStandard" : "EN", + "referencedStandardID" : "9419", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -44146,30 +43904,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -44178,13 +43936,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "13769860-47", "key" : "manufacturerPartId" }, { - "value" : "NO-186655058764365149435120", + "value" : "NO-352265423281673006053418", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -44195,7 +43953,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", + "catenaXId" : "urn:uuid:ccb989ae-d1fe-409e-9f5b-267f9a153d3b", "partTypeInformation" : { "manufacturerPartId" : "13769860-47", "customerPartId" : "13769860-47", @@ -44210,16 +43968,16 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:ccb989ae-d1fe-409e-9f5b-267f9a153d3b", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", + "catenaXId" : "urn:uuid:ccb989ae-d1fe-409e-9f5b-267f9a153d3b", "partTypeInformation" : { "ownerPartId" : "13769860-47", "partVersion" : "05", @@ -44227,58 +43985,56 @@ "partDescription" : "Fender right", "partClassification" : [ { "value" : "Fender right", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Fender right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ccb989ae-d1fe-409e-9f5b-267f9a153d3b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:7c118681-a117-401f-8cbe-31304cf8118f", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "835367", + "orderNumber" : "31315", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 23 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "6452", + "referencedStandard" : "AS", + "referencedStandardID" : "9484", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -44294,7 +44050,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -44304,13 +44060,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -44319,13 +44075,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "36643162-35", "key" : "manufacturerPartId" }, { - "value" : "NO-325730621671852447010652", + "value" : "NO-612914357446690451421383", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -44336,7 +44092,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", + "catenaXId" : "urn:uuid:7c118681-a117-401f-8cbe-31304cf8118f", "partTypeInformation" : { "manufacturerPartId" : "36643162-35", "customerPartId" : "36643162-35", @@ -44348,78 +44104,76 @@ "nameAtManufacturer" : "Fender right", "nameAtCustomer" : "Fender right" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:7c118681-a117-401f-8cbe-31304cf8118f", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", + "catenaXId" : "urn:uuid:7c118681-a117-401f-8cbe-31304cf8118f", "partTypeInformation" : { "ownerPartId" : "36643162-35", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Fender right", "partClassification" : [ { "value" : "Fender right", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Fender right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7c118681-a117-401f-8cbe-31304cf8118f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:071bf83c-ede2-41a4-b197-012f9bd35946", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "424181", + "orderNumber" : "959336", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "7559", + "referencedStandard" : "JIS", + "referencedStandardID" : "8008", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -44428,9 +44182,9 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { @@ -44441,17 +44195,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -44460,13 +44214,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "54165444-59", "key" : "manufacturerPartId" }, { - "value" : "NO-056039171230050894869071", + "value" : "NO-738575759557152059293185", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -44477,7 +44231,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", + "catenaXId" : "urn:uuid:071bf83c-ede2-41a4-b197-012f9bd35946", "partTypeInformation" : { "manufacturerPartId" : "54165444-59", "customerPartId" : "54165444-59", @@ -44489,78 +44243,76 @@ "nameAtManufacturer" : "Bumper front", "nameAtCustomer" : "Bumper front" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:071bf83c-ede2-41a4-b197-012f9bd35946", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", + "catenaXId" : "urn:uuid:071bf83c-ede2-41a4-b197-012f9bd35946", "partTypeInformation" : { "ownerPartId" : "54165444-59", - "partVersion" : "04", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Bumper front", "partClassification" : [ { "value" : "Bumper front", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Bumper front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:071bf83c-ede2-41a4-b197-012f9bd35946", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:7e5268d1-54c0-4be5-8133-adba3d1c61a6", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "374858", + "orderNumber" : "443701", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "5133", + "referencedStandard" : "AISI", + "referencedStandardID" : "7998", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -44572,27 +44324,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -44601,13 +44353,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "22768257-25", "key" : "manufacturerPartId" }, { - "value" : "NO-929360720249973155212015", + "value" : "NO-595595006629612700374000", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -44618,7 +44370,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", + "catenaXId" : "urn:uuid:7e5268d1-54c0-4be5-8133-adba3d1c61a6", "partTypeInformation" : { "manufacturerPartId" : "22768257-25", "customerPartId" : "22768257-25", @@ -44630,78 +44382,76 @@ "nameAtManufacturer" : "Bumper rear", "nameAtCustomer" : "Bumper rear" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:7e5268d1-54c0-4be5-8133-adba3d1c61a6", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", + "catenaXId" : "urn:uuid:7e5268d1-54c0-4be5-8133-adba3d1c61a6", "partTypeInformation" : { "ownerPartId" : "22768257-25", - "partVersion" : "04", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Bumper rear", "partClassification" : [ { "value" : "Bumper rear", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Bumper rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7e5268d1-54c0-4be5-8133-adba3d1c61a6", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:36acc9b2-4064-4f61-841c-9f94a163af8b", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "123490", + "orderNumber" : "648459", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "4347", + "referencedStandard" : "EN", + "referencedStandardID" : "9152", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -44712,28 +44462,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -44742,13 +44492,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "65529521-37", "key" : "manufacturerPartId" }, { - "value" : "NO-024321342753700806308454", + "value" : "NO-586221622801763693687724", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -44759,7 +44509,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", + "catenaXId" : "urn:uuid:36acc9b2-4064-4f61-841c-9f94a163af8b", "partTypeInformation" : { "manufacturerPartId" : "65529521-37", "customerPartId" : "65529521-37", @@ -44771,78 +44521,76 @@ "nameAtManufacturer" : "Exterior mirror left", "nameAtCustomer" : "Exterior mirror left" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:36acc9b2-4064-4f61-841c-9f94a163af8b", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", + "catenaXId" : "urn:uuid:36acc9b2-4064-4f61-841c-9f94a163af8b", "partTypeInformation" : { "ownerPartId" : "65529521-37", - "partVersion" : "01", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Exterior mirror left", "partClassification" : [ { "value" : "Exterior mirror left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Exterior mirror left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:36acc9b2-4064-4f61-841c-9f94a163af8b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:1a3d7f33-7544-446a-807e-9a110d7aaea7", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "441430", + "orderNumber" : "649035", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "5392", + "referencedStandard" : "IS", + "referencedStandardID" : "2361", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -44851,14 +44599,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -44868,13 +44616,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -44883,13 +44631,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "58471477-24", "key" : "manufacturerPartId" }, { - "value" : "NO-662646120446395356026373", + "value" : "NO-944539773288669451332122", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -44900,7 +44648,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", + "catenaXId" : "urn:uuid:1a3d7f33-7544-446a-807e-9a110d7aaea7", "partTypeInformation" : { "manufacturerPartId" : "58471477-24", "customerPartId" : "58471477-24", @@ -44912,68 +44660,66 @@ "nameAtManufacturer" : "Exterior mirror right", "nameAtCustomer" : "Exterior mirror right" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:1a3d7f33-7544-446a-807e-9a110d7aaea7", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", + "catenaXId" : "urn:uuid:1a3d7f33-7544-446a-807e-9a110d7aaea7", "partTypeInformation" : { "ownerPartId" : "58471477-24", - "partVersion" : "03", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Exterior mirror right", "partClassification" : [ { "value" : "Exterior mirror right", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Exterior mirror right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1a3d7f33-7544-446a-807e-9a110d7aaea7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:465428c8-16bc-42ae-9f7d-d9edbe21be11", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "152188", + "orderNumber" : "146187", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -44982,8 +44728,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "7828", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "8894", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -44992,10 +44738,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -45005,7 +44751,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -45015,7 +44761,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -45024,13 +44770,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "09002013-68", "key" : "manufacturerPartId" }, { - "value" : "NO-819527814255352957903088", + "value" : "NO-090046616329838127958612", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -45041,7 +44787,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", + "catenaXId" : "urn:uuid:465428c8-16bc-42ae-9f7d-d9edbe21be11", "partTypeInformation" : { "manufacturerPartId" : "09002013-68", "customerPartId" : "09002013-68", @@ -45056,16 +44802,16 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:465428c8-16bc-42ae-9f7d-d9edbe21be11", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", + "catenaXId" : "urn:uuid:465428c8-16bc-42ae-9f7d-d9edbe21be11", "partTypeInformation" : { "ownerPartId" : "09002013-68", "partVersion" : "01", @@ -45073,58 +44819,56 @@ "partDescription" : "Tailer coupling", "partClassification" : [ { "value" : "Tailer coupling", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Tailer coupling" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:465428c8-16bc-42ae-9f7d-d9edbe21be11", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:2d051085-01cc-40ff-b430-4dc10e017bf4", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "79195", + "orderNumber" : "84028", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "2941", + "referencedStandard" : "AISI", + "referencedStandardID" : "2337", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -45133,30 +44877,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -45165,13 +44909,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "43501996-98", "key" : "manufacturerPartId" }, { - "value" : "NO-971046622889574251783182", + "value" : "NO-462536285410053826378363", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -45182,7 +44926,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", + "catenaXId" : "urn:uuid:2d051085-01cc-40ff-b430-4dc10e017bf4", "partTypeInformation" : { "manufacturerPartId" : "43501996-98", "customerPartId" : "43501996-98", @@ -45197,16 +44941,16 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:2d051085-01cc-40ff-b430-4dc10e017bf4", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", + "catenaXId" : "urn:uuid:2d051085-01cc-40ff-b430-4dc10e017bf4", "partTypeInformation" : { "ownerPartId" : "43501996-98", "partVersion" : "03", @@ -45214,58 +44958,56 @@ "partDescription" : "Dashboard", "partClassification" : [ { "value" : "Dashboard", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Dashboard" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2d051085-01cc-40ff-b430-4dc10e017bf4", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:1ae66169-69ae-495d-93b7-da6359c08724", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "271520", + "orderNumber" : "480058", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "9795", + "referencedStandard" : "IS", + "referencedStandardID" : "4290", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -45274,24 +45016,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -45306,13 +45048,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "77795937-13", "key" : "manufacturerPartId" }, { - "value" : "NO-482042071643254440574034", + "value" : "NO-172274751687857627767355", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -45323,7 +45065,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", + "catenaXId" : "urn:uuid:1ae66169-69ae-495d-93b7-da6359c08724", "partTypeInformation" : { "manufacturerPartId" : "77795937-13", "customerPartId" : "77795937-13", @@ -45335,78 +45077,76 @@ "nameAtManufacturer" : "Steering wheel", "nameAtCustomer" : "Steering wheel" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:1ae66169-69ae-495d-93b7-da6359c08724", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", + "catenaXId" : "urn:uuid:1ae66169-69ae-495d-93b7-da6359c08724", "partTypeInformation" : { "ownerPartId" : "77795937-13", - "partVersion" : "05", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Steering wheel", "partClassification" : [ { "value" : "Steering wheel", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Steering wheel" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1ae66169-69ae-495d-93b7-da6359c08724", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:0e3617b8-e7f2-4383-a109-a0e73fb0f414", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "144638", + "orderNumber" : "425930", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "1999", + "referencedStandard" : "GB", + "referencedStandardID" : "9430", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -45415,10 +45155,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -45428,17 +45168,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -45447,13 +45187,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "20125432-59", "key" : "manufacturerPartId" }, { - "value" : "NO-777931149768338951967480", + "value" : "NO-579949786958122834348139", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -45464,7 +45204,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", + "catenaXId" : "urn:uuid:0e3617b8-e7f2-4383-a109-a0e73fb0f414", "partTypeInformation" : { "manufacturerPartId" : "20125432-59", "customerPartId" : "20125432-59", @@ -45479,16 +45219,16 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:0e3617b8-e7f2-4383-a109-a0e73fb0f414", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", + "catenaXId" : "urn:uuid:0e3617b8-e7f2-4383-a109-a0e73fb0f414", "partTypeInformation" : { "ownerPartId" : "20125432-59", "partVersion" : "03", @@ -45496,58 +45236,56 @@ "partDescription" : "Indicator left", "partClassification" : [ { "value" : "Indicator left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Indicator left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0e3617b8-e7f2-4383-a109-a0e73fb0f414", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:0f443a69-0b87-49bb-b55d-defb58b9940a", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "198744", + "orderNumber" : "318204", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "3706", + "referencedStandard" : "DIN", + "referencedStandardID" : "4190", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -45556,14 +45294,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -45579,7 +45317,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -45588,13 +45326,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "19073706-76", "key" : "manufacturerPartId" }, { - "value" : "NO-878560885728027798550134", + "value" : "NO-048096235253954167013742", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -45605,7 +45343,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", + "catenaXId" : "urn:uuid:0f443a69-0b87-49bb-b55d-defb58b9940a", "partTypeInformation" : { "manufacturerPartId" : "19073706-76", "customerPartId" : "19073706-76", @@ -45617,78 +45355,76 @@ "nameAtManufacturer" : "Indicator right", "nameAtCustomer" : "Indicator right" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:0f443a69-0b87-49bb-b55d-defb58b9940a", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", + "catenaXId" : "urn:uuid:0f443a69-0b87-49bb-b55d-defb58b9940a", "partTypeInformation" : { "ownerPartId" : "19073706-76", - "partVersion" : "02", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Indicator right", "partClassification" : [ { "value" : "Indicator right", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Indicator right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0f443a69-0b87-49bb-b55d-defb58b9940a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:68e2466c-4e2f-442b-b8b7-492911bae610", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "658003", + "orderNumber" : "575362", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "AISI", - "referencedStandardID" : "8572", + "referencedStandardID" : "7976", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -45699,28 +45435,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -45729,13 +45465,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "45415162-57", "key" : "manufacturerPartId" }, { - "value" : "NO-805496419550529915215563", + "value" : "NO-177557979104500280812861", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -45746,7 +45482,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", + "catenaXId" : "urn:uuid:68e2466c-4e2f-442b-b8b7-492911bae610", "partTypeInformation" : { "manufacturerPartId" : "45415162-57", "customerPartId" : "45415162-57", @@ -45758,78 +45494,76 @@ "nameAtManufacturer" : "Led headlight", "nameAtCustomer" : "Led headlight" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:68e2466c-4e2f-442b-b8b7-492911bae610", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", + "catenaXId" : "urn:uuid:68e2466c-4e2f-442b-b8b7-492911bae610", "partTypeInformation" : { "ownerPartId" : "45415162-57", - "partVersion" : "02", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Led headlight", "partClassification" : [ { "value" : "Led headlight", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Led headlight" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:68e2466c-4e2f-442b-b8b7-492911bae610", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:2491ff76-5d2d-4c4a-8aa3-8a28863d0e93", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "368794", + "orderNumber" : "264771", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "8922", + "referencedStandard" : "EN", + "referencedStandardID" : "7444", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -45840,28 +45574,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -45870,13 +45604,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "78141846-87", "key" : "manufacturerPartId" }, { - "value" : "NO-433766484921905567586722", + "value" : "NO-557750946606305333383371", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -45887,7 +45621,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", + "catenaXId" : "urn:uuid:2491ff76-5d2d-4c4a-8aa3-8a28863d0e93", "partTypeInformation" : { "manufacturerPartId" : "78141846-87", "customerPartId" : "78141846-87", @@ -45899,78 +45633,76 @@ "nameAtManufacturer" : "Starter motor", "nameAtCustomer" : "Starter motor" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:2491ff76-5d2d-4c4a-8aa3-8a28863d0e93", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", + "catenaXId" : "urn:uuid:2491ff76-5d2d-4c4a-8aa3-8a28863d0e93", "partTypeInformation" : { "ownerPartId" : "78141846-87", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Starter motor", "partClassification" : [ { "value" : "Starter motor", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Starter motor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2491ff76-5d2d-4c4a-8aa3-8a28863d0e93", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:053623f4-8f1b-4a8a-ba61-92f5f1e2907e", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "234878", + "orderNumber" : "695689", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "4094", + "referencedStandard" : "JASO", + "referencedStandardID" : "2910", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -45979,10 +45711,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -45992,17 +45724,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -46011,13 +45743,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "81324139-23", "key" : "manufacturerPartId" }, { - "value" : "NO-073558896157054603099567", + "value" : "NO-214979211528771174001672", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -46028,7 +45760,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", + "catenaXId" : "urn:uuid:053623f4-8f1b-4a8a-ba61-92f5f1e2907e", "partTypeInformation" : { "manufacturerPartId" : "81324139-23", "customerPartId" : "81324139-23", @@ -46040,53 +45772,51 @@ "nameAtManufacturer" : "Alternator", "nameAtCustomer" : "Alternator" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:053623f4-8f1b-4a8a-ba61-92f5f1e2907e", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", + "catenaXId" : "urn:uuid:053623f4-8f1b-4a8a-ba61-92f5f1e2907e", "partTypeInformation" : { "ownerPartId" : "81324139-23", - "partVersion" : "02", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Alternator", "partClassification" : [ { "value" : "Alternator", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Alternator" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:053623f4-8f1b-4a8a-ba61-92f5f1e2907e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:1100d2f5-cfb6-4da1-8c87-f04b557fe8fc", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "480191", + "orderNumber" : "154812", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -46099,19 +45829,19 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "4281", + "referencedStandard" : "GB", + "referencedStandardID" : "1479", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -46120,30 +45850,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -46152,13 +45882,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "57929013-09", "key" : "manufacturerPartId" }, { - "value" : "NO-816086921018811899598551", + "value" : "NO-014664588560503861143502", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -46169,7 +45899,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", + "catenaXId" : "urn:uuid:1100d2f5-cfb6-4da1-8c87-f04b557fe8fc", "partTypeInformation" : { "manufacturerPartId" : "57929013-09", "customerPartId" : "57929013-09", @@ -46181,78 +45911,76 @@ "nameAtManufacturer" : "AC compressor", "nameAtCustomer" : "Air conditioning compressor" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:1100d2f5-cfb6-4da1-8c87-f04b557fe8fc", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", + "catenaXId" : "urn:uuid:1100d2f5-cfb6-4da1-8c87-f04b557fe8fc", "partTypeInformation" : { "ownerPartId" : "57929013-09", - "partVersion" : "02", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Air conditioning compressor", "partClassification" : [ { "value" : "Air conditioning compressor", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Air conditioning compressor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1100d2f5-cfb6-4da1-8c87-f04b557fe8fc", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:046583d6-fa6f-4f2c-815e-bac9e9015cf9", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "908858", + "orderNumber" : "830407", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 23 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "2172", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "2313", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -46264,7 +45992,7 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -46274,17 +46002,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -46293,13 +46021,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "61184040-23", "key" : "manufacturerPartId" }, { - "value" : "NO-395437355406898483813611", + "value" : "NO-217207783928800567323032", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -46310,7 +46038,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", + "catenaXId" : "urn:uuid:046583d6-fa6f-4f2c-815e-bac9e9015cf9", "partTypeInformation" : { "manufacturerPartId" : "61184040-23", "customerPartId" : "61184040-23", @@ -46322,78 +46050,76 @@ "nameAtManufacturer" : "Taillight rear", "nameAtCustomer" : "Taillight rear" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:046583d6-fa6f-4f2c-815e-bac9e9015cf9", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", + "catenaXId" : "urn:uuid:046583d6-fa6f-4f2c-815e-bac9e9015cf9", "partTypeInformation" : { "ownerPartId" : "61184040-23", - "partVersion" : "05", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Taillight rear", "partClassification" : [ { "value" : "Taillight rear", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Taillight rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:046583d6-fa6f-4f2c-815e-bac9e9015cf9", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:e96c06ee-ae07-4c1b-8493-f78d4ada6c9a", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "194779", + "orderNumber" : "448238", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "8922", + "referencedStandard" : "AS", + "referencedStandardID" : "6986", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -46404,28 +46130,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -46434,13 +46160,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "78744126-74", "key" : "manufacturerPartId" }, { - "value" : "NO-614870102083581603073819", + "value" : "NO-192432464950241883302809", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -46451,7 +46177,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", + "catenaXId" : "urn:uuid:e96c06ee-ae07-4c1b-8493-f78d4ada6c9a", "partTypeInformation" : { "manufacturerPartId" : "78744126-74", "customerPartId" : "78744126-74", @@ -46466,16 +46192,16 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:e96c06ee-ae07-4c1b-8493-f78d4ada6c9a", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", + "catenaXId" : "urn:uuid:e96c06ee-ae07-4c1b-8493-f78d4ada6c9a", "partTypeInformation" : { "ownerPartId" : "78744126-74", "partVersion" : "02", @@ -46483,58 +46209,56 @@ "partDescription" : "Taillight front", "partClassification" : [ { "value" : "Taillight front", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Taillight front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e96c06ee-ae07-4c1b-8493-f78d4ada6c9a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:19f8d9be-d313-4198-b1a3-e23746fd44e0", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "873737", + "orderNumber" : "45489", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "9214", + "referencedStandard" : "ASME", + "referencedStandardID" : "8359", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -46545,22 +46269,22 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -46575,13 +46299,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "12093297-03", "key" : "manufacturerPartId" }, { - "value" : "NO-523227635506203515129330", + "value" : "NO-688886052161401712154236", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -46592,7 +46316,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", + "catenaXId" : "urn:uuid:19f8d9be-d313-4198-b1a3-e23746fd44e0", "partTypeInformation" : { "manufacturerPartId" : "12093297-03", "customerPartId" : "12093297-03", @@ -46604,78 +46328,76 @@ "nameAtManufacturer" : "Axle part front", "nameAtCustomer" : "Axle part front" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:19f8d9be-d313-4198-b1a3-e23746fd44e0", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", + "catenaXId" : "urn:uuid:19f8d9be-d313-4198-b1a3-e23746fd44e0", "partTypeInformation" : { "ownerPartId" : "12093297-03", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Axle part front", "partClassification" : [ { "value" : "Axle part front", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Axle part front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:19f8d9be-d313-4198-b1a3-e23746fd44e0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:6789957f-f8d1-4d4a-a254-a1d4cfcabc82", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "480761", + "orderNumber" : "672519", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "4751", + "referencedStandard" : "IS", + "referencedStandardID" : "6415", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -46684,10 +46406,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -46707,7 +46429,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -46716,13 +46438,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "88111709-49", "key" : "manufacturerPartId" }, { - "value" : "NO-518500285938140196776423", + "value" : "NO-283792124536385275336832", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -46733,7 +46455,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", + "catenaXId" : "urn:uuid:6789957f-f8d1-4d4a-a254-a1d4cfcabc82", "partTypeInformation" : { "manufacturerPartId" : "88111709-49", "customerPartId" : "88111709-49", @@ -46745,78 +46467,76 @@ "nameAtManufacturer" : "Axle part rear", "nameAtCustomer" : "Axle part rear" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:6789957f-f8d1-4d4a-a254-a1d4cfcabc82", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", + "catenaXId" : "urn:uuid:6789957f-f8d1-4d4a-a254-a1d4cfcabc82", "partTypeInformation" : { "ownerPartId" : "88111709-49", - "partVersion" : "03", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Axle part rear", "partClassification" : [ { "value" : "Axle part rear", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Axle part rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6789957f-f8d1-4d4a-a254-a1d4cfcabc82", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:6bdf64aa-3078-4ed0-b17f-2ea236faca9b", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "143358", + "orderNumber" : "37259", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "1168", + "referencedStandard" : "EN", + "referencedStandardID" : "1976", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -46827,8 +46547,8 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -46838,7 +46558,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -46848,7 +46568,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -46857,13 +46577,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "00871379-44", "key" : "manufacturerPartId" }, { - "value" : "NO-130941702964351461890844", + "value" : "NO-508556332461303289237835", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -46874,7 +46594,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", + "catenaXId" : "urn:uuid:6bdf64aa-3078-4ed0-b17f-2ea236faca9b", "partTypeInformation" : { "manufacturerPartId" : "00871379-44", "customerPartId" : "00871379-44", @@ -46886,68 +46606,66 @@ "nameAtManufacturer" : "Chassis", "nameAtCustomer" : "Chassis" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:6bdf64aa-3078-4ed0-b17f-2ea236faca9b", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", + "catenaXId" : "urn:uuid:6bdf64aa-3078-4ed0-b17f-2ea236faca9b", "partTypeInformation" : { "ownerPartId" : "00871379-44", - "partVersion" : "02", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Chassis", "partClassification" : [ { "value" : "Chassis", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Chassis" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6bdf64aa-3078-4ed0-b17f-2ea236faca9b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:2cdd4ea0-8ed4-4df4-9b38-683646b175dc", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "37456", + "orderNumber" : "399718", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -46957,7 +46675,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "GB", - "referencedStandardID" : "3981", + "referencedStandardID" : "3122", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -46966,30 +46684,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -46998,13 +46716,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "08901347-87", "key" : "manufacturerPartId" }, { - "value" : "NO-280503950043440030561882", + "value" : "NO-434707457533005899553424", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -47015,7 +46733,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", + "catenaXId" : "urn:uuid:2cdd4ea0-8ed4-4df4-9b38-683646b175dc", "partTypeInformation" : { "manufacturerPartId" : "08901347-87", "customerPartId" : "08901347-87", @@ -47027,78 +46745,76 @@ "nameAtManufacturer" : "Rims", "nameAtCustomer" : "Rims" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:2cdd4ea0-8ed4-4df4-9b38-683646b175dc", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", + "catenaXId" : "urn:uuid:2cdd4ea0-8ed4-4df4-9b38-683646b175dc", "partTypeInformation" : { "ownerPartId" : "08901347-87", - "partVersion" : "04", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Rims", "partClassification" : [ { "value" : "Rims", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Rims" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2cdd4ea0-8ed4-4df4-9b38-683646b175dc", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:f80f4c6f-fd70-44fa-9d72-00e218f77c13", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "333033", + "orderNumber" : "180047", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 7 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "9489", + "referencedStandard" : "DIN", + "referencedStandardID" : "9236", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -47107,30 +46823,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -47139,13 +46855,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "45863316-60", "key" : "manufacturerPartId" }, { - "value" : "NO-658219514540661622362738", + "value" : "NO-883323395134521591790236", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -47156,7 +46872,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", + "catenaXId" : "urn:uuid:f80f4c6f-fd70-44fa-9d72-00e218f77c13", "partTypeInformation" : { "manufacturerPartId" : "45863316-60", "customerPartId" : "45863316-60", @@ -47168,53 +46884,51 @@ "nameAtManufacturer" : "Tires", "nameAtCustomer" : "Tires" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:f80f4c6f-fd70-44fa-9d72-00e218f77c13", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", + "catenaXId" : "urn:uuid:f80f4c6f-fd70-44fa-9d72-00e218f77c13", "partTypeInformation" : { "ownerPartId" : "45863316-60", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Tires", "partClassification" : [ { "value" : "Tires", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Tires" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f80f4c6f-fd70-44fa-9d72-00e218f77c13", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Carbon Steel", - "recycledContent" : 40, + "recycledContent" : 39, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -47224,7 +46938,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Oil", - "recycledContent" : 18, + "recycledContent" : 16, "materialClass" : "9.2", "quantity" : { "unit" : "unit:kilogram", @@ -47234,7 +46948,7 @@ "materialAbbreviation" : "SAE40" }, { "materialName" : "Copper", - "recycledContent" : 53, + "recycledContent" : 60, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -47245,32 +46959,32 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "catenaXId" : "urn:uuid:12169e60-fdbf-4c75-a9a3-a374e1230da1", "childItems" : [ { - "catenaXId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "catenaXId" : "urn:uuid:e8d6a2f5-54dc-4804-ad2e-5e2fa831427b", "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2014 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "catenaXId" : "urn:uuid:54d44a03-4b09-4871-85a8-8015d10aa192", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "catenaXId" : "urn:uuid:61f951ef-6a05-4420-8555-8ed1557db0e1", "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2341 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AZQP", @@ -47278,35 +46992,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "catenaXId" : "urn:uuid:12169e60-fdbf-4c75-a9a3-a374e1230da1", "bpnl" : "BPNL00000003B2OM", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "46370", + "orderNumber" : "809141", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "2419", + "referencedStandard" : "DIN", + "referencedStandardID" : "7597", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -47317,12 +47031,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -47332,7 +47046,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -47353,7 +47067,7 @@ "value" : "42555H1-52", "key" : "manufacturerPartId" }, { - "value" : "NO-851136035392705186021761", + "value" : "NO-668588073256148815627504", "key" : "partInstanceId" }, { "value" : "Company 2", @@ -47370,7 +47084,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "catenaXId" : "urn:uuid:12169e60-fdbf-4c75-a9a3-a374e1230da1", "partTypeInformation" : { "manufacturerPartId" : "42555H1-52", "customerPartId" : "42555H1-52", @@ -47382,29 +47096,29 @@ "nameAtManufacturer" : "Transmission", "nameAtCustomer" : "Transmission" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "assetId" : "urn:uuid:12169e60-fdbf-4c75-a9a3-a374e1230da1", "manufacturerId" : "BPNL00000003B2OM", "childItems" : [ { "item" : [ { "itemClassification" : [ { - "value" : "Engineering Plastics", + "value" : "Mirror left", "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:de5b5e6a-cf86-48b9-aa15-0f054f002c18", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:18d3f28c-eed4-44dc-baea-7e14319131af", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "childassetId" : "urn:uuid:e8d6a2f5-54dc-4804-ad2e-5e2fa831427b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -47413,17 +47127,17 @@ "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:774fe44f-2cc3-46fd-b484-1731623d80af", + "ownerItemId" : "urn:uuid:5ccdb51a-47dd-47d7-b421-64dc9540278b", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "childassetId" : "urn:uuid:54d44a03-4b09-4871-85a8-8015d10aa192", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -47432,17 +47146,17 @@ "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:eb4873b6-5fff-4dc8-9ea6-99ff6ae31368", + "ownerItemId" : "urn:uuid:fc2fe420-f38e-4681-9370-a413ccd06699", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "childassetId" : "urn:uuid:61f951ef-6a05-4420-8555-8ed1557db0e1", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -47455,24 +47169,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", - "partTypeInformation" : { - "ownerPartId" : "42555H1-52", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "Transmission", - "partClassification" : [ { - "value" : "Transmission", - "key" : "BPNL00000003B2OM:PartFamily" - } ], - "nameAtOwner" : "Transmission" - } - } ], "urn:samm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { "productSpecificParameters" : { "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], @@ -47514,10 +47210,10 @@ "documentTitle" : "Title A" } ] }, - "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "catenaXId" : "urn:uuid:12169e60-fdbf-4c75-a9a3-a374e1230da1", "identification" : { "localIdentifiers" : [ { - "value" : "NO-851136035392705186021761", + "value" : "NO-668588073256148815627504", "key" : "PartInstanceID" } ], "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", @@ -47583,22 +47279,38 @@ "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:12169e60-fdbf-4c75-a9a3-a374e1230da1", + "partTypeInformation" : { + "ownerPartId" : "42555H1-52", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Transmission", + "partClassification" : [ { + "value" : "Transmission", + "key" : "BPNL00000003B2OM:PartFamily" } ], + "nameAtOwner" : "Transmission" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:12169e60-fdbf-4c75-a9a3-a374e1230da1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B2OM" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -47606,7 +47318,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 64, + "recycledContent" : 60, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -47616,7 +47328,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 46, + "recycledContent" : 55, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -47626,35 +47338,35 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "catenaXId" : "urn:uuid:e8d6a2f5-54dc-4804-ad2e-5e2fa831427b", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "800329", + "orderNumber" : "518408", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "7680", + "referencedStandard" : "IS", + "referencedStandardID" : "2049", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -47663,30 +47375,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -47694,7 +47406,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "assetId" : "urn:uuid:e8d6a2f5-54dc-4804-ad2e-5e2fa831427b", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -47711,27 +47423,27 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "catenaXId" : "urn:uuid:e8d6a2f5-54dc-4804-ad2e-5e2fa831427b", "partTypeInformation" : { - "manufacturerPartId" : "GP-33", + "manufacturerPartId" : "CI-20", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "Engineering Plastics" + "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "catenaXId" : "urn:uuid:e8d6a2f5-54dc-4804-ad2e-5e2fa831427b", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "02", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -47741,31 +47453,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e8d6a2f5-54dc-4804-ad2e-5e2fa831427b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12169e60-fdbf-4c75-a9a3-a374e1230da1", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "catenaXId" : "urn:uuid:54d44a03-4b09-4871-85a8-8015d10aa192", "childItems" : [ { - "catenaXId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "catenaXId" : "urn:uuid:8b2e73f0-99af-4356-b9ed-df817f625f80", "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.1908 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -47773,35 +47483,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "catenaXId" : "urn:uuid:54d44a03-4b09-4871-85a8-8015d10aa192", "bpnl" : "BPNL00000003B3NX", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "54014", + "orderNumber" : "446136", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "9905", + "referencedStandard" : "ISO", + "referencedStandardID" : "9255", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -47810,7 +47520,7 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 11 @@ -47823,17 +47533,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -47845,10 +47555,10 @@ "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "10955Z5-05", + "value" : "16197V4-00", "key" : "manufacturerPartId" }, { - "value" : "NO-314977894611835991781438", + "value" : "NO-852975893046307291892542", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -47859,10 +47569,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "catenaXId" : "urn:uuid:54d44a03-4b09-4871-85a8-8015d10aa192", "partTypeInformation" : { - "manufacturerPartId" : "10955Z5-05", - "customerPartId" : "10955Z5-05", + "manufacturerPartId" : "16197V4-00", + "customerPartId" : "16197V4-00", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -47874,7 +47584,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "assetId" : "urn:uuid:54d44a03-4b09-4871-85a8-8015d10aa192", "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { "item" : [ { @@ -47883,28 +47593,28 @@ "key" : "BPNL00000003B3NX:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d1581541-ec5c-46d3-b00c-e0496313a615", + "ownerItemId" : "urn:uuid:eecc1109-f7a8-48fd-a079-efd0527041be", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "childassetId" : "urn:uuid:8b2e73f0-99af-4356-b9ed-df817f625f80", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "catenaXId" : "urn:uuid:54d44a03-4b09-4871-85a8-8015d10aa192", "partTypeInformation" : { - "ownerPartId" : "10955Z5-05", + "ownerPartId" : "16197V4-00", "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Sensor", @@ -47915,22 +47625,20 @@ "nameAtOwner" : "Sensor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:54d44a03-4b09-4871-85a8-8015d10aa192", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12169e60-fdbf-4c75-a9a3-a374e1230da1", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B3NX" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -47938,7 +47646,7 @@ "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 57, + "recycledContent" : 21, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -47948,7 +47656,7 @@ "materialAbbreviation" : "" }, { "materialName" : "Other", - "recycledContent" : 14, + "recycledContent" : 11, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -47958,35 +47666,35 @@ "materialAbbreviation" : "" } ] } ], - "catenaXId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "catenaXId" : "urn:uuid:8b2e73f0-99af-4356-b9ed-df817f625f80", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "79565", + "orderNumber" : "835948", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "5884", + "referencedStandard" : "JASO", + "referencedStandardID" : "3042", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -48002,23 +47710,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -48026,7 +47734,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "assetId" : "urn:uuid:8b2e73f0-99af-4356-b9ed-df817f625f80", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -48043,9 +47751,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "catenaXId" : "urn:uuid:8b2e73f0-99af-4356-b9ed-df817f625f80", "partTypeInformation" : { - "manufacturerPartId" : "RF-05", + "manufacturerPartId" : "MJ-27", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -48055,12 +47763,12 @@ }, "itemVersion" : "05" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "catenaXId" : "urn:uuid:8b2e73f0-99af-4356-b9ed-df817f625f80", "partTypeInformation" : { "ownerPartId" : "", "partVersion" : "05", @@ -48073,26 +47781,24 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8b2e73f0-99af-4356-b9ed-df817f625f80", + "parentItems" : [ { + "catenaXId" : "urn:uuid:54d44a03-4b09-4871-85a8-8015d10aa192", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "catenaXId" : "urn:uuid:61f951ef-6a05-4420-8555-8ed1557db0e1", "childItems" : [ ] } ], "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -48107,35 +47813,35 @@ "materialAbbreviation" : "GL338" } ] } ], - "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "catenaXId" : "urn:uuid:61f951ef-6a05-4420-8555-8ed1557db0e1", "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "562585", + "orderNumber" : "377572", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "3646", + "referencedStandard" : "GB", + "referencedStandardID" : "9331", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -48144,30 +47850,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -48175,7 +47881,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "assetId" : "urn:uuid:61f951ef-6a05-4420-8555-8ed1557db0e1", "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] } ], @@ -48192,9 +47898,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "catenaXId" : "urn:uuid:61f951ef-6a05-4420-8555-8ed1557db0e1", "partTypeInformation" : { - "manufacturerPartId" : "VH-77", + "manufacturerPartId" : "SS-55", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -48204,12 +47910,12 @@ }, "itemVersion" : "02" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "catenaXId" : "urn:uuid:61f951ef-6a05-4420-8555-8ed1557db0e1", "partTypeInformation" : { "ownerPartId" : "", "partVersion" : "02", @@ -48222,28 +47928,26 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:61f951ef-6a05-4420-8555-8ed1557db0e1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12169e60-fdbf-4c75-a9a3-a374e1230da1", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Glue", - "recycledContent" : 9, + "recycledContent" : 7, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -48254,32 +47958,32 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "catenaXId" : "urn:uuid:74d29b3f-7f2f-49b7-b7ce-5f5e6d05ff45", "childItems" : [ { - "catenaXId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "catenaXId" : "urn:uuid:38bfd27e-51bb-4691-8517-c3bd077733ac", "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.3301 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "catenaXId" : "urn:uuid:979e87c6-8d01-431e-8a34-829ab811b0ef", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "catenaXId" : "urn:uuid:43450b91-3895-4c15-8f85-a614b68678cc", "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2001 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -48287,35 +47991,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "catenaXId" : "urn:uuid:74d29b3f-7f2f-49b7-b7ce-5f5e6d05ff45", "bpnl" : "BPNL00000003B5MJ", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "341632", + "orderNumber" : "240363", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 23 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "8806", + "referencedStandard" : "ISO", + "referencedStandardID" : "9754", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -48324,30 +48028,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -48359,10 +48063,10 @@ "value" : "BPNL00000003B5MJ", "key" : "manufacturerId" }, { - "value" : "63085P2-81", + "value" : "77085T0-51", "key" : "manufacturerPartId" }, { - "value" : "NO-751896380643428446985611", + "value" : "NO-454563464853769874329904", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -48373,10 +48077,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "catenaXId" : "urn:uuid:74d29b3f-7f2f-49b7-b7ce-5f5e6d05ff45", "partTypeInformation" : { - "manufacturerPartId" : "63085P2-81", - "customerPartId" : "63085P2-81", + "manufacturerPartId" : "77085T0-51", + "customerPartId" : "77085T0-51", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -48385,10 +48089,10 @@ "nameAtManufacturer" : "ECU", "nameAtCustomer" : "ECU" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "assetId" : "urn:uuid:74d29b3f-7f2f-49b7-b7ce-5f5e6d05ff45", "manufacturerId" : "BPNL00000003B5MJ", "childItems" : [ { "item" : [ { @@ -48397,17 +48101,17 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3ea90642-dabf-4a50-8b17-550b0e87784e", + "ownerItemId" : "urn:uuid:a4fe0013-3964-403d-872c-5b7587d599cc", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "childassetId" : "urn:uuid:38bfd27e-51bb-4691-8517-c3bd077733ac", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -48416,17 +48120,17 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:72e52556-29cd-426b-8e67-b7d2bf1ef02f", + "ownerItemId" : "urn:uuid:10132788-38fa-4591-8869-075f53039bd3", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "childassetId" : "urn:uuid:979e87c6-8d01-431e-8a34-829ab811b0ef", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -48435,29 +48139,29 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:28638f99-1095-4df2-8353-6635c917b50b", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:ba929331-1840-4e53-9e75-9c39b2dcdcc8", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "childassetId" : "urn:uuid:43450b91-3895-4c15-8f85-a614b68678cc", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "catenaXId" : "urn:uuid:74d29b3f-7f2f-49b7-b7ce-5f5e6d05ff45", "partTypeInformation" : { - "ownerPartId" : "63085P2-81", - "partVersion" : "02", + "ownerPartId" : "77085T0-51", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "ECU", "partClassification" : [ { @@ -48467,22 +48171,20 @@ "nameAtOwner" : "ECU" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:74d29b3f-7f2f-49b7-b7ce-5f5e6d05ff45", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B5MJ" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -48490,7 +48192,7 @@ "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 22, + "recycledContent" : 37, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -48500,7 +48202,7 @@ "materialAbbreviation" : "AL7" }, { "materialName" : "Other", - "recycledContent" : 33, + "recycledContent" : 72, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -48510,35 +48212,35 @@ "materialAbbreviation" : "" } ] } ], - "catenaXId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "catenaXId" : "urn:uuid:38bfd27e-51bb-4691-8517-c3bd077733ac", "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "947897", + "orderNumber" : "308040", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "3742", + "referencedStandard" : "AISI", + "referencedStandardID" : "7044", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -48550,17 +48252,17 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -48570,7 +48272,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -48578,7 +48280,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "assetId" : "urn:uuid:38bfd27e-51bb-4691-8517-c3bd077733ac", "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] } ], @@ -48595,9 +48297,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "catenaXId" : "urn:uuid:38bfd27e-51bb-4691-8517-c3bd077733ac", "partTypeInformation" : { - "manufacturerPartId" : "SW-62", + "manufacturerPartId" : "XN-87", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -48607,12 +48309,12 @@ }, "itemVersion" : "02" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "catenaXId" : "urn:uuid:38bfd27e-51bb-4691-8517-c3bd077733ac", "partTypeInformation" : { "ownerPartId" : "", "partVersion" : "02", @@ -48625,31 +48327,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:38bfd27e-51bb-4691-8517-c3bd077733ac", + "parentItems" : [ { + "catenaXId" : "urn:uuid:74d29b3f-7f2f-49b7-b7ce-5f5e6d05ff45", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "catenaXId" : "urn:uuid:979e87c6-8d01-431e-8a34-829ab811b0ef", "childItems" : [ { - "catenaXId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "catenaXId" : "urn:uuid:8d35d300-18b9-48c8-a7fb-6cf400f6dd11", "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.1908 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -48657,35 +48357,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "catenaXId" : "urn:uuid:979e87c6-8d01-431e-8a34-829ab811b0ef", "bpnl" : "BPNL00000003B3NX", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "561100", + "orderNumber" : "254886", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 26 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "2063", + "referencedStandard" : "GB", + "referencedStandardID" : "2351", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -48697,27 +48397,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -48729,10 +48429,10 @@ "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "99019M6-53", + "value" : "85033D1-98", "key" : "manufacturerPartId" }, { - "value" : "NO-751568112188359093289552", + "value" : "NO-864887680955990068635173", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -48743,10 +48443,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "catenaXId" : "urn:uuid:979e87c6-8d01-431e-8a34-829ab811b0ef", "partTypeInformation" : { - "manufacturerPartId" : "99019M6-53", - "customerPartId" : "99019M6-53", + "manufacturerPartId" : "85033D1-98", + "customerPartId" : "85033D1-98", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -48758,37 +48458,37 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "assetId" : "urn:uuid:979e87c6-8d01-431e-8a34-829ab811b0ef", "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { "item" : [ { "itemClassification" : [ { - "value" : "Engineering Plastics", + "value" : "Mirror left", "key" : "BPNL00000003B3NX:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e1428cda-bedb-4e46-9b7d-7fb10f7963ed", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:1ccfe951-6300-41a8-95ba-d009ad4b22ba", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "childassetId" : "urn:uuid:8d35d300-18b9-48c8-a7fb-6cf400f6dd11", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "catenaXId" : "urn:uuid:979e87c6-8d01-431e-8a34-829ab811b0ef", "partTypeInformation" : { - "ownerPartId" : "99019M6-53", + "ownerPartId" : "85033D1-98", "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Sensor", @@ -48799,22 +48499,20 @@ "nameAtOwner" : "Sensor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:979e87c6-8d01-431e-8a34-829ab811b0ef", + "parentItems" : [ { + "catenaXId" : "urn:uuid:74d29b3f-7f2f-49b7-b7ce-5f5e6d05ff45", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B3NX" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -48822,7 +48520,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 12, + "recycledContent" : 74, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -48832,7 +48530,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 51, + "recycledContent" : 55, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -48842,35 +48540,35 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "catenaXId" : "urn:uuid:8d35d300-18b9-48c8-a7fb-6cf400f6dd11", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "513100", + "orderNumber" : "24109", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 6 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "5299", + "referencedStandard" : "DIN", + "referencedStandardID" : "8717", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -48879,30 +48577,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -48910,7 +48608,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "assetId" : "urn:uuid:8d35d300-18b9-48c8-a7fb-6cf400f6dd11", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -48927,27 +48625,27 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "catenaXId" : "urn:uuid:8d35d300-18b9-48c8-a7fb-6cf400f6dd11", "partTypeInformation" : { - "manufacturerPartId" : "QP-25", + "manufacturerPartId" : "FB-82", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "Engineering Plastics" + "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "catenaXId" : "urn:uuid:8d35d300-18b9-48c8-a7fb-6cf400f6dd11", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "03", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -48957,22 +48655,20 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8d35d300-18b9-48c8-a7fb-6cf400f6dd11", + "parentItems" : [ { + "catenaXId" : "urn:uuid:979e87c6-8d01-431e-8a34-829ab811b0ef", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -48980,7 +48676,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 64, + "recycledContent" : 73, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -48990,7 +48686,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 34, + "recycledContent" : 57, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -49000,35 +48696,35 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "catenaXId" : "urn:uuid:43450b91-3895-4c15-8f85-a614b68678cc", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "760174", + "orderNumber" : "637540", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "6138", + "referencedStandard" : "JIS", + "referencedStandardID" : "2142", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -49037,30 +48733,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -49072,24 +48768,24 @@ "value" : "BPNL00000003B0Q0", "key" : "manufacturerId" }, { - "value" : "93605D2-91", + "value" : "70156B3-03", "key" : "manufacturerPartId" }, { - "value" : "NO-871580055866821435813562", + "value" : "NO-624371046700086263696291", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", "country" : "DEU", "sites" : [ { - "catenaXsiteId" : "BPNS00000003B0Q0", + "catenaXsiteId" : "BPNS00000003B5MJ", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "catenaXId" : "urn:uuid:43450b91-3895-4c15-8f85-a614b68678cc", "partTypeInformation" : { - "manufacturerPartId" : "93605D2-91", - "customerPartId" : "93605D2-91", + "manufacturerPartId" : "70156B3-03", + "customerPartId" : "70156B3-03", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -49098,22 +48794,22 @@ "nameAtManufacturer" : "Engineering Plastics", "nameAtCustomer" : "Engineering Plastics" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "assetId" : "urn:uuid:43450b91-3895-4c15-8f85-a614b68678cc", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "catenaXId" : "urn:uuid:43450b91-3895-4c15-8f85-a614b68678cc", "partTypeInformation" : { - "ownerPartId" : "93605D2-91", - "partVersion" : "02", + "ownerPartId" : "70156B3-03", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Engineering Plastics", "partClassification" : [ { @@ -49123,35 +48819,97 @@ "nameAtOwner" : "Engineering Plastics" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:43450b91-3895-4c15-8f85-a614b68678cc", + "parentItems" : [ { + "catenaXId" : "urn:uuid:74d29b3f-7f2f-49b7-b7ce-5f5e6d05ff45", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", - "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", + "childItems" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "38049661-08", "key" : "manufacturerPartId" }, { - "value" : "NO-744309140234558939999675", + "value" : "NO-703935166323445267418607", "key" : "partInstanceId" }, { "value" : "Company 1", @@ -49168,7 +48926,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", "partTypeInformation" : { "manufacturerPartId" : "38049661-08", "customerPartId" : "38049661-08", @@ -49180,7 +48938,7 @@ "nameAtManufacturer" : "Battery", "nameAtCustomer" : "Battery" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { "incoterms" : "DAP (Delivered at Place)", @@ -49219,7 +48977,7 @@ "key" : "JxkyvRnL" } ], "productLink" : "https://123", - "oeNumber" : "NO-744309140234558939999675", + "oeNumber" : "NO-703935166323445267418607", "category" : { "subCategory" : [ "Battery" ], "mainCategory" : [ "Audio, video, navigation" ] @@ -49232,121 +48990,121 @@ "mileage" : 120000.06 } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:acd7e48c-374e-45af-a539-f0bd4d1c03e4", + "ownerItemId" : "urn:uuid:63e8676f-e70b-4813-b5f1-99e57f3caa86", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "childassetId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:25ff450f-5fae-44a0-a8a2-64ad5efc2ad0", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:30faf4ab-49b6-4328-85c7-36437b96e46f", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "childassetId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:efad6b8b-9580-4ba2-8222-2722e1875e4a", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:b149e30e-0ec2-4368-8113-e94be6c9ef5e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "childassetId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1d81e302-6736-4088-af62-1173445061f4", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:27c7ede9-9d85-4d8c-a022-3289e2a9caa3", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "childassetId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:decc911a-35dc-40c6-8f49-5be7acee6908", + "ownerItemId" : "urn:uuid:bd19b72f-50de-4b18-afb4-beba75660a70", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "childassetId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b4bf2044-4504-4295-8645-3184b366cea4", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:b1426bcb-1924-447a-bf8c-1b988b6bd23f", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "childassetId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -49378,39 +49136,39 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AYRE", + "id" : "BPNL00000003AZQP", "eori" : "DE012345678901" }, - "issueDate" : "2023-01-18", - "version" : 2, - "status" : "Invalid" + "issueDate" : "2023-07-29", + "version" : 1.9, + "status" : "Draft" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 1346.0496, - "width" : 1346, - "length" : 2306, - "weight" : 412, - "height" : 283 + "diameter" : 1179.0689, + "width" : 1179, + "length" : 2027, + "weight" : 624, + "height" : 311 }, "lifespan" : { "unit" : "unit:year", - "value" : 15 + "value" : 18 } }, "commercial" : { - "placedOnMarket" : "2022-01-28", + "placedOnMarket" : "2023-01-15", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-744309140234558939999675", + "value" : "NO-703935166323445267418607", "key" : "PartInstanceID" } ], - "gtin" : " 71842155", + "gtin" : " 84717430", "additionalCode" : [ { "name" : "TARIC", - "value" : "444770484" + "value" : "501668603" } ] }, "sources" : { @@ -49432,7 +49190,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Passport", + "category" : "Sustainability", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -49461,7 +49219,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-01-16", + "date" : "2023-12-01", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -49477,9 +49235,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 1.8624 ] + "left" : [ 9.6328 ] }, - "id" : "JW3524" + "id" : "XS2300" } ] }, "additionalData" : [ { @@ -49505,9 +49263,9 @@ "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Aluminium" + "name" : "Graphite" } ], - "critical" : [ "Lithium" ], + "critical" : [ "Cobalt" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -49517,39 +49275,40 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 119 + "carbonContentTotal" : 123 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003B2OM", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AYRE" + "facilityId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AZQP" } } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", + "partTypeInformation" : { + "ownerPartId" : "38049661-08", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Battery", + "partClassification" : [ { + "value" : "Battery", + "key" : "BPNL00000003AZQP:PartFamily" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + "nameAtOwner" : "Battery" + } } ], "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 54, + "recycledContent" : 31, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -49559,7 +49318,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 20, + "recycledContent" : 81, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -49569,7 +49328,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 82, + "recycledContent" : 88, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -49579,97 +49338,33 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", - "childItems" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "667967", + "orderNumber" : "142534", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 23 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "6313", + "referencedStandard" : "AS", + "referencedStandardID" : "9707", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -49681,51 +49376,33 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } } } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", - "partTypeInformation" : { - "ownerPartId" : "38049661-08", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "Battery", - "partClassification" : [ { - "value" : "Battery", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "Battery" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -49951,7 +49628,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-744309140234558939999675", + "batteryIDDMCCode" : "NO-703935166323445267418607", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -49970,6 +49647,21 @@ } ], "productType" : "pack" } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "customers" : [ "BPNL00000003AZQP" ] + } ], "urn:samm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { "productConditions" : "at least 1990 model", "desiredPrice" : { @@ -49985,7 +49677,7 @@ "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 62, + "recycledContent" : 83, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -49995,7 +49687,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 6, + "recycledContent" : 72, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -50005,7 +49697,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 12, + "recycledContent" : 88, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -50016,112 +49708,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "catenaXId" : "urn:uuid:8ce0d100-6039-47a3-a997-c2ebd76593c8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "catenaXId" : "urn:uuid:b77656fe-0ac4-41f0-a89c-9ff151f5f4c9", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "catenaXId" : "urn:uuid:e584b3d9-a2e0-4226-8ff6-7f8a1c294ad5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "catenaXId" : "urn:uuid:34d4f25e-ac98-4147-85ee-7ef4b6f9261d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "catenaXId" : "urn:uuid:137ca063-9b3e-4354-a277-1f81e75c96e7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "catenaXId" : "urn:uuid:959cc9ce-91db-4f08-94d2-0d95d93788a5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "catenaXId" : "urn:uuid:a0b2db62-6de7-4612-9f79-5754e864e9ae", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "catenaXId" : "urn:uuid:270ce26e-c616-480f-b7c5-c26249f5fc81", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "catenaXId" : "urn:uuid:54f42d2a-aa31-4463-926c-1377d1b5b15c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "catenaXId" : "urn:uuid:123d58d5-6b1d-4268-ad80-409f83744124", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -50129,10 +49821,10 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "880907", + "orderNumber" : "706396", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -50141,23 +49833,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "8683", + "referencedStandard" : "DIN", + "referencedStandardID" : "1474", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -50166,10 +49858,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -50179,17 +49871,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -50198,13 +49890,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-599349389132825299815680", + "value" : "NO-149034940347629807974954", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -50215,7 +49907,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -50230,237 +49922,219 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:25af164a-e6f7-480e-b492-651b7da1d222", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:a4710828-f79b-4779-b3e4-55da9852655f", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:85df416e-5cbc-4b72-ab98-7b3a0f597525", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:ad3575ce-3edb-4778-9695-bca25a6c2a6f", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "childassetId" : "urn:uuid:8ce0d100-6039-47a3-a997-c2ebd76593c8", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:babcff1f-507f-463e-be9e-94e55c0c64e9", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:ad797bce-46e0-4e41-b765-9d984ee92ce4", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "childassetId" : "urn:uuid:b77656fe-0ac4-41f0-a89c-9ff151f5f4c9", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8b3f6d58-bc5a-4e0f-b2ec-3578fe6d38e1", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:df152c91-facf-4000-b3e9-85c0994838f4", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "childassetId" : "urn:uuid:e584b3d9-a2e0-4226-8ff6-7f8a1c294ad5", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:73e143b7-5308-4264-b331-120cd9705213", + "ownerItemId" : "urn:uuid:f961dcb7-3f2a-4892-be7e-70db1b89e0c3", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "childassetId" : "urn:uuid:34d4f25e-ac98-4147-85ee-7ef4b6f9261d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8ba0f6bd-8659-4a45-8e0b-97479a0509bd", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:872bf9b3-c87d-4bd5-8905-d967e0eb821f", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "childassetId" : "urn:uuid:137ca063-9b3e-4354-a277-1f81e75c96e7", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:dbd8f06d-e686-4986-932a-6a12c955e134", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:e878b6ab-297a-411d-afb0-f89afddb24c2", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "childassetId" : "urn:uuid:959cc9ce-91db-4f08-94d2-0d95d93788a5", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e6e5ea84-808c-43f6-8c51-b5ae7ce222d7", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:dcdc063b-b424-40cd-9297-170375493a51", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "childassetId" : "urn:uuid:a0b2db62-6de7-4612-9f79-5754e864e9ae", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a5494186-1b4a-49e5-a4d4-2c85773071e4", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:f8d19343-a0af-4f83-9fec-5f33cd21badb", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "childassetId" : "urn:uuid:270ce26e-c616-480f-b7c5-c26249f5fc81", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0ec3fa8d-9e39-4d7f-8c51-1a2ae91bf453", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:487b6747-cf52-457d-8ddc-0b4083ae4dea", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "childassetId" : "urn:uuid:54f42d2a-aa31-4463-926c-1377d1b5b15c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a8073dee-f6d6-44e1-8772-5368a96a1b08", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:6b7baf3e-b7e8-4a2d-bea6-32588c626467", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "childassetId" : "urn:uuid:123d58d5-6b1d-4268-ad80-409f83744124", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -50686,7 +50360,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-599349389132825299815680", + "batteryIDDMCCode" : "NO-149034940347629807974954", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -50725,16 +50399,16 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AYRE", + "id" : "BPNL00000003AZQP", "eori" : "DE012345678901" }, - "issueDate" : "2021-12-29", - "version" : 2.8, - "status" : "Approved" + "issueDate" : "2023-06-24", + "version" : 2, + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6884, + "diameter" : 229.6569, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -50742,22 +50416,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 17 + "value" : 15 } }, "commercial" : { - "placedOnMarket" : "2021-12-20", + "placedOnMarket" : "2022-06-11", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-599349389132825299815680", + "value" : "NO-149034940347629807974954", "key" : "PartInstanceID" } ], - "gtin" : " 78507355", + "gtin" : " 20235525", "additionalCode" : [ { "name" : "TARIC", - "value" : "569550313" + "value" : "910228367" } ] }, "sources" : { @@ -50779,7 +50453,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", + "category" : "Sustainability", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -50808,12 +50482,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2022-04-12", + "date" : "2023-07-17", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : true, + "reusablePackaging" : false, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -50824,9 +50498,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 4.4507 ] + "left" : [ 2.3521 ] }, - "id" : "EM9757" + "id" : "ND1398" } ] }, "additionalData" : [ { @@ -50849,12 +50523,12 @@ } ], "sustainability" : { "material" : [ { - "recycled" : false, + "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Sealant" + "name" : "Nickel" } ], - "critical" : [ "Nickel" ], + "critical" : [ "Manganese" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -50864,15 +50538,15 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 105 + "carbonContentTotal" : 103 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AXS3", + "importer" : "BPNL00000003AYRE", "manufacturer" : { "facilityId" : "BPNL00000003AXS3", - "manufacturerId" : "BPNL00000003AYRE" + "manufacturerId" : "BPNL00000003AZQP" } } } ], @@ -50884,31 +50558,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AZQP:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "catenaXId" : "urn:uuid:8ce0d100-6039-47a3-a997-c2ebd76593c8", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -50927,7 +50617,7 @@ "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthTimestamp" : "2024-03-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -50937,35 +50627,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "catenaXId" : "urn:uuid:8ce0d100-6039-47a3-a997-c2ebd76593c8", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "887584", + "orderNumber" : "412625", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "3164", + "referencedStandard" : "IS", + "referencedStandardID" : "9439", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -50976,18 +50666,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -50997,7 +50687,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -51012,7 +50702,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-276052741206550431565449", + "value" : "NO-153249685479382694162369", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -51023,7 +50713,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "catenaXId" : "urn:uuid:8ce0d100-6039-47a3-a997-c2ebd76593c8", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -51035,10 +50725,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "assetId" : "urn:uuid:8ce0d100-6039-47a3-a997-c2ebd76593c8", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -51047,17 +50737,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ec4ede01-6089-4547-8675-4251e3162d78", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:6fccfc68-e631-46d3-b169-6d5fac474345", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -51070,24 +50760,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -51313,7 +50985,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-276052741206550431565449", + "batteryIDDMCCode" : "NO-153249685479382694162369", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -51332,31 +51004,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8ce0d100-6039-47a3-a997-c2ebd76593c8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8ce0d100-6039-47a3-a997-c2ebd76593c8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "catenaXId" : "urn:uuid:b77656fe-0ac4-41f0-a89c-9ff151f5f4c9", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -51371,11 +51059,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-12-26", + "currentStateOfHealthTimestamp" : "2017-03-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-15", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -51385,35 +51073,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "catenaXId" : "urn:uuid:b77656fe-0ac4-41f0-a89c-9ff151f5f4c9", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "137895", + "orderNumber" : "664395", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "AISI", - "referencedStandardID" : "1859", + "referencedStandardID" : "9745", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -51422,14 +51110,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -51460,7 +51148,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-613745749330170700793987", + "value" : "NO-100348889861720225961543", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -51471,7 +51159,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "catenaXId" : "urn:uuid:b77656fe-0ac4-41f0-a89c-9ff151f5f4c9", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -51483,10 +51171,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "assetId" : "urn:uuid:b77656fe-0ac4-41f0-a89c-9ff151f5f4c9", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -51495,17 +51183,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:021be7ca-fa9b-4b99-a7f5-eb9bb87b3faf", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:364c505b-0436-4615-92d0-22e8b71ff3ce", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -51518,24 +51206,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -51761,7 +51431,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-613745749330170700793987", + "batteryIDDMCCode" : "NO-100348889861720225961543", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -51780,31 +51450,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b77656fe-0ac4-41f0-a89c-9ff151f5f4c9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b77656fe-0ac4-41f0-a89c-9ff151f5f4c9", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "catenaXId" : "urn:uuid:e584b3d9-a2e0-4226-8ff6-7f8a1c294ad5", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -51819,11 +51505,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-04-11", + "currentStateOfHealthTimestamp" : "2020-04-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-09", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -51833,35 +51519,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "catenaXId" : "urn:uuid:e584b3d9-a2e0-4226-8ff6-7f8a1c294ad5", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "33224", + "orderNumber" : "707878", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "7536", + "referencedStandard" : "GB", + "referencedStandardID" : "7205", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -51872,28 +51558,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -51908,7 +51594,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-816675614874955054622587", + "value" : "NO-923706772363859834126509", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -51919,7 +51605,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "catenaXId" : "urn:uuid:e584b3d9-a2e0-4226-8ff6-7f8a1c294ad5", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -51931,10 +51617,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "assetId" : "urn:uuid:e584b3d9-a2e0-4226-8ff6-7f8a1c294ad5", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -51943,17 +51629,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4d059a49-57f3-4fe4-ab32-ba03cddbf666", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:bf7fe81c-7dbb-4db4-9936-b5abca80e787", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -51966,24 +51652,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -52209,7 +51877,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-816675614874955054622587", + "batteryIDDMCCode" : "NO-923706772363859834126509", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -52228,31 +51896,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e584b3d9-a2e0-4226-8ff6-7f8a1c294ad5", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e584b3d9-a2e0-4226-8ff6-7f8a1c294ad5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "catenaXId" : "urn:uuid:34d4f25e-ac98-4147-85ee-7ef4b6f9261d", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -52267,11 +51951,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-11-30", + "currentStateOfHealthTimestamp" : "2016-07-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthTimestamp" : "2024-03-31", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -52281,35 +51965,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "catenaXId" : "urn:uuid:34d4f25e-ac98-4147-85ee-7ef4b6f9261d", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "264313", + "orderNumber" : "674666", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "1702", + "referencedStandard" : "ISO", + "referencedStandardID" : "1897", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -52321,27 +52005,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -52356,7 +52040,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-583571011792716331126348", + "value" : "NO-174638927682487327941825", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -52367,7 +52051,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "catenaXId" : "urn:uuid:34d4f25e-ac98-4147-85ee-7ef4b6f9261d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -52382,7 +52066,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "assetId" : "urn:uuid:34d4f25e-ac98-4147-85ee-7ef4b6f9261d", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -52391,17 +52075,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a336dc1a-f087-492a-96d2-80e64ec70178", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:db0ddb7f-5ad6-4247-a294-7cfaac0f3d8e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -52414,24 +52098,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -52657,7 +52323,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-583571011792716331126348", + "batteryIDDMCCode" : "NO-174638927682487327941825", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -52676,31 +52342,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:34d4f25e-ac98-4147-85ee-7ef4b6f9261d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:34d4f25e-ac98-4147-85ee-7ef4b6f9261d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "catenaXId" : "urn:uuid:137ca063-9b3e-4354-a277-1f81e75c96e7", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -52715,11 +52397,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-12-20", + "currentStateOfHealthTimestamp" : "2014-08-16", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -52729,10 +52411,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "catenaXId" : "urn:uuid:137ca063-9b3e-4354-a277-1f81e75c96e7", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "173754", + "orderNumber" : "150240", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -52745,9 +52427,9 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -52756,8 +52438,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "4147", + "referencedStandard" : "GB", + "referencedStandardID" : "7934", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -52766,10 +52448,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -52779,17 +52461,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -52804,7 +52486,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-701698086749428343178985", + "value" : "NO-470288501287804086872859", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -52815,7 +52497,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "catenaXId" : "urn:uuid:137ca063-9b3e-4354-a277-1f81e75c96e7", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -52827,10 +52509,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "assetId" : "urn:uuid:137ca063-9b3e-4354-a277-1f81e75c96e7", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -52839,17 +52521,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3c5c8509-adeb-4a2a-91ac-7456c953bda7", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:d9c93410-4de0-42af-987c-2a832afaa0dd", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -52862,24 +52544,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -53105,7 +52769,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-701698086749428343178985", + "batteryIDDMCCode" : "NO-470288501287804086872859", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -53124,31 +52788,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:137ca063-9b3e-4354-a277-1f81e75c96e7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:137ca063-9b3e-4354-a277-1f81e75c96e7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "catenaXId" : "urn:uuid:959cc9ce-91db-4f08-94d2-0d95d93788a5", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -53163,11 +52843,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-09-08", + "currentStateOfHealthTimestamp" : "2018-12-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -53177,35 +52857,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "catenaXId" : "urn:uuid:959cc9ce-91db-4f08-94d2-0d95d93788a5", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "859315", + "orderNumber" : "870027", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "9360", + "referencedStandard" : "IS", + "referencedStandardID" : "7820", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -53214,30 +52894,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -53252,7 +52932,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-629544766376868286560031", + "value" : "NO-967123189742391859765807", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -53263,7 +52943,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "catenaXId" : "urn:uuid:959cc9ce-91db-4f08-94d2-0d95d93788a5", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -53275,10 +52955,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "assetId" : "urn:uuid:959cc9ce-91db-4f08-94d2-0d95d93788a5", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -53287,17 +52967,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c14cbd74-248c-4c05-807c-e14766317c7f", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:e87d9e09-fe5b-4ef5-b023-c62fa9f87030", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -53310,24 +52990,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -53553,7 +53215,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-629544766376868286560031", + "batteryIDDMCCode" : "NO-967123189742391859765807", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -53572,31 +53234,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:959cc9ce-91db-4f08-94d2-0d95d93788a5", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:959cc9ce-91db-4f08-94d2-0d95d93788a5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "catenaXId" : "urn:uuid:a0b2db62-6de7-4612-9f79-5754e864e9ae", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -53611,11 +53289,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-08-31", + "currentStateOfHealthTimestamp" : "2020-12-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-18", + "currentStateOfHealthTimestamp" : "2024-03-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -53625,35 +53303,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "catenaXId" : "urn:uuid:a0b2db62-6de7-4612-9f79-5754e864e9ae", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "421680", + "orderNumber" : "410937", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "7936", + "referencedStandard" : "IS", + "referencedStandardID" : "8419", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -53662,10 +53340,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -53679,13 +53357,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -53700,7 +53378,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-574718760399170263078806", + "value" : "NO-597268819056305633390104", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -53711,7 +53389,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "catenaXId" : "urn:uuid:a0b2db62-6de7-4612-9f79-5754e864e9ae", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -53723,10 +53401,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "assetId" : "urn:uuid:a0b2db62-6de7-4612-9f79-5754e864e9ae", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -53735,17 +53413,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b362a145-eb11-42df-837f-b8450ab6d65a", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:54f5cc5d-5e37-42c9-8d95-d946955d684d", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -53758,24 +53436,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -54001,7 +53661,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-574718760399170263078806", + "batteryIDDMCCode" : "NO-597268819056305633390104", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -54020,31 +53680,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a0b2db62-6de7-4612-9f79-5754e864e9ae", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a0b2db62-6de7-4612-9f79-5754e864e9ae", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "catenaXId" : "urn:uuid:270ce26e-c616-480f-b7c5-c26249f5fc81", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -54059,11 +53735,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-07-10", + "currentStateOfHealthTimestamp" : "2023-04-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-02", + "currentStateOfHealthTimestamp" : "2024-03-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -54073,35 +53749,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "catenaXId" : "urn:uuid:270ce26e-c616-480f-b7c5-c26249f5fc81", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "574615", + "orderNumber" : "827705", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 23 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "4964", + "referencedStandard" : "EN", + "referencedStandardID" : "1964", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -54110,20 +53786,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -54133,7 +53809,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -54148,7 +53824,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-585548541298586466303843", + "value" : "NO-155286588720399385866335", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -54159,7 +53835,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "catenaXId" : "urn:uuid:270ce26e-c616-480f-b7c5-c26249f5fc81", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -54171,10 +53847,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "assetId" : "urn:uuid:270ce26e-c616-480f-b7c5-c26249f5fc81", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -54183,17 +53859,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:761e02f3-5258-431e-9a3d-c6e1bf2ed993", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:9ccf8d24-eb4b-4c4f-b5d2-cd9c098328a6", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -54206,24 +53882,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -54449,7 +54107,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-585548541298586466303843", + "batteryIDDMCCode" : "NO-155286588720399385866335", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -54468,31 +54126,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:270ce26e-c616-480f-b7c5-c26249f5fc81", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:270ce26e-c616-480f-b7c5-c26249f5fc81", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "catenaXId" : "urn:uuid:54f42d2a-aa31-4463-926c-1377d1b5b15c", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -54507,11 +54181,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-11-08", + "currentStateOfHealthTimestamp" : "2017-06-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -54521,35 +54195,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "catenaXId" : "urn:uuid:54f42d2a-aa31-4463-926c-1377d1b5b15c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "363231", + "orderNumber" : "803007", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "7876", + "referencedStandard" : "AISI", + "referencedStandardID" : "1609", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -54558,30 +54232,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -54596,7 +54270,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-849571409038311009141692", + "value" : "NO-631809235645814770651588", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -54607,7 +54281,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "catenaXId" : "urn:uuid:54f42d2a-aa31-4463-926c-1377d1b5b15c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -54619,10 +54293,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "assetId" : "urn:uuid:54f42d2a-aa31-4463-926c-1377d1b5b15c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -54631,17 +54305,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:955f4773-e317-4a2c-bfdd-71681c43d167", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:01d16e88-e2ae-4262-8109-afb8aad717e4", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -54654,24 +54328,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -54897,7 +54553,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-849571409038311009141692", + "batteryIDDMCCode" : "NO-631809235645814770651588", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -54916,31 +54572,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:54f42d2a-aa31-4463-926c-1377d1b5b15c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:54f42d2a-aa31-4463-926c-1377d1b5b15c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "catenaXId" : "urn:uuid:123d58d5-6b1d-4268-ad80-409f83744124", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -54955,11 +54627,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-10-23", + "currentStateOfHealthTimestamp" : "2015-09-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthTimestamp" : "2024-03-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -54969,10 +54641,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "catenaXId" : "urn:uuid:123d58d5-6b1d-4268-ad80-409f83744124", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "542029", + "orderNumber" : "271820", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -54987,17 +54659,17 @@ "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "3531", + "referencedStandard" : "JASO", + "referencedStandardID" : "6146", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -55006,14 +54678,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -55023,7 +54695,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -55044,7 +54716,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-046489068699513613983142", + "value" : "NO-953401953268255862600789", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -55055,7 +54727,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "catenaXId" : "urn:uuid:123d58d5-6b1d-4268-ad80-409f83744124", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -55067,10 +54739,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "assetId" : "urn:uuid:123d58d5-6b1d-4268-ad80-409f83744124", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -55079,17 +54751,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d17dfa57-615c-4d7a-81f2-0389277e4e3e", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:a69b90f6-fb88-4441-a86f-b78883824641", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -55102,24 +54774,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -55345,7 +54999,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-046489068699513613983142", + "batteryIDDMCCode" : "NO-953401953268255862600789", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -55364,28 +55018,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:123d58d5-6b1d-4268-ad80-409f83744124", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:123d58d5-6b1d-4268-ad80-409f83744124", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 61, + "recycledContent" : 2, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -55395,7 +55065,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 9, + "recycledContent" : 40, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -55405,7 +55075,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 84, + "recycledContent" : 85, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -55416,112 +55086,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "catenaXId" : "urn:uuid:f87422e4-ae0b-4a80-9fe6-ca414b6cde59", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "catenaXId" : "urn:uuid:e45b0ad5-7094-4b47-8f88-3bb4cea0e50a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "catenaXId" : "urn:uuid:b6020184-ab03-4944-a4b6-5a582346425f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "catenaXId" : "urn:uuid:f162fbf2-2151-45af-a7a9-9a0e59eb7e66", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "catenaXId" : "urn:uuid:3ea378be-327c-4c1c-a95a-fd11aacc6eae", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "catenaXId" : "urn:uuid:742009e5-0dee-4d0f-b289-e40b574ed367", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "catenaXId" : "urn:uuid:1ec6f8ef-9d17-4699-a537-95f8bcf33e0d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "catenaXId" : "urn:uuid:bab441d1-4ee1-48dc-8cf7-dad7fc0f6707", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "catenaXId" : "urn:uuid:b416510f-0a62-402d-8cef-294b580ca535", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "catenaXId" : "urn:uuid:dc0ce047-53bd-485d-bef4-8d2162f49127", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -55529,25 +55199,25 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "548787", + "orderNumber" : "642625", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -55556,8 +55226,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "8877", + "referencedStandard" : "IS", + "referencedStandardID" : "4566", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -55566,30 +55236,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -55598,13 +55268,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-343421984914134407537068", + "value" : "NO-465303211980397443044303", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -55615,7 +55285,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -55627,240 +55297,222 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a83e094e-d624-41a1-9d4f-5ce815d36141", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:792d6d22-da4b-4097-92c6-2295dd6b3aa0", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e437151e-57a1-42b5-911c-6a0a4fd1d506", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:1e257ef9-6cb2-44cb-a5a0-3554e419d507", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "childassetId" : "urn:uuid:f87422e4-ae0b-4a80-9fe6-ca414b6cde59", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:288c15d2-830e-4501-93c9-ec2389f6159a", + "ownerItemId" : "urn:uuid:46d9eda0-b820-4ebd-a569-08faaceb1d14", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "childassetId" : "urn:uuid:e45b0ad5-7094-4b47-8f88-3bb4cea0e50a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d657e92b-31ac-4198-b49a-1b5b89ac067a", + "ownerItemId" : "urn:uuid:6fbda816-ae45-442f-950b-0f5623d77c3f", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "childassetId" : "urn:uuid:b6020184-ab03-4944-a4b6-5a582346425f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5bf9db4b-a700-4937-9cbf-de04ec91289e", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:1114b1dc-3d2e-4e58-b46f-c464819d0057", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "childassetId" : "urn:uuid:f162fbf2-2151-45af-a7a9-9a0e59eb7e66", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7bf2c1ac-ccc5-4b39-845f-8fc15f37e4c9", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:9ca40b6f-2e75-4c93-8ad3-db61c3ce7c89", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "childassetId" : "urn:uuid:3ea378be-327c-4c1c-a95a-fd11aacc6eae", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:582a4814-1b4f-4ab7-97f8-3583e6428b04", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:5b5caa11-de30-49b3-8533-8eaf17fc09b1", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "childassetId" : "urn:uuid:742009e5-0dee-4d0f-b289-e40b574ed367", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:69197eeb-b681-400b-a67b-446ff52968e1", + "ownerItemId" : "urn:uuid:e2f57407-b51c-48d0-85f1-29aa417e6838", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "childassetId" : "urn:uuid:1ec6f8ef-9d17-4699-a537-95f8bcf33e0d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2cdc3633-9278-46f1-a1b4-6db81ddff90c", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:a1f9e760-678c-4bad-94e4-500011cf5033", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "childassetId" : "urn:uuid:bab441d1-4ee1-48dc-8cf7-dad7fc0f6707", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1c2d1acb-79c5-450b-b0e7-eb0b51da379e", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:c84cfeae-a805-4a28-8c39-fca4394b448e", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "childassetId" : "urn:uuid:b416510f-0a62-402d-8cef-294b580ca535", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4e462559-e767-4cac-aa51-7c3e6dbbcdee", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:8e5a01a8-ed1e-4e02-b401-f5bd9ae4b944", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "childassetId" : "urn:uuid:dc0ce047-53bd-485d-bef4-8d2162f49127", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -56086,7 +55738,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-343421984914134407537068", + "batteryIDDMCCode" : "NO-465303211980397443044303", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -56125,16 +55777,16 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AYRE", + "id" : "BPNL00000003AZQP", "eori" : "DE012345678901" }, - "issueDate" : "2022-09-29", - "version" : 1.6, - "status" : "Invalid" + "issueDate" : "2024-03-03", + "version" : 1.7, + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6201, + "diameter" : 229.6777, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -56142,22 +55794,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 16 + "value" : 15 } }, "commercial" : { - "placedOnMarket" : "2022-05-06", + "placedOnMarket" : "2024-01-21", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-343421984914134407537068", + "value" : "NO-465303211980397443044303", "key" : "PartInstanceID" } ], - "gtin" : " 23331813", + "gtin" : " 47564459", "additionalCode" : [ { "name" : "TARIC", - "value" : "931203007" + "value" : "445975845" } ] }, "sources" : { @@ -56179,7 +55831,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Compliance", + "category" : "Sustainability", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -56208,12 +55860,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2023-10-07", + "date" : "2024-03-14", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : false, + "reusablePackaging" : true, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -56224,9 +55876,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 7.2157 ] + "left" : [ 1.4739 ] }, - "id" : "PB7707" + "id" : "KY1148" } ] }, "additionalData" : [ { @@ -56252,9 +55904,9 @@ "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Others" + "name" : "Copper" } ], - "critical" : [ "Lithium" ], + "critical" : [ "Nickel" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -56264,15 +55916,15 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 111 + "carbonContentTotal" : 119 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AYRE", + "importer" : "BPNL00000003B3NX", "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", - "manufacturerId" : "BPNL00000003AYRE" + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AZQP" } } } ], @@ -56284,31 +55936,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AZQP:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "catenaXId" : "urn:uuid:f87422e4-ae0b-4a80-9fe6-ca414b6cde59", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -56323,11 +55991,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-09-26", + "currentStateOfHealthTimestamp" : "2020-03-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-06", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -56337,35 +56005,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "catenaXId" : "urn:uuid:f87422e4-ae0b-4a80-9fe6-ca414b6cde59", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "159823", + "orderNumber" : "873144", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 9 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "ISO", - "referencedStandardID" : "6698", + "referencedStandardID" : "6673", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -56377,21 +56045,21 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -56412,7 +56080,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-266414324653556185736448", + "value" : "NO-059536600363127353614408", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -56423,7 +56091,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "catenaXId" : "urn:uuid:f87422e4-ae0b-4a80-9fe6-ca414b6cde59", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -56435,10 +56103,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "assetId" : "urn:uuid:f87422e4-ae0b-4a80-9fe6-ca414b6cde59", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -56447,17 +56115,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ab50cdb0-c239-4648-b9ed-a7dd42e72220", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:f9121583-cbe8-44bf-9f7a-8cb82c6a34f9", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -56470,24 +56138,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -56713,7 +56363,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-266414324653556185736448", + "batteryIDDMCCode" : "NO-059536600363127353614408", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -56732,31 +56382,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f87422e4-ae0b-4a80-9fe6-ca414b6cde59", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f87422e4-ae0b-4a80-9fe6-ca414b6cde59", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "catenaXId" : "urn:uuid:e45b0ad5-7094-4b47-8f88-3bb4cea0e50a", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -56771,11 +56437,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-08-08", + "currentStateOfHealthTimestamp" : "2014-12-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthTimestamp" : "2024-04-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -56785,25 +56451,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "catenaXId" : "urn:uuid:e45b0ad5-7094-4b47-8f88-3bb4cea0e50a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "262542", + "orderNumber" : "359304", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -56812,8 +56478,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "6942", + "referencedStandard" : "JASO", + "referencedStandardID" : "7130", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -56824,28 +56490,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -56860,7 +56526,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-439531001401998592561978", + "value" : "NO-973606156008960156293152", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -56871,7 +56537,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "catenaXId" : "urn:uuid:e45b0ad5-7094-4b47-8f88-3bb4cea0e50a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -56886,7 +56552,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "assetId" : "urn:uuid:e45b0ad5-7094-4b47-8f88-3bb4cea0e50a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -56895,17 +56561,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3ec0a5de-e362-4181-b11c-717f7855192f", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:f5b44d95-a47d-4f29-87d0-13bd605f2190", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -56918,24 +56584,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -57161,7 +56809,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-439531001401998592561978", + "batteryIDDMCCode" : "NO-973606156008960156293152", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -57180,31 +56828,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e45b0ad5-7094-4b47-8f88-3bb4cea0e50a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e45b0ad5-7094-4b47-8f88-3bb4cea0e50a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "catenaXId" : "urn:uuid:b6020184-ab03-4944-a4b6-5a582346425f", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -57219,11 +56883,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-10-21", + "currentStateOfHealthTimestamp" : "2014-06-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-25", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -57233,35 +56897,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "catenaXId" : "urn:uuid:b6020184-ab03-4944-a4b6-5a582346425f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "986688", + "orderNumber" : "265025", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 22 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "4675", + "referencedStandard" : "JASO", + "referencedStandardID" : "7441", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -57270,20 +56934,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -57293,7 +56957,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -57308,7 +56972,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-021808497008475276207658", + "value" : "NO-620994564712485756656214", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -57319,7 +56983,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "catenaXId" : "urn:uuid:b6020184-ab03-4944-a4b6-5a582346425f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -57334,7 +56998,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "assetId" : "urn:uuid:b6020184-ab03-4944-a4b6-5a582346425f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -57343,17 +57007,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b74504dc-5f15-4cea-ba28-80babdefd216", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:9c58c718-79a2-4423-b5f8-eb5b7ee13c7b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -57366,24 +57030,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -57609,7 +57255,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-021808497008475276207658", + "batteryIDDMCCode" : "NO-620994564712485756656214", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -57628,31 +57274,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b6020184-ab03-4944-a4b6-5a582346425f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b6020184-ab03-4944-a4b6-5a582346425f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "catenaXId" : "urn:uuid:f162fbf2-2151-45af-a7a9-9a0e59eb7e66", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -57667,11 +57329,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-07-20", + "currentStateOfHealthTimestamp" : "2023-12-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-03-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -57681,35 +57343,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "catenaXId" : "urn:uuid:f162fbf2-2151-45af-a7a9-9a0e59eb7e66", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "761723", + "orderNumber" : "355448", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "2393", + "referencedStandard" : "JIS", + "referencedStandardID" : "4408", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -57721,7 +57383,7 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -57731,17 +57393,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -57756,7 +57418,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-883135781243388996380832", + "value" : "NO-898160141651811826325581", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -57767,7 +57429,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "catenaXId" : "urn:uuid:f162fbf2-2151-45af-a7a9-9a0e59eb7e66", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -57779,10 +57441,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "assetId" : "urn:uuid:f162fbf2-2151-45af-a7a9-9a0e59eb7e66", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -57791,17 +57453,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:155dfe14-4d27-41f2-a181-6a275eefdc8e", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:19a56653-cded-4e44-9064-5721a277c2fe", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -57814,24 +57476,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -58057,7 +57701,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-883135781243388996380832", + "batteryIDDMCCode" : "NO-898160141651811826325581", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -58076,31 +57720,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f162fbf2-2151-45af-a7a9-9a0e59eb7e66", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f162fbf2-2151-45af-a7a9-9a0e59eb7e66", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "catenaXId" : "urn:uuid:3ea378be-327c-4c1c-a95a-fd11aacc6eae", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -58115,11 +57775,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-01-01", + "currentStateOfHealthTimestamp" : "2018-10-15", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -58129,35 +57789,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "catenaXId" : "urn:uuid:3ea378be-327c-4c1c-a95a-fd11aacc6eae", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "517072", + "orderNumber" : "152740", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "3439", + "referencedStandard" : "GB", + "referencedStandardID" : "3674", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -58168,12 +57828,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -58183,13 +57843,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -58204,7 +57864,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-990836037358215841702922", + "value" : "NO-766867050383618231098812", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -58215,7 +57875,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "catenaXId" : "urn:uuid:3ea378be-327c-4c1c-a95a-fd11aacc6eae", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -58227,10 +57887,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "assetId" : "urn:uuid:3ea378be-327c-4c1c-a95a-fd11aacc6eae", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -58239,17 +57899,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:51e5ce2d-51ee-4e46-b4df-f0aad1250711", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:3eeaefd3-4531-4c6c-86ea-631e42523c7d", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -58262,24 +57922,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -58505,7 +58147,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-990836037358215841702922", + "batteryIDDMCCode" : "NO-766867050383618231098812", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -58524,31 +58166,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3ea378be-327c-4c1c-a95a-fd11aacc6eae", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3ea378be-327c-4c1c-a95a-fd11aacc6eae", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "catenaXId" : "urn:uuid:742009e5-0dee-4d0f-b289-e40b574ed367", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -58563,11 +58221,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-07-14", + "currentStateOfHealthTimestamp" : "2023-11-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-18", + "currentStateOfHealthTimestamp" : "2024-03-22", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -58577,35 +58235,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "catenaXId" : "urn:uuid:742009e5-0dee-4d0f-b289-e40b574ed367", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "860371", + "orderNumber" : "644893", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "DIN EN", - "referencedStandardID" : "1793", + "referencedStandardID" : "1964", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -58616,8 +58274,8 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -58627,17 +58285,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -58652,7 +58310,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-960387226518041014742915", + "value" : "NO-100854579053767656486307", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -58663,7 +58321,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "catenaXId" : "urn:uuid:742009e5-0dee-4d0f-b289-e40b574ed367", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -58675,10 +58333,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "assetId" : "urn:uuid:742009e5-0dee-4d0f-b289-e40b574ed367", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -58687,17 +58345,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7ada1973-6ede-41cd-9d7e-ee7210cb57ec", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:41310528-54da-4cb3-a1fe-f843d2728115", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -58710,24 +58368,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -58953,7 +58593,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-960387226518041014742915", + "batteryIDDMCCode" : "NO-100854579053767656486307", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -58972,31 +58612,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:742009e5-0dee-4d0f-b289-e40b574ed367", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:742009e5-0dee-4d0f-b289-e40b574ed367", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "catenaXId" : "urn:uuid:1ec6f8ef-9d17-4699-a537-95f8bcf33e0d", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -59011,11 +58667,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-08-25", + "currentStateOfHealthTimestamp" : "2023-06-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-09", + "currentStateOfHealthTimestamp" : "2024-03-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -59025,14 +58681,14 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "catenaXId" : "urn:uuid:1ec6f8ef-9d17-4699-a537-95f8bcf33e0d", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "402009", + "orderNumber" : "937270", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { @@ -59041,19 +58697,19 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "7973", + "referencedStandard" : "ISO", + "referencedStandardID" : "3420", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -59064,28 +58720,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -59100,7 +58756,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-749514118885207807523684", + "value" : "NO-929343602416229414219002", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -59111,7 +58767,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "catenaXId" : "urn:uuid:1ec6f8ef-9d17-4699-a537-95f8bcf33e0d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -59126,7 +58782,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "assetId" : "urn:uuid:1ec6f8ef-9d17-4699-a537-95f8bcf33e0d", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -59135,17 +58791,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:33d31c53-a97b-4949-96d6-27abaa572486", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:321a6133-da27-48cb-a823-deeb839fd161", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -59158,24 +58814,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -59401,7 +59039,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-749514118885207807523684", + "batteryIDDMCCode" : "NO-929343602416229414219002", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -59420,31 +59058,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1ec6f8ef-9d17-4699-a537-95f8bcf33e0d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1ec6f8ef-9d17-4699-a537-95f8bcf33e0d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "catenaXId" : "urn:uuid:bab441d1-4ee1-48dc-8cf7-dad7fc0f6707", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -59459,11 +59113,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-06-18", + "currentStateOfHealthTimestamp" : "2015-02-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-23", + "currentStateOfHealthTimestamp" : "2024-03-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -59473,35 +59127,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "catenaXId" : "urn:uuid:bab441d1-4ee1-48dc-8cf7-dad7fc0f6707", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "337414", + "orderNumber" : "322958", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "4420", + "referencedStandard" : "JIS", + "referencedStandardID" : "9487", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -59513,27 +59167,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -59548,7 +59202,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-291715621913372083066844", + "value" : "NO-557737221411224973606496", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -59559,7 +59213,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "catenaXId" : "urn:uuid:bab441d1-4ee1-48dc-8cf7-dad7fc0f6707", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -59571,10 +59225,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "assetId" : "urn:uuid:bab441d1-4ee1-48dc-8cf7-dad7fc0f6707", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -59583,17 +59237,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b773e17f-884d-48d5-a2be-32d638aa8e60", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:9d550023-e431-42d5-97d6-62b0b1930e0b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -59606,24 +59260,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -59849,7 +59485,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-291715621913372083066844", + "batteryIDDMCCode" : "NO-557737221411224973606496", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -59868,31 +59504,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bab441d1-4ee1-48dc-8cf7-dad7fc0f6707", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bab441d1-4ee1-48dc-8cf7-dad7fc0f6707", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "catenaXId" : "urn:uuid:b416510f-0a62-402d-8cef-294b580ca535", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -59907,11 +59559,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-12-07", + "currentStateOfHealthTimestamp" : "2020-03-22", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-06", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -59921,25 +59573,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "catenaXId" : "urn:uuid:b416510f-0a62-402d-8cef-294b580ca535", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "77438", + "orderNumber" : "226595", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -59948,8 +59600,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "2276", + "referencedStandard" : "IS", + "referencedStandardID" : "1222", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -59958,20 +59610,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -59981,7 +59633,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -59996,7 +59648,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-443271381888074190712314", + "value" : "NO-122491485429919175542942", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -60007,7 +59659,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "catenaXId" : "urn:uuid:b416510f-0a62-402d-8cef-294b580ca535", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -60019,10 +59671,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "assetId" : "urn:uuid:b416510f-0a62-402d-8cef-294b580ca535", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -60031,17 +59683,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a568cea8-143f-42a7-b9f9-f8f3ec146082", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:0d78dfed-66a9-461e-8c25-cf5c94c06255", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -60054,24 +59706,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -60297,7 +59931,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-443271381888074190712314", + "batteryIDDMCCode" : "NO-122491485429919175542942", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -60316,31 +59950,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b416510f-0a62-402d-8cef-294b580ca535", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b416510f-0a62-402d-8cef-294b580ca535", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "catenaXId" : "urn:uuid:dc0ce047-53bd-485d-bef4-8d2162f49127", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -60355,11 +60005,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-05-31", + "currentStateOfHealthTimestamp" : "2017-12-23", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthTimestamp" : "2024-03-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -60369,35 +60019,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "catenaXId" : "urn:uuid:dc0ce047-53bd-485d-bef4-8d2162f49127", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "672157", + "orderNumber" : "831913", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "1776", + "referencedStandard" : "JIS", + "referencedStandardID" : "2395", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -60409,17 +60059,17 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -60429,7 +60079,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -60444,7 +60094,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-603465092925964841944939", + "value" : "NO-514722710964971857791665", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -60455,7 +60105,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "catenaXId" : "urn:uuid:dc0ce047-53bd-485d-bef4-8d2162f49127", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -60467,10 +60117,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "assetId" : "urn:uuid:dc0ce047-53bd-485d-bef4-8d2162f49127", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -60479,17 +60129,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7013115d-d229-4f24-9df3-8a0fc2b4f3b4", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:3b809728-be72-4a14-b5b4-2580d69e3e52", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -60502,24 +60152,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -60745,7 +60377,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-603465092925964841944939", + "batteryIDDMCCode" : "NO-514722710964971857791665", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -60764,28 +60396,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:dc0ce047-53bd-485d-bef4-8d2162f49127", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:dc0ce047-53bd-485d-bef4-8d2162f49127", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 84, + "recycledContent" : 31, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -60795,7 +60443,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 73, + "recycledContent" : 31, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -60805,7 +60453,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 31, + "recycledContent" : 35, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -60816,112 +60464,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "catenaXId" : "urn:uuid:d1ef33d4-aa48-40ae-9457-fe022227d38e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "catenaXId" : "urn:uuid:30a25279-3673-4a38-9941-95c8790b2123", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "catenaXId" : "urn:uuid:275a2f57-cebc-4c80-91c5-97acee2839cc", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "catenaXId" : "urn:uuid:169a1575-4d7d-4a7d-8fa1-c23125a90101", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "catenaXId" : "urn:uuid:1fe33596-ccef-4dd0-9353-840b875d116e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "catenaXId" : "urn:uuid:c8c2c9d8-496a-418a-81c8-c892280ac9d3", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "catenaXId" : "urn:uuid:597b6d42-3aae-48d7-b5c7-547c22b6d604", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "catenaXId" : "urn:uuid:b008c469-f09d-43f3-85fe-4746f65e295a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "catenaXId" : "urn:uuid:81766067-8b08-41ba-b911-da6437ab2550", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "catenaXId" : "urn:uuid:8393bfab-a1c2-4887-afe7-8134f5279352", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -60929,35 +60577,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "154592", + "orderNumber" : "502541", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "9294", + "referencedStandard" : "JIS", + "referencedStandardID" : "1562", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -60968,28 +60616,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -60998,13 +60646,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-823560382376748897634491", + "value" : "NO-240160927483664731586703", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -61015,7 +60663,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -61027,240 +60675,222 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2614af24-9bde-4eac-919a-7660638c5f53", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:e5b32990-d097-4c18-a899-c364ccec6241", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7f9d145b-4a6f-4d79-92ba-c12994b6b483", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:26055897-21a3-460f-bdf8-f8173274f905", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "childassetId" : "urn:uuid:d1ef33d4-aa48-40ae-9457-fe022227d38e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f9610458-0225-44b5-abb5-fec8cf099797", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:c52a0114-b979-448b-81a1-e0e85d95bb6e", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "childassetId" : "urn:uuid:30a25279-3673-4a38-9941-95c8790b2123", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:07c96796-3b53-4e56-a4ac-f59fa133800b", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:2a917956-a280-430a-9ca7-fd8b841d7938", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "childassetId" : "urn:uuid:275a2f57-cebc-4c80-91c5-97acee2839cc", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b8456285-e981-4ad9-973f-512f01487ae6", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:5acc3c8e-fd9f-40f0-9980-a70686ebe897", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "childassetId" : "urn:uuid:169a1575-4d7d-4a7d-8fa1-c23125a90101", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f2827a52-4654-4db0-a19c-2854b1fb411b", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:ee44a799-4b5f-4499-b396-1dea942c4812", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "childassetId" : "urn:uuid:1fe33596-ccef-4dd0-9353-840b875d116e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6d0c58c2-76d9-4bbd-9cfb-26b6720651ad", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:f090fbe5-78c3-4aa5-85ce-c4a38fb9e4c1", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "childassetId" : "urn:uuid:c8c2c9d8-496a-418a-81c8-c892280ac9d3", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4acc9a3d-610a-4273-af81-9cd7aec2afb2", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:73cb0f2e-c76b-4ff2-99f3-e54ec28ded5e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "childassetId" : "urn:uuid:597b6d42-3aae-48d7-b5c7-547c22b6d604", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3b3a70bf-5ec7-46c0-992c-4334d756cb7a", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:742658b1-1970-445a-9c3b-85c842bc2490", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "childassetId" : "urn:uuid:b008c469-f09d-43f3-85fe-4746f65e295a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7af5cee7-61dc-423c-a29c-3bfa738b362d", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:810dd0d7-dea0-40a9-9aec-4b42bfe99895", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "childassetId" : "urn:uuid:81766067-8b08-41ba-b911-da6437ab2550", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a5c78f5c-4008-4014-9c12-f152326ba9a4", + "ownerItemId" : "urn:uuid:e139e985-3911-4d21-8ee4-ffcbd377dfd3", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "childassetId" : "urn:uuid:8393bfab-a1c2-4887-afe7-8134f5279352", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -61486,7 +61116,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-823560382376748897634491", + "batteryIDDMCCode" : "NO-240160927483664731586703", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -61525,16 +61155,16 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AYRE", + "id" : "BPNL00000003AZQP", "eori" : "DE012345678901" }, - "issueDate" : "2021-12-07", - "version" : 2.3, - "status" : "Invalid" + "issueDate" : "2023-12-16", + "version" : 1.8, + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.63989999999998, + "diameter" : 229.6825, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -61542,22 +61172,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 17 + "value" : 18 } }, "commercial" : { - "placedOnMarket" : "2021-06-26", + "placedOnMarket" : "2023-10-03", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-823560382376748897634491", + "value" : "NO-240160927483664731586703", "key" : "PartInstanceID" } ], - "gtin" : " 38615101", + "gtin" : " 70127861", "additionalCode" : [ { "name" : "TARIC", - "value" : "341259269" + "value" : "131300311" } ] }, "sources" : { @@ -61579,7 +61209,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Compliance", + "category" : "SubstanceOfConcern", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -61608,7 +61238,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2023-05-30", + "date" : "2023-12-21", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -61624,9 +61254,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 5.6098 ] + "left" : [ 7.005 ] }, - "id" : "LN1496" + "id" : "OI5319" } ] }, "additionalData" : [ { @@ -61649,10 +61279,10 @@ } ], "sustainability" : { "material" : [ { - "recycled" : false, + "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Others" + "name" : "Nickel" } ], "critical" : [ "Graphite" ], "carbonFootprint" : { @@ -61664,15 +61294,15 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 117 + "carbonContentTotal" : 102 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003AXS3", "manufacturer" : { "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AYRE" + "manufacturerId" : "BPNL00000003AZQP" } } } ], @@ -61684,31 +61314,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AZQP:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "catenaXId" : "urn:uuid:d1ef33d4-aa48-40ae-9457-fe022227d38e", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -61723,11 +61369,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-03-13", + "currentStateOfHealthTimestamp" : "2017-12-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-05", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -61737,14 +61383,14 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "catenaXId" : "urn:uuid:d1ef33d4-aa48-40ae-9457-fe022227d38e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "455628", + "orderNumber" : "107062", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { @@ -61753,19 +61399,19 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "6314", + "referencedStandard" : "JIS", + "referencedStandardID" : "3857", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -61776,12 +61422,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -61791,13 +61437,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -61812,7 +61458,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-848885292462912694102251", + "value" : "NO-527345668639002464490329", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -61823,7 +61469,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "catenaXId" : "urn:uuid:d1ef33d4-aa48-40ae-9457-fe022227d38e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -61835,10 +61481,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "assetId" : "urn:uuid:d1ef33d4-aa48-40ae-9457-fe022227d38e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -61847,17 +61493,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:dbe5222e-e498-402f-98f2-4e45c66099a7", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:1fbb39ed-c153-4550-a127-7a09b5ac57cf", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -61870,24 +61516,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -62113,7 +61741,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-848885292462912694102251", + "batteryIDDMCCode" : "NO-527345668639002464490329", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -62132,31 +61760,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d1ef33d4-aa48-40ae-9457-fe022227d38e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d1ef33d4-aa48-40ae-9457-fe022227d38e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "catenaXId" : "urn:uuid:30a25279-3673-4a38-9941-95c8790b2123", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -62171,11 +61815,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-08-15", + "currentStateOfHealthTimestamp" : "2023-08-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-15", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -62185,35 +61829,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "catenaXId" : "urn:uuid:30a25279-3673-4a38-9941-95c8790b2123", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "335379", + "orderNumber" : "952929", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "IS", - "referencedStandardID" : "6384", + "referencedStandardID" : "4999", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -62222,30 +61866,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -62260,7 +61904,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-689813702415564518493945", + "value" : "NO-747371895715357584120035", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -62271,7 +61915,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "catenaXId" : "urn:uuid:30a25279-3673-4a38-9941-95c8790b2123", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -62283,10 +61927,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "assetId" : "urn:uuid:30a25279-3673-4a38-9941-95c8790b2123", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -62295,17 +61939,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e2b5fe18-114d-4335-8886-1342d152a6bc", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:d131f606-e8a6-435f-9581-f417ef958def", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -62318,24 +61962,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -62561,7 +62187,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-689813702415564518493945", + "batteryIDDMCCode" : "NO-747371895715357584120035", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -62580,31 +62206,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:30a25279-3673-4a38-9941-95c8790b2123", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:30a25279-3673-4a38-9941-95c8790b2123", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "catenaXId" : "urn:uuid:275a2f57-cebc-4c80-91c5-97acee2839cc", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -62619,11 +62261,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2024-01-31", + "currentStateOfHealthTimestamp" : "2016-06-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthTimestamp" : "2024-03-14", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -62633,35 +62275,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "catenaXId" : "urn:uuid:275a2f57-cebc-4c80-91c5-97acee2839cc", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "199331", + "orderNumber" : "970024", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "7004", + "referencedStandard" : "EN", + "referencedStandardID" : "1691", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -62670,20 +62312,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -62693,7 +62335,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -62708,7 +62350,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-987660837352774924045931", + "value" : "NO-880508248605583476310393", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -62719,7 +62361,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "catenaXId" : "urn:uuid:275a2f57-cebc-4c80-91c5-97acee2839cc", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -62731,10 +62373,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "assetId" : "urn:uuid:275a2f57-cebc-4c80-91c5-97acee2839cc", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -62743,17 +62385,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:42569d31-653c-4edf-bcf0-9377da2501b6", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:9aa3127e-1a8f-44a8-8c26-4aaec75de982", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -62766,24 +62408,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -63009,7 +62633,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-987660837352774924045931", + "batteryIDDMCCode" : "NO-880508248605583476310393", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -63028,31 +62652,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:275a2f57-cebc-4c80-91c5-97acee2839cc", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:275a2f57-cebc-4c80-91c5-97acee2839cc", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "catenaXId" : "urn:uuid:169a1575-4d7d-4a7d-8fa1-c23125a90101", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -63067,11 +62707,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-05-07", + "currentStateOfHealthTimestamp" : "2018-06-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -63081,25 +62721,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "catenaXId" : "urn:uuid:169a1575-4d7d-4a7d-8fa1-c23125a90101", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "498568", + "orderNumber" : "325839", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -63108,8 +62748,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "3727", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9295", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -63121,7 +62761,7 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -63131,17 +62771,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -63156,7 +62796,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-654353296014446496284506", + "value" : "NO-531564517305551088266581", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -63167,7 +62807,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "catenaXId" : "urn:uuid:169a1575-4d7d-4a7d-8fa1-c23125a90101", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -63179,10 +62819,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "assetId" : "urn:uuid:169a1575-4d7d-4a7d-8fa1-c23125a90101", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -63191,17 +62831,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9e3d6e45-10ce-4803-adfa-178aa2f28de5", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:e91c02de-4a29-4a8c-8b39-0737663fb176", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -63214,24 +62854,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -63457,7 +63079,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-654353296014446496284506", + "batteryIDDMCCode" : "NO-531564517305551088266581", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -63476,31 +63098,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:169a1575-4d7d-4a7d-8fa1-c23125a90101", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:169a1575-4d7d-4a7d-8fa1-c23125a90101", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "catenaXId" : "urn:uuid:1fe33596-ccef-4dd0-9353-840b875d116e", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -63515,11 +63153,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-09-10", + "currentStateOfHealthTimestamp" : "2022-02-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-03-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -63529,25 +63167,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "catenaXId" : "urn:uuid:1fe33596-ccef-4dd0-9353-840b875d116e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "326790", + "orderNumber" : "794279", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -63556,8 +63194,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "1442", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6762", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -63566,24 +63204,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -63604,7 +63242,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-588767590807225389768378", + "value" : "NO-657389294755810188273807", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -63615,7 +63253,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "catenaXId" : "urn:uuid:1fe33596-ccef-4dd0-9353-840b875d116e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -63627,10 +63265,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "assetId" : "urn:uuid:1fe33596-ccef-4dd0-9353-840b875d116e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -63639,17 +63277,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5c73472b-c9b9-4767-aa9c-3997a1fd74a8", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:0d9e2336-5fbf-4b0b-9904-aa492ea79873", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -63662,24 +63300,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -63905,7 +63525,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-588767590807225389768378", + "batteryIDDMCCode" : "NO-657389294755810188273807", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -63924,31 +63544,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1fe33596-ccef-4dd0-9353-840b875d116e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1fe33596-ccef-4dd0-9353-840b875d116e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "catenaXId" : "urn:uuid:c8c2c9d8-496a-418a-81c8-c892280ac9d3", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -63963,11 +63599,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-10-04", + "currentStateOfHealthTimestamp" : "2020-01-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-01", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -63977,35 +63613,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "catenaXId" : "urn:uuid:c8c2c9d8-496a-418a-81c8-c892280ac9d3", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "515853", + "orderNumber" : "692958", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "1725", + "referencedStandard" : "GB", + "referencedStandardID" : "2784", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -64014,20 +63650,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -64037,7 +63673,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -64052,7 +63688,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-931418197632196969612711", + "value" : "NO-059324923880677811268903", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -64063,7 +63699,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "catenaXId" : "urn:uuid:c8c2c9d8-496a-418a-81c8-c892280ac9d3", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -64075,10 +63711,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "assetId" : "urn:uuid:c8c2c9d8-496a-418a-81c8-c892280ac9d3", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -64087,17 +63723,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f77404be-d106-4185-8bf2-5ea493235bdc", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:b646c863-18f7-4f9d-b571-44795caa9c3a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -64110,24 +63746,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -64353,7 +63971,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-931418197632196969612711", + "batteryIDDMCCode" : "NO-059324923880677811268903", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -64372,31 +63990,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c8c2c9d8-496a-418a-81c8-c892280ac9d3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c8c2c9d8-496a-418a-81c8-c892280ac9d3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "catenaXId" : "urn:uuid:597b6d42-3aae-48d7-b5c7-547c22b6d604", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -64411,11 +64045,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-07-22", + "currentStateOfHealthTimestamp" : "2019-07-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthTimestamp" : "2024-03-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -64425,35 +64059,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "catenaXId" : "urn:uuid:597b6d42-3aae-48d7-b5c7-547c22b6d604", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "829859", + "orderNumber" : "963097", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "EN", - "referencedStandardID" : "4783", + "referencedStandardID" : "8988", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -64464,12 +64098,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -64479,13 +64113,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -64500,7 +64134,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-111951972013972210420848", + "value" : "NO-472858555790076270035205", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -64511,7 +64145,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "catenaXId" : "urn:uuid:597b6d42-3aae-48d7-b5c7-547c22b6d604", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -64523,10 +64157,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "assetId" : "urn:uuid:597b6d42-3aae-48d7-b5c7-547c22b6d604", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -64535,17 +64169,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c776232e-d7a9-4ddd-a18a-0978ef29b492", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:79758ca8-dccd-419a-8b14-85284e3d9ef5", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -64558,24 +64192,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -64801,7 +64417,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-111951972013972210420848", + "batteryIDDMCCode" : "NO-472858555790076270035205", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -64820,31 +64436,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:597b6d42-3aae-48d7-b5c7-547c22b6d604", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:597b6d42-3aae-48d7-b5c7-547c22b6d604", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "catenaXId" : "urn:uuid:b008c469-f09d-43f3-85fe-4746f65e295a", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -64859,11 +64491,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-08-26", + "currentStateOfHealthTimestamp" : "2015-03-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-13", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -64873,35 +64505,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "catenaXId" : "urn:uuid:b008c469-f09d-43f3-85fe-4746f65e295a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "271591", + "orderNumber" : "767943", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "5926", + "referencedStandard" : "AISI", + "referencedStandardID" : "9959", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -64910,10 +64542,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -64923,11 +64555,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -64948,7 +64580,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-932110494217527413805411", + "value" : "NO-297431803670890490193465", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -64959,7 +64591,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "catenaXId" : "urn:uuid:b008c469-f09d-43f3-85fe-4746f65e295a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -64971,10 +64603,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "assetId" : "urn:uuid:b008c469-f09d-43f3-85fe-4746f65e295a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -64983,17 +64615,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b20d0071-e9f9-4da6-bbf6-e21cf24b62ec", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:408fbcb9-f519-4b27-9f8e-0a51ced81720", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -65006,24 +64638,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -65249,7 +64863,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-932110494217527413805411", + "batteryIDDMCCode" : "NO-297431803670890490193465", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -65268,31 +64882,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b008c469-f09d-43f3-85fe-4746f65e295a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b008c469-f09d-43f3-85fe-4746f65e295a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "catenaXId" : "urn:uuid:81766067-8b08-41ba-b911-da6437ab2550", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -65307,11 +64937,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-03-14", + "currentStateOfHealthTimestamp" : "2017-03-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-15", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -65321,35 +64951,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "catenaXId" : "urn:uuid:81766067-8b08-41ba-b911-da6437ab2550", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "927759", + "orderNumber" : "179910", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "4113", + "referencedStandard" : "DIN", + "referencedStandardID" : "5457", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -65358,30 +64988,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -65396,7 +65026,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-925671333895560015573644", + "value" : "NO-542472084400095778418675", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -65407,7 +65037,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "catenaXId" : "urn:uuid:81766067-8b08-41ba-b911-da6437ab2550", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -65419,10 +65049,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "assetId" : "urn:uuid:81766067-8b08-41ba-b911-da6437ab2550", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -65431,17 +65061,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f89b88d3-8060-417b-9b23-3c98acde0d62", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:96c07415-3218-4763-a75c-5f3d38429f54", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -65454,24 +65084,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -65697,7 +65309,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-925671333895560015573644", + "batteryIDDMCCode" : "NO-542472084400095778418675", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -65716,31 +65328,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:81766067-8b08-41ba-b911-da6437ab2550", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:81766067-8b08-41ba-b911-da6437ab2550", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "catenaXId" : "urn:uuid:8393bfab-a1c2-4887-afe7-8134f5279352", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -65755,11 +65383,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-06-12", + "currentStateOfHealthTimestamp" : "2020-11-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthTimestamp" : "2024-03-16", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -65769,35 +65397,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "catenaXId" : "urn:uuid:8393bfab-a1c2-4887-afe7-8134f5279352", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "212566", + "orderNumber" : "479604", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 9 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "9522", + "referencedStandard" : "JASO", + "referencedStandardID" : "1618", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -65809,17 +65437,17 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -65829,7 +65457,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -65844,7 +65472,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-942663371448425761623285", + "value" : "NO-455801323952874989628244", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -65855,7 +65483,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "catenaXId" : "urn:uuid:8393bfab-a1c2-4887-afe7-8134f5279352", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -65870,7 +65498,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "assetId" : "urn:uuid:8393bfab-a1c2-4887-afe7-8134f5279352", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -65879,17 +65507,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:bcb55f75-602d-45d9-bac5-5e64e9ab53b9", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:6495908d-de2d-43d4-8264-49e4acef1614", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -65902,24 +65530,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -66145,7 +65755,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-942663371448425761623285", + "batteryIDDMCCode" : "NO-455801323952874989628244", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -66164,28 +65774,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8393bfab-a1c2-4887-afe7-8134f5279352", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8393bfab-a1c2-4887-afe7-8134f5279352", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 7, + "recycledContent" : 48, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -66195,7 +65821,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 9, + "recycledContent" : 0, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -66205,7 +65831,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 40, + "recycledContent" : 78, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -66216,112 +65842,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "catenaXId" : "urn:uuid:8035b73f-f1cf-44ac-b898-e91f56c7e415", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "catenaXId" : "urn:uuid:ea0e59df-1855-4298-8b4d-97834238f1bb", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "catenaXId" : "urn:uuid:3674534c-8f21-4bb5-b158-e3d51f48f72f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "catenaXId" : "urn:uuid:92810ff7-e90b-4702-8f40-62cf9d669ec4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "catenaXId" : "urn:uuid:cc512895-58ce-433c-9ecd-0a1b30d98da7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "catenaXId" : "urn:uuid:c07cd1a3-091a-461e-8b21-af824c559bcd", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "catenaXId" : "urn:uuid:45fb85e2-ac5d-434f-b499-e4140da62a19", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "catenaXId" : "urn:uuid:4540ada8-1ff8-4972-93ed-a32dfcdeb9a8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "catenaXId" : "urn:uuid:5a154a20-7795-4d8f-b08d-322072114efe", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "catenaXId" : "urn:uuid:4c442297-1290-41a7-808b-f2c8a227c064", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -66329,25 +65955,25 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "587599", + "orderNumber" : "113848", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -66356,8 +65982,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "6007", + "referencedStandard" : "AS", + "referencedStandardID" : "8124", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -66366,30 +65992,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -66398,13 +66024,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-862307068158749400741457", + "value" : "NO-597678879036304738525193", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -66415,7 +66041,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -66427,240 +66053,222 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4a76b061-0f80-4993-ab51-25bb01d5977c", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:100112fd-f007-47dd-ac5c-b8326310b2cd", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3b9d35a7-c5db-42d9-9011-9e4b982e3256", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:a479c743-c37a-4def-9adc-81d7a0a4e883", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "childassetId" : "urn:uuid:8035b73f-f1cf-44ac-b898-e91f56c7e415", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:04c4b249-70bc-4735-971b-b5328358945b", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:611df7c5-ff37-4885-b39a-3c9e03f0f391", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "childassetId" : "urn:uuid:ea0e59df-1855-4298-8b4d-97834238f1bb", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c84f4059-e4e7-4169-8ea8-6761d2a44eca", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:dad2601c-17bf-4032-ba32-c4d714e08cb4", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "childassetId" : "urn:uuid:3674534c-8f21-4bb5-b158-e3d51f48f72f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a7ac16d1-3042-4a8b-92e9-4ee1b3030bde", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:4dc36eae-487f-4150-8369-0ff26e96ae71", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "childassetId" : "urn:uuid:92810ff7-e90b-4702-8f40-62cf9d669ec4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ddfabcb8-3785-428a-a60c-9de984a047a2", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:26da8aa8-71d1-4bd2-abea-191a1090f661", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "childassetId" : "urn:uuid:cc512895-58ce-433c-9ecd-0a1b30d98da7", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4a2da884-346d-46e4-82ff-a5564f04c565", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:ce7e8dd4-8ba2-4629-a2b4-c471be848612", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "childassetId" : "urn:uuid:c07cd1a3-091a-461e-8b21-af824c559bcd", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7740e6f1-8e26-4c8a-a9c0-54f60a2be416", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:615967e8-b9df-4fe9-be25-42ecbd3e9b7c", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "childassetId" : "urn:uuid:45fb85e2-ac5d-434f-b499-e4140da62a19", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5cab1261-57a8-45a0-968d-6d5ce98a92e1", + "ownerItemId" : "urn:uuid:0530e54d-1ee4-4e85-87dc-0ddd94c80978", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "childassetId" : "urn:uuid:4540ada8-1ff8-4972-93ed-a32dfcdeb9a8", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:af70076a-abbf-4a31-aab4-b2baae0eafc4", + "ownerItemId" : "urn:uuid:d133b3f5-f8b5-403d-a0ae-a8b839f14afd", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "childassetId" : "urn:uuid:5a154a20-7795-4d8f-b08d-322072114efe", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f0a32eee-602e-4209-9c83-adaea312eaae", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:2d7cb603-f711-4e39-b87c-c3cb4e8ec4b1", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "childassetId" : "urn:uuid:4c442297-1290-41a7-808b-f2c8a227c064", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -66886,7 +66494,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-862307068158749400741457", + "batteryIDDMCCode" : "NO-597678879036304738525193", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -66925,16 +66533,16 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AYRE", + "id" : "BPNL00000003AZQP", "eori" : "DE012345678901" }, - "issueDate" : "2022-08-20", - "version" : 1.8, - "status" : "Draft" + "issueDate" : "2021-02-13", + "version" : 1.4, + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.62269999999998, + "diameter" : 229.6607, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -66942,22 +66550,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 15 + "value" : 18 } }, "commercial" : { - "placedOnMarket" : "2021-04-24", + "placedOnMarket" : "2020-06-24", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-862307068158749400741457", + "value" : "NO-597678879036304738525193", "key" : "PartInstanceID" } ], - "gtin" : " 88090453", + "gtin" : " 71357626", "additionalCode" : [ { "name" : "TARIC", - "value" : "687454395" + "value" : "809162102" } ] }, "sources" : { @@ -67008,12 +66616,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2023-03-28", + "date" : "2022-11-16", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : false, + "reusablePackaging" : true, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -67024,9 +66632,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 5.6145 ] + "left" : [ 7.556 ] }, - "id" : "XF3944" + "id" : "RL2146" } ] }, "additionalData" : [ { @@ -67049,12 +66657,12 @@ } ], "sustainability" : { "material" : [ { - "recycled" : true, + "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Polyamid" + "name" : "Sealant" } ], - "critical" : [ "Nickel" ], + "critical" : [ "Graphite" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -67064,15 +66672,15 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 110 + "carbonContentTotal" : 117 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AYRE", + "importer" : "BPNL00000003AXS3", "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", - "manufacturerId" : "BPNL00000003AYRE" + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AZQP" } } } ], @@ -67084,31 +66692,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AZQP:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "catenaXId" : "urn:uuid:8035b73f-f1cf-44ac-b898-e91f56c7e415", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -67123,11 +66747,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-01-18", + "currentStateOfHealthTimestamp" : "2015-12-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-03-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -67137,35 +66761,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "catenaXId" : "urn:uuid:8035b73f-f1cf-44ac-b898-e91f56c7e415", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "931410", + "orderNumber" : "108460", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "6703", + "referencedStandard" : "AS", + "referencedStandardID" : "4687", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -67181,17 +66805,17 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -67212,7 +66836,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-139880244941669856794800", + "value" : "NO-890670937507105471164702", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -67223,7 +66847,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "catenaXId" : "urn:uuid:8035b73f-f1cf-44ac-b898-e91f56c7e415", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -67235,10 +66859,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "assetId" : "urn:uuid:8035b73f-f1cf-44ac-b898-e91f56c7e415", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -67247,17 +66871,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a3780205-b64b-4442-9b6f-83a6cccb1e66", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:69df32c8-750b-4ccd-bc2c-964dc7a96bca", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -67270,24 +66894,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -67513,7 +67119,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-139880244941669856794800", + "batteryIDDMCCode" : "NO-890670937507105471164702", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -67532,31 +67138,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8035b73f-f1cf-44ac-b898-e91f56c7e415", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8035b73f-f1cf-44ac-b898-e91f56c7e415", + "parentItems" : [ { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "catenaXId" : "urn:uuid:ea0e59df-1855-4298-8b4d-97834238f1bb", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -67571,11 +67193,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-09-30", + "currentStateOfHealthTimestamp" : "2014-04-29", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-27", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -67585,25 +67207,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "catenaXId" : "urn:uuid:ea0e59df-1855-4298-8b4d-97834238f1bb", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "195467", + "orderNumber" : "535315", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -67612,8 +67234,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "4200", + "referencedStandard" : "IS", + "referencedStandardID" : "9437", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -67624,28 +67246,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -67660,7 +67282,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-050830021987571935432965", + "value" : "NO-251407512196380015033368", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -67671,7 +67293,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "catenaXId" : "urn:uuid:ea0e59df-1855-4298-8b4d-97834238f1bb", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -67683,10 +67305,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "assetId" : "urn:uuid:ea0e59df-1855-4298-8b4d-97834238f1bb", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -67695,17 +67317,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:09bccfbb-c39e-4e36-8c13-a69e73c41c00", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:bf6bbf3a-6518-4ac5-9f05-720215024ed8", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -67718,24 +67340,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -67961,7 +67565,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-050830021987571935432965", + "batteryIDDMCCode" : "NO-251407512196380015033368", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -67980,31 +67584,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ea0e59df-1855-4298-8b4d-97834238f1bb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ea0e59df-1855-4298-8b4d-97834238f1bb", + "parentItems" : [ { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "catenaXId" : "urn:uuid:3674534c-8f21-4bb5-b158-e3d51f48f72f", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -68019,11 +67639,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-03-04", + "currentStateOfHealthTimestamp" : "2017-03-23", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -68033,35 +67653,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "catenaXId" : "urn:uuid:3674534c-8f21-4bb5-b158-e3d51f48f72f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "611307", + "orderNumber" : "427523", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 25 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "9031", + "referencedStandard" : "AS", + "referencedStandardID" : "9545", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -68072,12 +67692,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -68093,7 +67713,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -68108,7 +67728,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-857703197842350741949159", + "value" : "NO-583526185149068413940848", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -68119,7 +67739,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "catenaXId" : "urn:uuid:3674534c-8f21-4bb5-b158-e3d51f48f72f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -68131,10 +67751,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "assetId" : "urn:uuid:3674534c-8f21-4bb5-b158-e3d51f48f72f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -68143,17 +67763,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8ee2ae10-e976-4f94-943b-c794f8e4b1e4", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:d9d87445-47c8-426a-8cad-cad706eb5614", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -68166,24 +67786,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -68409,7 +68011,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-857703197842350741949159", + "batteryIDDMCCode" : "NO-583526185149068413940848", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -68428,31 +68030,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3674534c-8f21-4bb5-b158-e3d51f48f72f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3674534c-8f21-4bb5-b158-e3d51f48f72f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "catenaXId" : "urn:uuid:92810ff7-e90b-4702-8f40-62cf9d669ec4", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -68467,11 +68085,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-09-17", + "currentStateOfHealthTimestamp" : "2015-09-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-04-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -68481,35 +68099,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "catenaXId" : "urn:uuid:92810ff7-e90b-4702-8f40-62cf9d669ec4", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "105185", + "orderNumber" : "982738", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "3318", + "referencedStandard" : "DIN", + "referencedStandardID" : "9695", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -68525,17 +68143,17 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -68556,7 +68174,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-022011077349717419717141", + "value" : "NO-491919401576325473294029", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -68567,7 +68185,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "catenaXId" : "urn:uuid:92810ff7-e90b-4702-8f40-62cf9d669ec4", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -68579,10 +68197,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "assetId" : "urn:uuid:92810ff7-e90b-4702-8f40-62cf9d669ec4", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -68591,17 +68209,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e1b0c08e-0fb9-44b0-8bb9-17ecc22d4dba", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:8f858470-65a2-41ea-84ca-406ec510f16c", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -68614,24 +68232,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -68857,7 +68457,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-022011077349717419717141", + "batteryIDDMCCode" : "NO-491919401576325473294029", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -68876,31 +68476,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:92810ff7-e90b-4702-8f40-62cf9d669ec4", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:92810ff7-e90b-4702-8f40-62cf9d669ec4", + "parentItems" : [ { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "catenaXId" : "urn:uuid:cc512895-58ce-433c-9ecd-0a1b30d98da7", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -68915,11 +68531,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-01-15", + "currentStateOfHealthTimestamp" : "2017-01-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-22", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -68929,35 +68545,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "catenaXId" : "urn:uuid:cc512895-58ce-433c-9ecd-0a1b30d98da7", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "485598", + "orderNumber" : "195593", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "7376", + "referencedStandard" : "ISO", + "referencedStandardID" : "6086", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -68969,27 +68585,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -69004,7 +68620,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-426790987058017367255084", + "value" : "NO-976977065357288560640502", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -69015,7 +68631,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "catenaXId" : "urn:uuid:cc512895-58ce-433c-9ecd-0a1b30d98da7", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -69027,10 +68643,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "assetId" : "urn:uuid:cc512895-58ce-433c-9ecd-0a1b30d98da7", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -69039,17 +68655,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:04bf1c2f-9a48-44cd-abcd-74543250218a", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:fecafbdb-5c8f-4fa2-9c93-9490be941c18", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -69062,24 +68678,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -69305,7 +68903,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-426790987058017367255084", + "batteryIDDMCCode" : "NO-976977065357288560640502", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -69324,31 +68922,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:cc512895-58ce-433c-9ecd-0a1b30d98da7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cc512895-58ce-433c-9ecd-0a1b30d98da7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "catenaXId" : "urn:uuid:c07cd1a3-091a-461e-8b21-af824c559bcd", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -69363,11 +68977,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-08-25", + "currentStateOfHealthTimestamp" : "2016-02-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-06", + "currentStateOfHealthTimestamp" : "2024-03-14", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -69377,35 +68991,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "catenaXId" : "urn:uuid:c07cd1a3-091a-461e-8b21-af824c559bcd", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "467368", + "orderNumber" : "912292", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "8105", + "referencedStandard" : "AISI", + "referencedStandardID" : "8842", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -69414,14 +69028,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -69431,13 +69045,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -69452,7 +69066,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-966360536351633404870551", + "value" : "NO-287579045342977400706749", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -69463,7 +69077,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "catenaXId" : "urn:uuid:c07cd1a3-091a-461e-8b21-af824c559bcd", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -69475,10 +69089,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "assetId" : "urn:uuid:c07cd1a3-091a-461e-8b21-af824c559bcd", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -69487,17 +69101,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6f67d687-35f6-4e64-ac6d-4d51dacf8d6f", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:99e44fa8-00df-4e84-8aa0-3cbddc40bdd7", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -69510,24 +69124,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -69753,7 +69349,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-966360536351633404870551", + "batteryIDDMCCode" : "NO-287579045342977400706749", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -69772,31 +69368,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c07cd1a3-091a-461e-8b21-af824c559bcd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c07cd1a3-091a-461e-8b21-af824c559bcd", + "parentItems" : [ { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "catenaXId" : "urn:uuid:45fb85e2-ac5d-434f-b499-e4140da62a19", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -69811,11 +69423,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-04-19", + "currentStateOfHealthTimestamp" : "2020-05-07", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-25", + "currentStateOfHealthTimestamp" : "2024-03-16", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -69825,35 +69437,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "catenaXId" : "urn:uuid:45fb85e2-ac5d-434f-b499-e4140da62a19", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "142539", + "orderNumber" : "646102", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 9 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "3209", + "referencedStandard" : "AISI", + "referencedStandardID" : "5738", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -69862,30 +69474,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -69900,7 +69512,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-586885151204747027102290", + "value" : "NO-983223303842967272076091", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -69911,7 +69523,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "catenaXId" : "urn:uuid:45fb85e2-ac5d-434f-b499-e4140da62a19", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -69923,10 +69535,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "assetId" : "urn:uuid:45fb85e2-ac5d-434f-b499-e4140da62a19", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -69935,17 +69547,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:40ac00e5-8213-46d8-8049-b832ff178200", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:184fb777-35b2-481f-8707-7922287b68c3", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -69958,24 +69570,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -70201,7 +69795,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-586885151204747027102290", + "batteryIDDMCCode" : "NO-983223303842967272076091", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -70220,31 +69814,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:45fb85e2-ac5d-434f-b499-e4140da62a19", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:45fb85e2-ac5d-434f-b499-e4140da62a19", + "parentItems" : [ { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "catenaXId" : "urn:uuid:4540ada8-1ff8-4972-93ed-a32dfcdeb9a8", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -70259,11 +69869,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-02-08", + "currentStateOfHealthTimestamp" : "2019-08-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-03-16", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -70273,35 +69883,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "catenaXId" : "urn:uuid:4540ada8-1ff8-4972-93ed-a32dfcdeb9a8", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "398156", + "orderNumber" : "866977", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "IS", - "referencedStandardID" : "6328", + "referencedStandardID" : "7311", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -70313,27 +69923,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -70348,7 +69958,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-660077714588397744604444", + "value" : "NO-320993768856422151278872", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -70359,7 +69969,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "catenaXId" : "urn:uuid:4540ada8-1ff8-4972-93ed-a32dfcdeb9a8", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -70374,7 +69984,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "assetId" : "urn:uuid:4540ada8-1ff8-4972-93ed-a32dfcdeb9a8", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -70383,17 +69993,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1bde9b18-9592-4a96-93b3-1d6294658fa4", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:23c8c6e5-1294-461d-8938-f0267a08a2bf", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -70406,24 +70016,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -70649,7 +70241,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-660077714588397744604444", + "batteryIDDMCCode" : "NO-320993768856422151278872", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -70668,31 +70260,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4540ada8-1ff8-4972-93ed-a32dfcdeb9a8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4540ada8-1ff8-4972-93ed-a32dfcdeb9a8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "catenaXId" : "urn:uuid:5a154a20-7795-4d8f-b08d-322072114efe", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -70707,11 +70315,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-04-19", + "currentStateOfHealthTimestamp" : "2019-10-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -70721,25 +70329,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "catenaXId" : "urn:uuid:5a154a20-7795-4d8f-b08d-322072114efe", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "536838", + "orderNumber" : "752037", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -70748,8 +70356,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "5148", + "referencedStandard" : "AISI", + "referencedStandardID" : "6066", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -70761,27 +70369,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -70796,7 +70404,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-902959824536006525317752", + "value" : "NO-675735053473937289489302", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -70807,7 +70415,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "catenaXId" : "urn:uuid:5a154a20-7795-4d8f-b08d-322072114efe", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -70822,7 +70430,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "assetId" : "urn:uuid:5a154a20-7795-4d8f-b08d-322072114efe", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -70831,17 +70439,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8eac0c20-d881-47c6-80c5-3dd2ca7f97a3", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:42ba5b7f-6078-4a0d-bf6b-d5953617b83d", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -70854,24 +70462,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -71097,7 +70687,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-902959824536006525317752", + "batteryIDDMCCode" : "NO-675735053473937289489302", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -71116,31 +70706,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5a154a20-7795-4d8f-b08d-322072114efe", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5a154a20-7795-4d8f-b08d-322072114efe", + "parentItems" : [ { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "catenaXId" : "urn:uuid:4c442297-1290-41a7-808b-f2c8a227c064", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -71155,11 +70761,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-07-19", + "currentStateOfHealthTimestamp" : "2022-04-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -71169,10 +70775,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "catenaXId" : "urn:uuid:4c442297-1290-41a7-808b-f2c8a227c064", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "683565", + "orderNumber" : "467486", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -71181,23 +70787,23 @@ "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "8402", + "referencedStandard" : "ISO", + "referencedStandardID" : "4582", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -71209,27 +70815,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -71244,7 +70850,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-977849350799966985051994", + "value" : "NO-373423137256259745237611", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -71255,7 +70861,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "catenaXId" : "urn:uuid:4c442297-1290-41a7-808b-f2c8a227c064", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -71267,10 +70873,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "assetId" : "urn:uuid:4c442297-1290-41a7-808b-f2c8a227c064", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -71279,17 +70885,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:cbc584b5-8687-438f-a32c-2d27fc03a213", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:4242636e-9aa6-43b3-8e44-62b2b4eab57e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -71302,24 +70908,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -71545,7 +71133,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-977849350799966985051994", + "batteryIDDMCCode" : "NO-373423137256259745237611", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -71564,28 +71152,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4c442297-1290-41a7-808b-f2c8a227c064", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4c442297-1290-41a7-808b-f2c8a227c064", + "parentItems" : [ { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 26, + "recycledContent" : 34, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -71595,7 +71199,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 78, + "recycledContent" : 26, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -71605,7 +71209,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 39, + "recycledContent" : 12, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -71616,112 +71220,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "catenaXId" : "urn:uuid:57a9c41f-3866-4632-9410-59f8e6e668c6", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "catenaXId" : "urn:uuid:c621d437-e0d8-4e13-bb41-bbbc3476f098", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "catenaXId" : "urn:uuid:3b3155b6-30c5-45d5-adfe-9f41a905f3c6", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "catenaXId" : "urn:uuid:4aaf5056-2a40-493b-811b-f5ec4a84cd17", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "catenaXId" : "urn:uuid:9f915877-ed24-4db3-a3ca-934e3e289088", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "catenaXId" : "urn:uuid:e709d6c8-373b-4258-bb72-bc4dbdcef6df", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "catenaXId" : "urn:uuid:2bbf61e3-15a1-40e4-9235-bbf35c6349b0", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "catenaXId" : "urn:uuid:0355d164-5d56-4550-8ce4-ef3acd732d08", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "catenaXId" : "urn:uuid:010f024d-be51-4cc1-be19-418fc81357df", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "catenaXId" : "urn:uuid:bd44c382-52c5-4dc2-a864-7a74a7bf439d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -71729,35 +71333,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "308977", + "orderNumber" : "250072", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "EN", - "referencedStandardID" : "3787", + "referencedStandardID" : "7654", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -71769,11 +71373,11 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -71783,13 +71387,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -71798,13 +71402,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-418669803382355934007191", + "value" : "NO-907456962530197506538386", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -71815,7 +71419,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -71830,237 +71434,219 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8f9d74f6-42cc-4253-b698-01dcc192d5dc", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:ea8af271-297a-41b2-89bd-8daf9b2c3ddd", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:657b2156-d29e-46db-a506-6feff7c37a48", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:01f2b47d-2f7f-4bde-92fd-53aec472988d", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "childassetId" : "urn:uuid:57a9c41f-3866-4632-9410-59f8e6e668c6", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7168150d-8825-4819-a3ae-c1b5847afcb8", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:111ca3f6-d988-4555-adcd-ce50dfdf0a84", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "childassetId" : "urn:uuid:c621d437-e0d8-4e13-bb41-bbbc3476f098", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c25ad346-f75e-492e-9e1c-4b4a6529103c", + "ownerItemId" : "urn:uuid:eefd1b4c-0c23-49c1-9206-3978404070f5", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "childassetId" : "urn:uuid:3b3155b6-30c5-45d5-adfe-9f41a905f3c6", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:30d0e580-92d9-475b-b95c-4ef39944baf5", + "ownerItemId" : "urn:uuid:ef75e2f7-9343-4b79-a033-ad4d20f6c789", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "childassetId" : "urn:uuid:4aaf5056-2a40-493b-811b-f5ec4a84cd17", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:014a1ac3-9393-431f-b89d-384f6af10260", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:4292a20e-1a59-416e-b6d3-e3b74a42d0e6", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "childassetId" : "urn:uuid:9f915877-ed24-4db3-a3ca-934e3e289088", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b57e3223-9b54-4aed-862e-5e3829a55093", + "ownerItemId" : "urn:uuid:a4cbbc3d-835f-46af-ae15-35e6e07db6e2", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "childassetId" : "urn:uuid:e709d6c8-373b-4258-bb72-bc4dbdcef6df", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:da10cc8e-e01c-4495-92fb-ea4334dd1864", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:d77d0a5c-dfba-43f5-89aa-1dfd8e827a76", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "childassetId" : "urn:uuid:2bbf61e3-15a1-40e4-9235-bbf35c6349b0", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:76cbf0a1-9566-43ea-afde-b12320cbda2c", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:2f8fa007-8357-4628-b6f4-2ae2d014a66d", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "childassetId" : "urn:uuid:0355d164-5d56-4550-8ce4-ef3acd732d08", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:57dc589d-ba38-45aa-923e-861aa4c170ea", + "ownerItemId" : "urn:uuid:abe8901c-cc34-4940-914d-00484e742010", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "childassetId" : "urn:uuid:010f024d-be51-4cc1-be19-418fc81357df", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d23e65b6-8a18-4458-9444-86012054c456", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:0afa45be-97bb-46c2-b73b-1200fa80de7f", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "childassetId" : "urn:uuid:bd44c382-52c5-4dc2-a864-7a74a7bf439d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -72286,7 +71872,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-418669803382355934007191", + "batteryIDDMCCode" : "NO-907456962530197506538386", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -72325,16 +71911,16 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AYRE", + "id" : "BPNL00000003AZQP", "eori" : "DE012345678901" }, - "issueDate" : "2024-01-11", - "version" : 3, - "status" : "Invalid" + "issueDate" : "2023-03-11", + "version" : 2.1, + "status" : "Approved" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6889, + "diameter" : 229.6754, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -72342,22 +71928,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 17 + "value" : 18 } }, "commercial" : { - "placedOnMarket" : "2023-10-28", + "placedOnMarket" : "2020-08-04", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-418669803382355934007191", + "value" : "NO-907456962530197506538386", "key" : "PartInstanceID" } ], - "gtin" : " 61229344", + "gtin" : " 60594398", "additionalCode" : [ { "name" : "TARIC", - "value" : "168346322" + "value" : "412181193" } ] }, "sources" : { @@ -72379,7 +71965,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "SubstanceOfConcern", + "category" : "Safety", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -72408,12 +71994,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-02-28", + "date" : "2023-07-13", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : false, + "reusablePackaging" : true, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -72424,9 +72010,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 5.7531 ] + "left" : [ 7.2581 ] }, - "id" : "KQ1035" + "id" : "OZ3712" } ] }, "additionalData" : [ { @@ -72449,12 +72035,12 @@ } ], "sustainability" : { "material" : [ { - "recycled" : true, + "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Steel" + "name" : "Copper" } ], - "critical" : [ "Lithium" ], + "critical" : [ "Cobalt" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -72464,7 +72050,7 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 117 + "carbonContentTotal" : 108 }, "state" : "first life" }, @@ -72472,7 +72058,7 @@ "importer" : "BPNL00000003AYRE", "manufacturer" : { "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AYRE" + "manufacturerId" : "BPNL00000003AZQP" } } } ], @@ -72484,31 +72070,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AZQP:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "catenaXId" : "urn:uuid:57a9c41f-3866-4632-9410-59f8e6e668c6", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -72523,11 +72125,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-01-26", + "currentStateOfHealthTimestamp" : "2019-07-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -72537,23 +72139,23 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "catenaXId" : "urn:uuid:57a9c41f-3866-4632-9410-59f8e6e668c6", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "282047", + "orderNumber" : "946678", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -72564,8 +72166,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "2749", + "referencedStandard" : "AS", + "referencedStandardID" : "1341", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -72576,28 +72178,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -72612,7 +72214,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-556829998319273469934509", + "value" : "NO-206738772181691926197855", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -72623,7 +72225,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "catenaXId" : "urn:uuid:57a9c41f-3866-4632-9410-59f8e6e668c6", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -72635,10 +72237,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "assetId" : "urn:uuid:57a9c41f-3866-4632-9410-59f8e6e668c6", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -72647,17 +72249,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:fca0bcc8-295b-4f5a-8146-a4130ba512cc", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:058cebfa-ebd8-4471-a5e9-4cf37c80dad5", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -72670,24 +72272,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -72913,7 +72497,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-556829998319273469934509", + "batteryIDDMCCode" : "NO-206738772181691926197855", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -72932,31 +72516,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:57a9c41f-3866-4632-9410-59f8e6e668c6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:57a9c41f-3866-4632-9410-59f8e6e668c6", + "parentItems" : [ { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "catenaXId" : "urn:uuid:c621d437-e0d8-4e13-bb41-bbbc3476f098", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -72971,11 +72571,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-02-28", + "currentStateOfHealthTimestamp" : "2023-07-31", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-13", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -72985,35 +72585,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "catenaXId" : "urn:uuid:c621d437-e0d8-4e13-bb41-bbbc3476f098", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "561423", + "orderNumber" : "234307", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "4012", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "5427", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -73025,27 +72625,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -73060,7 +72660,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-114219272230854934064186", + "value" : "NO-052742864589164739825645", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -73071,7 +72671,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "catenaXId" : "urn:uuid:c621d437-e0d8-4e13-bb41-bbbc3476f098", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -73083,10 +72683,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "assetId" : "urn:uuid:c621d437-e0d8-4e13-bb41-bbbc3476f098", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -73095,17 +72695,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d9072edf-577e-4fd8-8b22-7a30a29aa02d", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:fe3c95a7-5207-4550-8836-7cd3749413b2", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -73118,24 +72718,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -73361,7 +72943,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-114219272230854934064186", + "batteryIDDMCCode" : "NO-052742864589164739825645", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -73380,31 +72962,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c621d437-e0d8-4e13-bb41-bbbc3476f098", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c621d437-e0d8-4e13-bb41-bbbc3476f098", + "parentItems" : [ { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "catenaXId" : "urn:uuid:3b3155b6-30c5-45d5-adfe-9f41a905f3c6", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -73419,11 +73017,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-09-18", + "currentStateOfHealthTimestamp" : "2024-03-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -73433,25 +73031,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "catenaXId" : "urn:uuid:3b3155b6-30c5-45d5-adfe-9f41a905f3c6", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "917481", + "orderNumber" : "486838", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 22 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -73460,8 +73058,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "4194", + "referencedStandard" : "IS", + "referencedStandardID" : "9587", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -73470,30 +73068,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -73508,7 +73106,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-829824339044400302167457", + "value" : "NO-281213755155050898351986", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -73519,7 +73117,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "catenaXId" : "urn:uuid:3b3155b6-30c5-45d5-adfe-9f41a905f3c6", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -73534,7 +73132,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "assetId" : "urn:uuid:3b3155b6-30c5-45d5-adfe-9f41a905f3c6", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -73543,17 +73141,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ddc48568-0607-49f6-87fe-17745b723e46", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:ab326912-88bc-4f0b-ab3f-4aa8d3a61227", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -73566,24 +73164,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -73809,7 +73389,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-829824339044400302167457", + "batteryIDDMCCode" : "NO-281213755155050898351986", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -73828,31 +73408,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3b3155b6-30c5-45d5-adfe-9f41a905f3c6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3b3155b6-30c5-45d5-adfe-9f41a905f3c6", + "parentItems" : [ { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "catenaXId" : "urn:uuid:4aaf5056-2a40-493b-811b-f5ec4a84cd17", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -73867,11 +73463,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-09-03", + "currentStateOfHealthTimestamp" : "2014-12-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-18", + "currentStateOfHealthTimestamp" : "2024-03-09", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -73881,35 +73477,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "catenaXId" : "urn:uuid:4aaf5056-2a40-493b-811b-f5ec4a84cd17", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "856374", + "orderNumber" : "296668", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "8335", + "referencedStandard" : "JASO", + "referencedStandardID" : "8686", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -73918,30 +73514,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -73956,7 +73552,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-224566669636331090545181", + "value" : "NO-355201394729594644758836", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -73967,7 +73563,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "catenaXId" : "urn:uuid:4aaf5056-2a40-493b-811b-f5ec4a84cd17", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -73982,7 +73578,7 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "assetId" : "urn:uuid:4aaf5056-2a40-493b-811b-f5ec4a84cd17", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -73991,17 +73587,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9646bf2c-c3da-4c69-92d2-5b3cb4079e46", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:bd659308-ee9c-4700-a1fa-63736687939a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -74014,24 +73610,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -74257,7 +73835,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-224566669636331090545181", + "batteryIDDMCCode" : "NO-355201394729594644758836", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -74276,31 +73854,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4aaf5056-2a40-493b-811b-f5ec4a84cd17", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4aaf5056-2a40-493b-811b-f5ec4a84cd17", + "parentItems" : [ { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "catenaXId" : "urn:uuid:9f915877-ed24-4db3-a3ca-934e3e289088", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -74315,11 +73909,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-12-24", + "currentStateOfHealthTimestamp" : "2021-02-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-03-31", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -74329,35 +73923,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "catenaXId" : "urn:uuid:9f915877-ed24-4db3-a3ca-934e3e289088", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "750121", + "orderNumber" : "38719", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "9030", + "referencedStandard" : "JIS", + "referencedStandardID" : "7326", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -74369,11 +73963,11 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -74383,13 +73977,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -74404,7 +73998,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-635280441324370168837677", + "value" : "NO-075939486526376984282709", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -74415,7 +74009,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "catenaXId" : "urn:uuid:9f915877-ed24-4db3-a3ca-934e3e289088", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -74427,10 +74021,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "assetId" : "urn:uuid:9f915877-ed24-4db3-a3ca-934e3e289088", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -74439,17 +74033,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e412ac7f-f0cc-4365-ad1a-2651b5c2d952", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:02dba73f-1afb-429e-b43a-390cb63afb93", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -74462,24 +74056,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -74705,7 +74281,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-635280441324370168837677", + "batteryIDDMCCode" : "NO-075939486526376984282709", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -74724,31 +74300,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9f915877-ed24-4db3-a3ca-934e3e289088", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9f915877-ed24-4db3-a3ca-934e3e289088", + "parentItems" : [ { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "catenaXId" : "urn:uuid:e709d6c8-373b-4258-bb72-bc4dbdcef6df", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -74763,11 +74355,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-07-19", + "currentStateOfHealthTimestamp" : "2019-06-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-17", + "currentStateOfHealthTimestamp" : "2024-03-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -74777,35 +74369,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "catenaXId" : "urn:uuid:e709d6c8-373b-4258-bb72-bc4dbdcef6df", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "902500", + "orderNumber" : "565537", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "7217", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "2610", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -74814,30 +74406,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -74852,7 +74444,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-500407972173549682027830", + "value" : "NO-270029099598139084769212", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -74863,7 +74455,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "catenaXId" : "urn:uuid:e709d6c8-373b-4258-bb72-bc4dbdcef6df", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -74878,7 +74470,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "assetId" : "urn:uuid:e709d6c8-373b-4258-bb72-bc4dbdcef6df", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -74887,17 +74479,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ad34598e-a3f7-4659-aa55-c62c3e20a87b", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:2ddaf459-5467-4a17-b3b1-193034f2bbb0", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -74910,24 +74502,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -75153,7 +74727,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-500407972173549682027830", + "batteryIDDMCCode" : "NO-270029099598139084769212", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -75172,31 +74746,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e709d6c8-373b-4258-bb72-bc4dbdcef6df", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e709d6c8-373b-4258-bb72-bc4dbdcef6df", + "parentItems" : [ { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "catenaXId" : "urn:uuid:2bbf61e3-15a1-40e4-9235-bbf35c6349b0", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -75211,11 +74801,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-07-05", + "currentStateOfHealthTimestamp" : "2024-01-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-02", + "currentStateOfHealthTimestamp" : "2024-04-01", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -75225,35 +74815,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "catenaXId" : "urn:uuid:2bbf61e3-15a1-40e4-9235-bbf35c6349b0", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "492086", + "orderNumber" : "447058", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "7931", + "referencedStandard" : "AISI", + "referencedStandardID" : "3715", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -75269,17 +74859,17 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -75300,7 +74890,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-219146627260821677812233", + "value" : "NO-772012543261150096664019", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -75311,7 +74901,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "catenaXId" : "urn:uuid:2bbf61e3-15a1-40e4-9235-bbf35c6349b0", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -75323,10 +74913,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "assetId" : "urn:uuid:2bbf61e3-15a1-40e4-9235-bbf35c6349b0", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -75335,17 +74925,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:534fcb00-8980-4314-bb70-b1e224016483", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:510fca0d-feac-46de-aefe-6072c275494f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -75358,24 +74948,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -75601,7 +75173,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-219146627260821677812233", + "batteryIDDMCCode" : "NO-772012543261150096664019", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -75620,31 +75192,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2bbf61e3-15a1-40e4-9235-bbf35c6349b0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2bbf61e3-15a1-40e4-9235-bbf35c6349b0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "catenaXId" : "urn:uuid:0355d164-5d56-4550-8ce4-ef3acd732d08", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -75659,11 +75247,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-01-18", + "currentStateOfHealthTimestamp" : "2016-05-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -75673,25 +75261,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "catenaXId" : "urn:uuid:0355d164-5d56-4550-8ce4-ef3acd732d08", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "794841", + "orderNumber" : "394741", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -75700,8 +75288,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "5710", + "referencedStandard" : "JIS", + "referencedStandardID" : "3242", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -75710,30 +75298,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -75748,7 +75336,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-074461602369719943828031", + "value" : "NO-048797398304208592765909", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -75759,7 +75347,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "catenaXId" : "urn:uuid:0355d164-5d56-4550-8ce4-ef3acd732d08", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -75771,10 +75359,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "assetId" : "urn:uuid:0355d164-5d56-4550-8ce4-ef3acd732d08", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -75783,17 +75371,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7d5782cc-0955-4cb9-aaab-b2735ce1809b", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:d20f9b47-fdf4-42e7-b220-98e700847c4d", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -75806,24 +75394,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -76049,7 +75619,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-074461602369719943828031", + "batteryIDDMCCode" : "NO-048797398304208592765909", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -76068,31 +75638,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0355d164-5d56-4550-8ce4-ef3acd732d08", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0355d164-5d56-4550-8ce4-ef3acd732d08", + "parentItems" : [ { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "catenaXId" : "urn:uuid:010f024d-be51-4cc1-be19-418fc81357df", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -76107,11 +75693,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-09-12", + "currentStateOfHealthTimestamp" : "2018-08-03", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-27", + "currentStateOfHealthTimestamp" : "2024-03-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -76121,35 +75707,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "catenaXId" : "urn:uuid:010f024d-be51-4cc1-be19-418fc81357df", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "684632", + "orderNumber" : "599275", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "AISI", - "referencedStandardID" : "9713", + "referencedStandardID" : "4244", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -76158,30 +75744,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -76196,7 +75782,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-718137720701312328534032", + "value" : "NO-812588298789193003640192", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -76207,7 +75793,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "catenaXId" : "urn:uuid:010f024d-be51-4cc1-be19-418fc81357df", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -76222,7 +75808,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "assetId" : "urn:uuid:010f024d-be51-4cc1-be19-418fc81357df", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -76231,17 +75817,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b1f2683b-f5f2-4d4f-a757-0c4cea3d350b", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:edf84b09-94bc-44e5-9458-77f2a4685f50", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -76254,24 +75840,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -76497,7 +76065,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-718137720701312328534032", + "batteryIDDMCCode" : "NO-812588298789193003640192", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -76516,31 +76084,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:010f024d-be51-4cc1-be19-418fc81357df", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:010f024d-be51-4cc1-be19-418fc81357df", + "parentItems" : [ { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "catenaXId" : "urn:uuid:bd44c382-52c5-4dc2-a864-7a74a7bf439d", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -76555,11 +76139,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-05-21", + "currentStateOfHealthTimestamp" : "2016-05-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -76569,35 +76153,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "catenaXId" : "urn:uuid:bd44c382-52c5-4dc2-a864-7a74a7bf439d", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "31858", + "orderNumber" : "976696", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 24 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "5339", + "referencedStandard" : "ASME", + "referencedStandardID" : "2552", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -76606,24 +76190,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -76644,7 +76228,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-153173100258750590484715", + "value" : "NO-000743703018230304191522", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -76655,7 +76239,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "catenaXId" : "urn:uuid:bd44c382-52c5-4dc2-a864-7a74a7bf439d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -76667,10 +76251,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "assetId" : "urn:uuid:bd44c382-52c5-4dc2-a864-7a74a7bf439d", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -76679,17 +76263,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7cac3e70-9a92-4138-a50b-e08fa3be2eef", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:152ae991-458a-43af-b6bc-8aec2d142242", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -76702,24 +76286,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -76945,7 +76511,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-153173100258750590484715", + "batteryIDDMCCode" : "NO-000743703018230304191522", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -76964,28 +76530,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bd44c382-52c5-4dc2-a864-7a74a7bf439d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bd44c382-52c5-4dc2-a864-7a74a7bf439d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 53, + "recycledContent" : 0, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -76995,7 +76577,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 31, + "recycledContent" : 17, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -77005,7 +76587,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 75, + "recycledContent" : 25, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -77016,112 +76598,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "catenaXId" : "urn:uuid:8dba367b-1795-4ea3-a0ce-ec9a4f0435eb", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "catenaXId" : "urn:uuid:a9f4195a-d190-4a6d-a25a-bdda61cedeed", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "catenaXId" : "urn:uuid:8daa1301-4bba-41d9-b92a-fe4a173d5ece", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "catenaXId" : "urn:uuid:f11d3bbd-a656-4759-bdd3-a01e1077a84c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "catenaXId" : "urn:uuid:07f6f4f4-de97-4529-8f6a-3910512b64f6", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "catenaXId" : "urn:uuid:322e72a1-4b64-4269-92af-59b560e959fc", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "catenaXId" : "urn:uuid:8816faa6-481b-44ec-91e2-4d196dc12fc1", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "catenaXId" : "urn:uuid:cbeb4e3a-c096-49eb-b37b-18a138d7656c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "catenaXId" : "urn:uuid:f71673d2-cf6d-4f1a-b367-314c897bc3a5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "catenaXId" : "urn:uuid:8f7c63eb-9859-4d08-906e-5dad0d987bb6", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -77129,35 +76711,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "279805", + "orderNumber" : "874643", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 24 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "GB", - "referencedStandardID" : "4141", + "referencedStandardID" : "2259", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -77166,30 +76748,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -77198,13 +76780,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-549149826651196308165721", + "value" : "NO-186380493887351002249452", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -77215,7 +76797,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -77227,240 +76809,222 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:bde78f8e-7bae-44d1-a8ad-e94592f40f13", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:cb4f8c32-b312-4379-a56d-78fadcfaa9f5", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:50b49d6b-e2d8-46b3-b8f5-203133b3f5a0", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:2a024ebe-4ca3-478e-a28c-bf7a7c7ff4dc", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "childassetId" : "urn:uuid:8dba367b-1795-4ea3-a0ce-ec9a4f0435eb", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:aba49add-604c-4354-a12f-64b8e972ce02", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:786a799f-1359-4dc8-bc47-e5b6343a90ba", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "childassetId" : "urn:uuid:a9f4195a-d190-4a6d-a25a-bdda61cedeed", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2ab78787-f369-4f4f-839b-70e1a2515627", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:2589d64d-ca4a-492f-a0f1-af13d2329bf3", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "childassetId" : "urn:uuid:8daa1301-4bba-41d9-b92a-fe4a173d5ece", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ae08a15f-1330-4f4c-8f7e-19256096c4e9", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:4e80019d-54d1-4cac-bcbe-5b2ebf3e2e87", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "childassetId" : "urn:uuid:f11d3bbd-a656-4759-bdd3-a01e1077a84c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:149fc796-a851-42aa-b898-c61cf8b58579", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:51e03d85-3554-4031-a804-8cc8b059b025", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "childassetId" : "urn:uuid:07f6f4f4-de97-4529-8f6a-3910512b64f6", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:59ac42a0-6506-441e-88db-e908f1e9270e", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:df79da6a-3f99-461b-8296-0e794d3c1e79", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "childassetId" : "urn:uuid:322e72a1-4b64-4269-92af-59b560e959fc", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5ad3660d-e783-4fc9-ab41-cf61fc66f8db", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:8c77ebad-a3a6-41c5-a15d-36c058aa0443", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "childassetId" : "urn:uuid:8816faa6-481b-44ec-91e2-4d196dc12fc1", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4019d567-603a-43b2-8e0a-12a6e635dec6", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:1df9c09f-9b24-4b5c-b5bd-b2c3ce80d84f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "childassetId" : "urn:uuid:cbeb4e3a-c096-49eb-b37b-18a138d7656c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1bd6da48-788f-4635-9419-05014eaceb3e", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:ad7b125b-eadb-4462-bf2a-891fa9313cf2", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "childassetId" : "urn:uuid:f71673d2-cf6d-4f1a-b367-314c897bc3a5", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b39500d9-6dcf-4f2f-8f9c-dbeb46f302e2", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:440cdf17-cfc3-4cbc-98c2-0b123e17298f", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "childassetId" : "urn:uuid:8f7c63eb-9859-4d08-906e-5dad0d987bb6", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -77686,7 +77250,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-549149826651196308165721", + "batteryIDDMCCode" : "NO-186380493887351002249452", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -77725,16 +77289,16 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AYRE", + "id" : "BPNL00000003AZQP", "eori" : "DE012345678901" }, - "issueDate" : "2023-11-05", - "version" : 2, - "status" : "Invalid" + "issueDate" : "2023-08-12", + "version" : 1.2, + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6212, + "diameter" : 229.6676, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -77742,22 +77306,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 18 + "value" : 16 } }, "commercial" : { - "placedOnMarket" : "2022-11-26", + "placedOnMarket" : "2022-12-27", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-549149826651196308165721", + "value" : "NO-186380493887351002249452", "key" : "PartInstanceID" } ], - "gtin" : " 18258694", + "gtin" : " 23378696", "additionalCode" : [ { "name" : "TARIC", - "value" : "575343610" + "value" : "365551837" } ] }, "sources" : { @@ -77779,7 +77343,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "SubstanceOfConcern", + "category" : "Safety", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -77808,12 +77372,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-02-13", + "date" : "2023-10-06", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : true, + "reusablePackaging" : false, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -77824,9 +77388,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 2.9056 ] + "left" : [ 5.94 ] }, - "id" : "UF2327" + "id" : "NW4086" } ] }, "additionalData" : [ { @@ -77849,12 +77413,12 @@ } ], "sustainability" : { "material" : [ { - "recycled" : true, + "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Lithium" + "name" : "Polyamid" } ], - "critical" : [ "Nickel" ], + "critical" : [ "Graphite" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -77864,15 +77428,15 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 117 + "carbonContentTotal" : 116 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AYRE", + "importer" : "BPNL00000003B3NX", "manufacturer" : { - "facilityId" : "BPNL00000003AYRE", - "manufacturerId" : "BPNL00000003AYRE" + "facilityId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AZQP" } } } ], @@ -77884,31 +77448,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AZQP:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "catenaXId" : "urn:uuid:8dba367b-1795-4ea3-a0ce-ec9a4f0435eb", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -77923,11 +77503,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-06-12", + "currentStateOfHealthTimestamp" : "2015-01-13", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-17", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -77937,35 +77517,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "catenaXId" : "urn:uuid:8dba367b-1795-4ea3-a0ce-ec9a4f0435eb", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "630279", + "orderNumber" : "467605", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "7579", + "referencedStandard" : "ASME", + "referencedStandardID" : "8776", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -77974,30 +77554,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -78012,7 +77592,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-941922963203176985468580", + "value" : "NO-134154718769034545537323", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -78023,7 +77603,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "catenaXId" : "urn:uuid:8dba367b-1795-4ea3-a0ce-ec9a4f0435eb", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -78035,10 +77615,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "assetId" : "urn:uuid:8dba367b-1795-4ea3-a0ce-ec9a4f0435eb", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -78047,17 +77627,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1f245450-fa1e-4ef1-9911-390182fae324", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:5fcfba1e-a9e5-4367-bd78-7c5eefe14826", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -78070,24 +77650,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -78313,7 +77875,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-941922963203176985468580", + "batteryIDDMCCode" : "NO-134154718769034545537323", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -78332,31 +77894,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8dba367b-1795-4ea3-a0ce-ec9a4f0435eb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8dba367b-1795-4ea3-a0ce-ec9a4f0435eb", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "catenaXId" : "urn:uuid:a9f4195a-d190-4a6d-a25a-bdda61cedeed", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -78371,11 +77949,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-03-24", + "currentStateOfHealthTimestamp" : "2019-10-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-16", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -78385,35 +77963,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "catenaXId" : "urn:uuid:a9f4195a-d190-4a6d-a25a-bdda61cedeed", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "239091", + "orderNumber" : "88596", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "6123", + "referencedStandard" : "JIS", + "referencedStandardID" : "8893", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -78425,27 +78003,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -78460,7 +78038,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-432542315695843094217907", + "value" : "NO-897050660525551336224831", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -78471,7 +78049,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "catenaXId" : "urn:uuid:a9f4195a-d190-4a6d-a25a-bdda61cedeed", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -78483,10 +78061,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "assetId" : "urn:uuid:a9f4195a-d190-4a6d-a25a-bdda61cedeed", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -78495,17 +78073,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5b77f3c0-fb29-4de7-90da-060d1e14d497", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:a48f8a9e-601d-4ba1-9ac0-f18369656f00", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -78518,24 +78096,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -78761,7 +78321,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-432542315695843094217907", + "batteryIDDMCCode" : "NO-897050660525551336224831", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -78780,31 +78340,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a9f4195a-d190-4a6d-a25a-bdda61cedeed", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a9f4195a-d190-4a6d-a25a-bdda61cedeed", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "catenaXId" : "urn:uuid:8daa1301-4bba-41d9-b92a-fe4a173d5ece", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -78819,11 +78395,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-26", + "currentStateOfHealthTimestamp" : "2020-07-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -78833,35 +78409,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "catenaXId" : "urn:uuid:8daa1301-4bba-41d9-b92a-fe4a173d5ece", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "309340", + "orderNumber" : "55766", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "1163", + "referencedStandard" : "IS", + "referencedStandardID" : "2022", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -78873,11 +78449,11 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -78887,13 +78463,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -78908,7 +78484,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-965432778069734733416709", + "value" : "NO-398008298774303211921580", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -78919,7 +78495,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "catenaXId" : "urn:uuid:8daa1301-4bba-41d9-b92a-fe4a173d5ece", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -78931,10 +78507,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "assetId" : "urn:uuid:8daa1301-4bba-41d9-b92a-fe4a173d5ece", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -78943,17 +78519,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6f01a0f2-04ce-4fa4-87b9-5c59a462de25", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:9e15b04c-7a6c-4192-9e41-213ec26a34ae", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -78966,24 +78542,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -79209,7 +78767,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-965432778069734733416709", + "batteryIDDMCCode" : "NO-398008298774303211921580", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -79228,31 +78786,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8daa1301-4bba-41d9-b92a-fe4a173d5ece", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8daa1301-4bba-41d9-b92a-fe4a173d5ece", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "catenaXId" : "urn:uuid:f11d3bbd-a656-4759-bdd3-a01e1077a84c", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -79267,11 +78841,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-07-08", + "currentStateOfHealthTimestamp" : "2015-02-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-03-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -79281,35 +78855,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "catenaXId" : "urn:uuid:f11d3bbd-a656-4759-bdd3-a01e1077a84c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "903326", + "orderNumber" : "699259", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "9581", + "referencedStandard" : "AISI", + "referencedStandardID" : "3310", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -79320,18 +78894,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -79341,7 +78915,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -79356,7 +78930,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-239430732070176538458534", + "value" : "NO-800917851767894262581567", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -79367,7 +78941,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "catenaXId" : "urn:uuid:f11d3bbd-a656-4759-bdd3-a01e1077a84c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -79379,10 +78953,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "assetId" : "urn:uuid:f11d3bbd-a656-4759-bdd3-a01e1077a84c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -79391,17 +78965,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:012cbcd1-af40-4774-b7b1-cb112fc42b68", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:04941a5c-d332-4360-af84-e6f4b65374e1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -79414,24 +78988,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -79657,7 +79213,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-239430732070176538458534", + "batteryIDDMCCode" : "NO-800917851767894262581567", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -79676,31 +79232,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f11d3bbd-a656-4759-bdd3-a01e1077a84c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f11d3bbd-a656-4759-bdd3-a01e1077a84c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "catenaXId" : "urn:uuid:07f6f4f4-de97-4529-8f6a-3910512b64f6", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -79715,11 +79287,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-22", + "currentStateOfHealthTimestamp" : "2015-03-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-27", + "currentStateOfHealthTimestamp" : "2024-03-09", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -79729,35 +79301,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "catenaXId" : "urn:uuid:07f6f4f4-de97-4529-8f6a-3910512b64f6", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "103858", + "orderNumber" : "547550", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "7652", + "referencedStandard" : "AISI", + "referencedStandardID" : "1863", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -79768,28 +79340,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -79804,7 +79376,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-381277313491898129024746", + "value" : "NO-782275150433189261307455", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -79815,7 +79387,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "catenaXId" : "urn:uuid:07f6f4f4-de97-4529-8f6a-3910512b64f6", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -79827,10 +79399,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "assetId" : "urn:uuid:07f6f4f4-de97-4529-8f6a-3910512b64f6", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -79839,17 +79411,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f76503c1-2011-4825-b2e2-7beedb111d1d", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:c3863091-8305-4df3-889d-818dab77e7c1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -79862,24 +79434,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -80105,7 +79659,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-381277313491898129024746", + "batteryIDDMCCode" : "NO-782275150433189261307455", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -80124,31 +79678,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:07f6f4f4-de97-4529-8f6a-3910512b64f6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:07f6f4f4-de97-4529-8f6a-3910512b64f6", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "catenaXId" : "urn:uuid:322e72a1-4b64-4269-92af-59b560e959fc", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -80163,11 +79733,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-09-10", + "currentStateOfHealthTimestamp" : "2017-05-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthTimestamp" : "2024-03-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -80177,25 +79747,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "catenaXId" : "urn:uuid:322e72a1-4b64-4269-92af-59b560e959fc", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "931970", + "orderNumber" : "307312", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -80204,8 +79774,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "1171", + "referencedStandard" : "EN", + "referencedStandardID" : "8437", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -80217,27 +79787,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -80252,7 +79822,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-150599582357067252883840", + "value" : "NO-884935048973859075276674", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -80263,7 +79833,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "catenaXId" : "urn:uuid:322e72a1-4b64-4269-92af-59b560e959fc", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -80275,10 +79845,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "assetId" : "urn:uuid:322e72a1-4b64-4269-92af-59b560e959fc", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -80287,17 +79857,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8efbabcd-c53f-41ba-b38c-f80dc93291d0", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:deab6838-3847-49d8-991a-229a70acf6cc", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -80310,24 +79880,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -80553,7 +80105,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-150599582357067252883840", + "batteryIDDMCCode" : "NO-884935048973859075276674", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -80572,31 +80124,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:322e72a1-4b64-4269-92af-59b560e959fc", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:322e72a1-4b64-4269-92af-59b560e959fc", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "catenaXId" : "urn:uuid:8816faa6-481b-44ec-91e2-4d196dc12fc1", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -80611,11 +80179,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-12-27", + "currentStateOfHealthTimestamp" : "2024-03-13", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthTimestamp" : "2024-04-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -80625,10 +80193,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "catenaXId" : "urn:uuid:8816faa6-481b-44ec-91e2-4d196dc12fc1", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "247381", + "orderNumber" : "995926", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -80637,23 +80205,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 22 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "6840", + "referencedStandard" : "JIS", + "referencedStandardID" : "3767", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -80662,30 +80230,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -80700,7 +80268,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-529552938923438940370052", + "value" : "NO-186036721911035672042107", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -80711,7 +80279,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "catenaXId" : "urn:uuid:8816faa6-481b-44ec-91e2-4d196dc12fc1", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -80723,10 +80291,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "assetId" : "urn:uuid:8816faa6-481b-44ec-91e2-4d196dc12fc1", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -80735,17 +80303,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0163195c-fc9e-4722-b8b0-baac6dd058b4", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:16a009a9-65c2-4581-9790-87b51cb792a5", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -80758,24 +80326,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -81001,7 +80551,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-529552938923438940370052", + "batteryIDDMCCode" : "NO-186036721911035672042107", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -81020,31 +80570,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8816faa6-481b-44ec-91e2-4d196dc12fc1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8816faa6-481b-44ec-91e2-4d196dc12fc1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "catenaXId" : "urn:uuid:cbeb4e3a-c096-49eb-b37b-18a138d7656c", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -81059,11 +80625,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-11-07", + "currentStateOfHealthTimestamp" : "2015-09-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -81073,35 +80639,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "catenaXId" : "urn:uuid:cbeb4e3a-c096-49eb-b37b-18a138d7656c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "765032", + "orderNumber" : "758626", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "2145", + "referencedStandard" : "IS", + "referencedStandardID" : "9804", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -81110,30 +80676,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -81148,7 +80714,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-810124424804228541312316", + "value" : "NO-900471593771521504945024", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -81159,7 +80725,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "catenaXId" : "urn:uuid:cbeb4e3a-c096-49eb-b37b-18a138d7656c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -81171,10 +80737,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "assetId" : "urn:uuid:cbeb4e3a-c096-49eb-b37b-18a138d7656c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -81183,17 +80749,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e038a318-af91-4d18-be3b-90b14e82ecaa", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:a097b8b1-61cb-4b70-afdd-9972bb98be39", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -81206,24 +80772,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -81449,7 +80997,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-810124424804228541312316", + "batteryIDDMCCode" : "NO-900471593771521504945024", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -81468,31 +81016,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:cbeb4e3a-c096-49eb-b37b-18a138d7656c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cbeb4e3a-c096-49eb-b37b-18a138d7656c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "catenaXId" : "urn:uuid:f71673d2-cf6d-4f1a-b367-314c897bc3a5", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -81507,11 +81071,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-07-09", + "currentStateOfHealthTimestamp" : "2016-10-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-15", + "currentStateOfHealthTimestamp" : "2024-03-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -81521,25 +81085,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "catenaXId" : "urn:uuid:f71673d2-cf6d-4f1a-b367-314c897bc3a5", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "520147", + "orderNumber" : "326936", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -81548,8 +81112,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "1370", + "referencedStandard" : "GB", + "referencedStandardID" : "2191", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -81565,7 +81129,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -81575,13 +81139,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -81596,7 +81160,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-573921318124335337929678", + "value" : "NO-647834746207970787337902", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -81607,7 +81171,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "catenaXId" : "urn:uuid:f71673d2-cf6d-4f1a-b367-314c897bc3a5", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -81619,10 +81183,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "assetId" : "urn:uuid:f71673d2-cf6d-4f1a-b367-314c897bc3a5", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -81631,17 +81195,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b3135e0c-4622-4a64-a82c-ee3b3b387895", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:a5243cd6-78d2-4364-a6a2-d53b2a6c9184", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -81654,24 +81218,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -81897,7 +81443,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-573921318124335337929678", + "batteryIDDMCCode" : "NO-647834746207970787337902", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -81916,31 +81462,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f71673d2-cf6d-4f1a-b367-314c897bc3a5", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f71673d2-cf6d-4f1a-b367-314c897bc3a5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "catenaXId" : "urn:uuid:8f7c63eb-9859-4d08-906e-5dad0d987bb6", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -81955,11 +81517,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-03-21", + "currentStateOfHealthTimestamp" : "2021-12-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-01", + "currentStateOfHealthTimestamp" : "2024-03-18", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -81969,23 +81531,23 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "catenaXId" : "urn:uuid:8f7c63eb-9859-4d08-906e-5dad0d987bb6", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "52618", + "orderNumber" : "318135", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 9 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, @@ -81996,8 +81558,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "7122", + "referencedStandard" : "AS", + "referencedStandardID" : "2990", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -82006,30 +81568,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -82044,7 +81606,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-447262560402359900551000", + "value" : "NO-526026936641650650967439", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -82055,7 +81617,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "catenaXId" : "urn:uuid:8f7c63eb-9859-4d08-906e-5dad0d987bb6", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -82067,10 +81629,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "assetId" : "urn:uuid:8f7c63eb-9859-4d08-906e-5dad0d987bb6", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -82079,17 +81641,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9ceff318-73ca-4f37-8189-a8c954e06075", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:b6b98c0e-e7e6-4882-acba-702ae63cc632", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -82102,24 +81664,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -82345,7 +81889,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-447262560402359900551000", + "batteryIDDMCCode" : "NO-526026936641650650967439", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -82364,28 +81908,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8f7c63eb-9859-4d08-906e-5dad0d987bb6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8f7c63eb-9859-4d08-906e-5dad0d987bb6", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Iron", - "recycledContent" : 32, + "recycledContent" : 70, "materialClass" : "1.1", "quantity" : { "unit" : "unit:kilogram", @@ -82395,7 +81955,7 @@ "materialAbbreviation" : "IR334" }, { "materialName" : "Polyethylen", - "recycledContent" : 60, + "recycledContent" : 18, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -82405,7 +81965,7 @@ "materialAbbreviation" : "PE221" }, { "materialName" : "Polyamid6", - "recycledContent" : 9, + "recycledContent" : 63, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -82415,7 +81975,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Aluminium", - "recycledContent" : 59, + "recycledContent" : 36, "materialClass" : "2.1", "quantity" : { "unit" : "unit:kilogram", @@ -82425,7 +81985,7 @@ "materialAbbreviation" : "ALU331" }, { "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", - "recycledContent" : 60, + "recycledContent" : 2, "materialClass" : "0.7", "quantity" : { "unit" : "unit:kilogram", @@ -82435,7 +81995,7 @@ "materialAbbreviation" : "W123" }, { "materialName" : "Glue", - "recycledContent" : 17, + "recycledContent" : 24, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -82445,7 +82005,7 @@ "materialAbbreviation" : "GL338" }, { "materialName" : "Carbon Steel", - "recycledContent" : 60, + "recycledContent" : 49, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -82455,7 +82015,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Cooper", - "recycledContent" : 42, + "recycledContent" : 6, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -82465,7 +82025,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Rubber", - "recycledContent" : 58, + "recycledContent" : 20, "materialClass" : "5.3", "quantity" : { "unit" : "unit:kilogram", @@ -82475,7 +82035,7 @@ "materialAbbreviation" : "R22" }, { "materialName" : "Textiles", - "recycledContent" : 71, + "recycledContent" : 19, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:kilogram", @@ -82486,322 +82046,322 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", "childItems" : [ { - "catenaXId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", + "catenaXId" : "urn:uuid:a728c566-2a96-4c6f-9922-37f34fdd912a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "catenaXId" : "urn:uuid:0b6ce176-a69d-4053-8ac5-7fa3e82ed0db", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "catenaXId" : "urn:uuid:f99c9e58-8ca1-47ed-aebb-07364a072811", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", + "catenaXId" : "urn:uuid:0190f9e1-4fb3-41e6-a5d9-eb53403b8650", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", + "catenaXId" : "urn:uuid:367a18fb-2f75-478d-ba34-f855b6758b2a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", + "catenaXId" : "urn:uuid:cd46f70f-8b83-40e6-8015-d28605ec74e2", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", + "catenaXId" : "urn:uuid:b97770f6-1d4a-45ee-b043-d7e5e524eaf4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", + "catenaXId" : "urn:uuid:beb9298a-8405-4fbf-8539-0c19e86a4d5f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", + "catenaXId" : "urn:uuid:298a4ed6-51d9-4cd0-9fd5-da838abf6594", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", + "catenaXId" : "urn:uuid:0f50d33a-01ec-433b-9229-ac33965a77b8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", + "catenaXId" : "urn:uuid:0868146e-e93a-48ba-b0bc-c529e12bb113", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", + "catenaXId" : "urn:uuid:791edb42-e125-45e6-8403-afeb9714d4ba", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", + "catenaXId" : "urn:uuid:8564420b-3f31-47f9-b57b-174707500464", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", + "catenaXId" : "urn:uuid:6124d6b5-1341-4e8b-90d6-7c2b1e442d5a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", + "catenaXId" : "urn:uuid:550689f9-af72-428b-bfac-8334edf8e416", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", + "catenaXId" : "urn:uuid:acdefc79-3fb8-4156-ad04-3403423d6b20", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", + "catenaXId" : "urn:uuid:edeb7c85-50c5-45a9-820e-bc715b8cb8d8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", + "catenaXId" : "urn:uuid:f7584f1a-ca86-451c-af88-1c7fc53894c9", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", + "catenaXId" : "urn:uuid:93e889b2-5e79-4e9d-9722-e87c4c427a7d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", + "catenaXId" : "urn:uuid:477e8a1c-5ffe-410d-bda0-58d751501b20", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", + "catenaXId" : "urn:uuid:a959944b-c165-429e-8552-912de4fdf5a5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", + "catenaXId" : "urn:uuid:eed036c0-d982-4148-9251-dd0a5ee38635", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", + "catenaXId" : "urn:uuid:c174bb57-87a0-40eb-8a5d-d17711cdc01a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", + "catenaXId" : "urn:uuid:e1d426c7-e47d-46a6-9243-eb7e5d65ab25", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", + "catenaXId" : "urn:uuid:9aff68a5-bd9a-40d5-afd7-a8a2a63bdc02", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", + "catenaXId" : "urn:uuid:7dd14e39-579d-4e1f-b4b7-68a0665c3ef6", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", + "catenaXId" : "urn:uuid:9ecdf8ea-3012-46a2-999c-388d54f3478b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", + "catenaXId" : "urn:uuid:702c6915-2a7d-4e5e-80d1-7716afd88e51", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", + "catenaXId" : "urn:uuid:34d6a2ec-9479-453d-9617-ee75a5cc2337", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "catenaXId" : "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "catenaXId" : "urn:uuid:7bafafa5-2d18-459c-9589-17dc8b2a9ffd", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B5MJ", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", @@ -82809,33 +82369,33 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { - "value" : "PC-93", + "value" : "ZS-49", "key" : "manufacturerPartId" }, { - "value" : "OMBHDGEVKKOXOFVFX", + "value" : "OMBPMUVLCXXZOWCMJ", "key" : "partInstanceId" }, { - "value" : "OMBHDGEVKKOXOFVFX", + "value" : "OMBPMUVLCXXZOWCMJ", "key" : "van" } ], "manufacturingInformation" : { - "date" : "2014-10-02T00:27:59.000Z", + "date" : "2017-02-21T08:26:49.000Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", "partTypeInformation" : { - "manufacturerPartId" : "PC-93", + "manufacturerPartId" : "ZS-49", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -82843,17 +82403,17 @@ } ], "nameAtManufacturer" : "Vehicle Fully Electric" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "01", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -82864,8 +82424,8 @@ } } ], "urn:samm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Cabrio-Limousine", - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "bodyVariant" : "Limousine", + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", "engine" : { "size" : 2998, "power" : 143 @@ -82875,59 +82435,59 @@ "vehicleModel" : "Vehicle Fully Electric", "productionDateGMT" : "2010-01-01", "equipmentVariants" : [ { - "code" : "S388C", - "description" : "security plus", - "group" : "special equipment" - }, { "code" : "C247R", "description" : "trailer hitch", "group" : "special equipment" }, { - "code" : "A01CR", - "description" : "remote engine start", + "code" : "S218A", + "description" : "sport automatic transmission", "group" : "special equipment" }, { - "code" : "A458D", - "description" : "parking assistance ", + "code" : "S763C", + "description" : "sport package", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", "group" : "special equipment" } ], "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", "mileage" : [ { "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2021-04-13", + "mileageTimestamp" : "2023-09-20", "mileageDistance" : 120000 } ] } ] }, { - "catenaXId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", + "catenaXId" : "urn:uuid:a728c566-2a96-4c6f-9922-37f34fdd912a", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "344681", + "orderNumber" : "668593", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "1988", + "referencedStandard" : "DIN", + "referencedStandardID" : "3537", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -82938,8 +82498,8 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -82949,17 +82509,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -82974,7 +82534,7 @@ "value" : "73849201-61", "key" : "manufacturerPartId" }, { - "value" : "NO-264035732197252482880258", + "value" : "NO-975001459823431045751153", "key" : "partInstanceId" }, { "value" : "Company 10", @@ -82991,7 +82551,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", + "catenaXId" : "urn:uuid:a728c566-2a96-4c6f-9922-37f34fdd912a", "partTypeInformation" : { "manufacturerPartId" : "73849201-61", "customerPartId" : "73849201-61", @@ -83003,22 +82563,22 @@ "nameAtManufacturer" : "Catalysator", "nameAtCustomer" : "Catalysator" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", + "assetId" : "urn:uuid:a728c566-2a96-4c6f-9922-37f34fdd912a", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", + "catenaXId" : "urn:uuid:a728c566-2a96-4c6f-9922-37f34fdd912a", "partTypeInformation" : { "ownerPartId" : "73849201-61", - "partVersion" : "03", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Catalysator", "partClassification" : [ { @@ -83028,31 +82588,29 @@ "nameAtOwner" : "Catalysator" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a728c566-2a96-4c6f-9922-37f34fdd912a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "catenaXId" : "urn:uuid:0b6ce176-a69d-4053-8ac5-7fa3e82ed0db", "childItems" : [ { - "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "catenaXId" : "urn:uuid:068fe911-d389-427c-a06c-7f3af3f4be49", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000000BJTL", @@ -83060,35 +82618,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "catenaXId" : "urn:uuid:0b6ce176-a69d-4053-8ac5-7fa3e82ed0db", "bpnl" : "BPNL00000003CSGV", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "79252", + "orderNumber" : "678370", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "5951", + "referencedStandard" : "AISI", + "referencedStandardID" : "3288", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -83097,20 +82655,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -83120,7 +82678,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -83135,7 +82693,7 @@ "value" : "22782277-50", "key" : "manufacturerPartId" }, { - "value" : "NO-532542427279625373288172", + "value" : "NO-335386791211940584158116", "key" : "partInstanceId" }, { "value" : "Company 3", @@ -83152,7 +82710,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "catenaXId" : "urn:uuid:0b6ce176-a69d-4053-8ac5-7fa3e82ed0db", "partTypeInformation" : { "manufacturerPartId" : "22782277-50", "customerPartId" : "22782277-50", @@ -83167,7 +82725,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "assetId" : "urn:uuid:0b6ce176-a69d-4053-8ac5-7fa3e82ed0db", "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { "item" : [ { @@ -83176,26 +82734,26 @@ "key" : "BPNL00000003CSGV:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:db164948-a214-4fe4-ae5e-ad5ee68056ca", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:4c0de860-e903-4b15-bcf3-9a9f093c8738", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "childassetId" : "urn:uuid:068fe911-d389-427c-a06c-7f3af3f4be49", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "catenaXId" : "urn:uuid:0b6ce176-a69d-4053-8ac5-7fa3e82ed0db", "partTypeInformation" : { "ownerPartId" : "22782277-50", "partVersion" : "02", @@ -83208,27 +82766,25 @@ "nameAtOwner" : "Door front-left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0b6ce176-a69d-4053-8ac5-7fa3e82ed0db", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003CSGV" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "91462591PXI", + "value" : "81583965YBK", "key" : "jisNumber" } ], "manufacturingInformation" : { @@ -83239,7 +82795,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "catenaXId" : "urn:uuid:068fe911-d389-427c-a06c-7f3af3f4be49", "partTypeInformation" : { "manufacturerPartId" : "123-0.740-3434-A", "customerPartId" : "PRT-12345", @@ -83252,35 +82808,35 @@ "nameAtCustomer" : "side element A" } } ], - "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "catenaXId" : "urn:uuid:068fe911-d389-427c-a06c-7f3af3f4be49", "bpnl" : "BPNL00000000BJTL", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "802618", + "orderNumber" : "509844", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "4789", + "referencedStandard" : "EN", + "referencedStandardID" : "7688", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -83292,27 +82848,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -83327,7 +82883,7 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-772983460135049623346095", + "value" : "NO-962680212429426118874899", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -83338,7 +82894,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "catenaXId" : "urn:uuid:068fe911-d389-427c-a06c-7f3af3f4be49", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", @@ -83350,22 +82906,22 @@ "nameAtManufacturer" : "Door Key", "nameAtCustomer" : "Door Key" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "assetId" : "urn:uuid:068fe911-d389-427c-a06c-7f3af3f4be49", "manufacturerId" : "BPNL00000000BJTL", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "catenaXId" : "urn:uuid:068fe911-d389-427c-a06c-7f3af3f4be49", "partTypeInformation" : { "ownerPartId" : "95657762-59", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Door Key", "partClassification" : [ { @@ -83375,31 +82931,29 @@ "nameAtOwner" : "Door Key" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:068fe911-d389-427c-a06c-7f3af3f4be49", + "parentItems" : [ { + "catenaXId" : "urn:uuid:0b6ce176-a69d-4053-8ac5-7fa3e82ed0db", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000000BJTL" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "catenaXId" : "urn:uuid:f99c9e58-8ca1-47ed-aebb-07364a072811", "childItems" : [ { - "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "catenaXId" : "urn:uuid:5743ba1b-0e98-4198-b2a5-710da0174089", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000000BJTL", @@ -83407,10 +82961,10 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "catenaXId" : "urn:uuid:f99c9e58-8ca1-47ed-aebb-07364a072811", "bpnl" : "BPNL00000003CSGV", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "758669", + "orderNumber" : "248307", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -83419,23 +82973,23 @@ "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "5730", + "referencedStandard" : "DIN", + "referencedStandardID" : "3316", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -83444,30 +82998,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -83482,7 +83036,7 @@ "value" : "95657362-64", "key" : "manufacturerPartId" }, { - "value" : "NO-941648218258646714580566", + "value" : "NO-482541186838482146151545", "key" : "partInstanceId" }, { "value" : "Company 4", @@ -83499,7 +83053,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "catenaXId" : "urn:uuid:f99c9e58-8ca1-47ed-aebb-07364a072811", "partTypeInformation" : { "manufacturerPartId" : "33740332-54", "customerPartId" : "33740332-54", @@ -83511,10 +83065,10 @@ "nameAtManufacturer" : "Door f-r", "nameAtCustomer" : "Door front-right" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "assetId" : "urn:uuid:f99c9e58-8ca1-47ed-aebb-07364a072811", "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { "item" : [ { @@ -83523,29 +83077,29 @@ "key" : "BPNL00000003CSGV:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:556e3251-11bb-443b-8e5e-96ba0138aa01", + "ownerItemId" : "urn:uuid:d44219c5-eaea-41f0-a5ee-52d190798ef1", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "childassetId" : "urn:uuid:5743ba1b-0e98-4198-b2a5-710da0174089", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "catenaXId" : "urn:uuid:f99c9e58-8ca1-47ed-aebb-07364a072811", "partTypeInformation" : { "ownerPartId" : "33740332-54", - "partVersion" : "03", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Door front-right", "partClassification" : [ { @@ -83555,27 +83109,25 @@ "nameAtOwner" : "Door front-right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f99c9e58-8ca1-47ed-aebb-07364a072811", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003CSGV" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "11345547UVN", + "value" : "84769169ZHF", "key" : "jisNumber" } ], "manufacturingInformation" : { @@ -83586,7 +83138,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "catenaXId" : "urn:uuid:5743ba1b-0e98-4198-b2a5-710da0174089", "partTypeInformation" : { "manufacturerPartId" : "123-0.740-3434-A", "customerPartId" : "PRT-12345", @@ -83599,25 +83151,25 @@ "nameAtCustomer" : "side element A" } } ], - "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "catenaXId" : "urn:uuid:5743ba1b-0e98-4198-b2a5-710da0174089", "bpnl" : "BPNL00000000BJTL", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "363689", + "orderNumber" : "109511", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -83626,8 +83178,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "6385", + "referencedStandard" : "EN", + "referencedStandardID" : "1787", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -83643,23 +83195,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -83674,7 +83226,7 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-890180938494699631851225", + "value" : "NO-554904911286543987554216", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -83685,7 +83237,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "catenaXId" : "urn:uuid:5743ba1b-0e98-4198-b2a5-710da0174089", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", @@ -83700,16 +83252,16 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "assetId" : "urn:uuid:5743ba1b-0e98-4198-b2a5-710da0174089", "manufacturerId" : "BPNL00000000BJTL", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "catenaXId" : "urn:uuid:5743ba1b-0e98-4198-b2a5-710da0174089", "partTypeInformation" : { "ownerPartId" : "95657762-59", "partVersion" : "04", @@ -83722,53 +83274,51 @@ "nameAtOwner" : "Door Key" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5743ba1b-0e98-4198-b2a5-710da0174089", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f99c9e58-8ca1-47ed-aebb-07364a072811", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000000BJTL" ] } ] }, { - "catenaXId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", + "catenaXId" : "urn:uuid:0190f9e1-4fb3-41e6-a5d9-eb53403b8650", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "613938", + "orderNumber" : "934688", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "5578", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9651", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -83777,20 +83327,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -83800,7 +83350,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -83815,7 +83365,7 @@ "value" : "15635759-16", "key" : "manufacturerPartId" }, { - "value" : "NO-425402122056753521010122", + "value" : "NO-480669550705675128141562", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -83826,7 +83376,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", + "catenaXId" : "urn:uuid:0190f9e1-4fb3-41e6-a5d9-eb53403b8650", "partTypeInformation" : { "manufacturerPartId" : "15635759-16", "customerPartId" : "15635759-16", @@ -83838,22 +83388,22 @@ "nameAtManufacturer" : "Door r-l", "nameAtCustomer" : "Door rear-left" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", + "assetId" : "urn:uuid:0190f9e1-4fb3-41e6-a5d9-eb53403b8650", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", + "catenaXId" : "urn:uuid:0190f9e1-4fb3-41e6-a5d9-eb53403b8650", "partTypeInformation" : { "ownerPartId" : "15635759-16", - "partVersion" : "04", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Door rear-left", "partClassification" : [ { @@ -83863,53 +83413,51 @@ "nameAtOwner" : "Door rear-left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0190f9e1-4fb3-41e6-a5d9-eb53403b8650", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", + "catenaXId" : "urn:uuid:367a18fb-2f75-478d-ba34-f855b6758b2a", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "121122", + "orderNumber" : "535986", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "3855", + "referencedStandard" : "JIS", + "referencedStandardID" : "4212", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -83918,24 +83466,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { @@ -83956,7 +83504,7 @@ "value" : "28673126-98", "key" : "manufacturerPartId" }, { - "value" : "NO-188548980582138038135464", + "value" : "NO-297345194310294821167478", "key" : "partInstanceId" }, { "value" : "Company 5", @@ -83973,7 +83521,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", + "catenaXId" : "urn:uuid:367a18fb-2f75-478d-ba34-f855b6758b2a", "partTypeInformation" : { "manufacturerPartId" : "28673126-98", "customerPartId" : "28673126-98", @@ -83985,22 +83533,22 @@ "nameAtManufacturer" : "Door r-r", "nameAtCustomer" : "Door rear-right" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", + "assetId" : "urn:uuid:367a18fb-2f75-478d-ba34-f855b6758b2a", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", + "catenaXId" : "urn:uuid:367a18fb-2f75-478d-ba34-f855b6758b2a", "partTypeInformation" : { "ownerPartId" : "28673126-98", - "partVersion" : "02", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Door rear-right", "partClassification" : [ { @@ -84010,53 +83558,51 @@ "nameAtOwner" : "Door rear-right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:367a18fb-2f75-478d-ba34-f855b6758b2a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", + "catenaXId" : "urn:uuid:cd46f70f-8b83-40e6-8015-d28605ec74e2", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "772378", + "orderNumber" : "617650", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "5832", + "referencedStandard" : "JASO", + "referencedStandardID" : "6216", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -84067,28 +83613,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -84103,7 +83649,7 @@ "value" : "94421589-82", "key" : "manufacturerPartId" }, { - "value" : "NO-219651831423071932337739", + "value" : "NO-148791030618665543227159", "key" : "partInstanceId" }, { "value" : "Company 6", @@ -84120,7 +83666,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", + "catenaXId" : "urn:uuid:cd46f70f-8b83-40e6-8015-d28605ec74e2", "partTypeInformation" : { "manufacturerPartId" : "94421589-82", "customerPartId" : "94421589-82", @@ -84132,22 +83678,22 @@ "nameAtManufacturer" : "Engine hood", "nameAtCustomer" : "Engine hood" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", + "assetId" : "urn:uuid:cd46f70f-8b83-40e6-8015-d28605ec74e2", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", + "catenaXId" : "urn:uuid:cd46f70f-8b83-40e6-8015-d28605ec74e2", "partTypeInformation" : { "ownerPartId" : "94421589-82", - "partVersion" : "03", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Engine hood", "partClassification" : [ { @@ -84157,53 +83703,51 @@ "nameAtOwner" : "Engine hood" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cd46f70f-8b83-40e6-8015-d28605ec74e2", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", + "catenaXId" : "urn:uuid:b97770f6-1d4a-45ee-b043-d7e5e524eaf4", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "713183", + "orderNumber" : "662338", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "3403", + "referencedStandard" : "AISI", + "referencedStandardID" : "1727", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -84214,12 +83758,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -84229,13 +83773,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -84250,7 +83794,7 @@ "value" : "85023955-75", "key" : "manufacturerPartId" }, { - "value" : "NO-229499865779802771168337", + "value" : "NO-950316208244013340642739", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -84261,7 +83805,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", + "catenaXId" : "urn:uuid:b97770f6-1d4a-45ee-b043-d7e5e524eaf4", "partTypeInformation" : { "manufacturerPartId" : "85023955-75", "customerPartId" : "85023955-75", @@ -84273,22 +83817,22 @@ "nameAtManufacturer" : "Tailgate", "nameAtCustomer" : "Tailgate" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", + "assetId" : "urn:uuid:b97770f6-1d4a-45ee-b043-d7e5e524eaf4", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", + "catenaXId" : "urn:uuid:b97770f6-1d4a-45ee-b043-d7e5e524eaf4", "partTypeInformation" : { "ownerPartId" : "85023955-75", - "partVersion" : "01", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Tailgate", "partClassification" : [ { @@ -84298,37 +83842,35 @@ "nameAtOwner" : "Tailgate" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b97770f6-1d4a-45ee-b043-d7e5e524eaf4", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", + "catenaXId" : "urn:uuid:beb9298a-8405-4fbf-8539-0c19e86a4d5f", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "946351", + "orderNumber" : "808982", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -84339,12 +83881,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "7284", + "referencedStandard" : "AISI", + "referencedStandardID" : "5448", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -84356,11 +83898,11 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -84370,13 +83912,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -84391,7 +83933,7 @@ "value" : "13769860-47", "key" : "manufacturerPartId" }, { - "value" : "NO-970517596585278331348560", + "value" : "NO-925686063262121682428671", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -84402,7 +83944,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", + "catenaXId" : "urn:uuid:beb9298a-8405-4fbf-8539-0c19e86a4d5f", "partTypeInformation" : { "manufacturerPartId" : "13769860-47", "customerPartId" : "13769860-47", @@ -84414,22 +83956,22 @@ "nameAtManufacturer" : "Fender left", "nameAtCustomer" : "Fender right" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", + "assetId" : "urn:uuid:beb9298a-8405-4fbf-8539-0c19e86a4d5f", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", + "catenaXId" : "urn:uuid:beb9298a-8405-4fbf-8539-0c19e86a4d5f", "partTypeInformation" : { "ownerPartId" : "13769860-47", - "partVersion" : "01", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Fender right", "partClassification" : [ { @@ -84439,53 +83981,51 @@ "nameAtOwner" : "Fender right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:beb9298a-8405-4fbf-8539-0c19e86a4d5f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", + "catenaXId" : "urn:uuid:298a4ed6-51d9-4cd0-9fd5-da838abf6594", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "432537", + "orderNumber" : "851640", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "1405", + "referencedStandard" : "IS", + "referencedStandardID" : "1454", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -84496,28 +84036,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -84532,7 +84072,7 @@ "value" : "36643162-35", "key" : "manufacturerPartId" }, { - "value" : "NO-045227129302826121356634", + "value" : "NO-889797773496006924368331", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -84543,7 +84083,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", + "catenaXId" : "urn:uuid:298a4ed6-51d9-4cd0-9fd5-da838abf6594", "partTypeInformation" : { "manufacturerPartId" : "36643162-35", "customerPartId" : "36643162-35", @@ -84558,16 +84098,16 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", + "assetId" : "urn:uuid:298a4ed6-51d9-4cd0-9fd5-da838abf6594", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", + "catenaXId" : "urn:uuid:298a4ed6-51d9-4cd0-9fd5-da838abf6594", "partTypeInformation" : { "ownerPartId" : "36643162-35", "partVersion" : "05", @@ -84580,53 +84120,51 @@ "nameAtOwner" : "Fender right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:298a4ed6-51d9-4cd0-9fd5-da838abf6594", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", + "catenaXId" : "urn:uuid:0f50d33a-01ec-433b-9229-ac33965a77b8", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "528720", + "orderNumber" : "416957", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 24 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "3354", + "referencedStandard" : "JASO", + "referencedStandardID" : "9643", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -84635,30 +84173,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -84673,7 +84211,7 @@ "value" : "54165444-59", "key" : "manufacturerPartId" }, { - "value" : "NO-100036177199295659893765", + "value" : "NO-341961647694717983607414", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -84684,7 +84222,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", + "catenaXId" : "urn:uuid:0f50d33a-01ec-433b-9229-ac33965a77b8", "partTypeInformation" : { "manufacturerPartId" : "54165444-59", "customerPartId" : "54165444-59", @@ -84696,22 +84234,22 @@ "nameAtManufacturer" : "Bumper front", "nameAtCustomer" : "Bumper front" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", + "assetId" : "urn:uuid:0f50d33a-01ec-433b-9229-ac33965a77b8", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", + "catenaXId" : "urn:uuid:0f50d33a-01ec-433b-9229-ac33965a77b8", "partTypeInformation" : { "ownerPartId" : "54165444-59", - "partVersion" : "04", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Bumper front", "partClassification" : [ { @@ -84721,28 +84259,26 @@ "nameAtOwner" : "Bumper front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0f50d33a-01ec-433b-9229-ac33965a77b8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", + "catenaXId" : "urn:uuid:0868146e-e93a-48ba-b0bc-c529e12bb113", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "377714", + "orderNumber" : "154481", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -84751,23 +84287,23 @@ "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "3324", + "referencedStandard" : "AISI", + "referencedStandardID" : "7913", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -84776,30 +84312,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -84814,7 +84350,7 @@ "value" : "22768257-25", "key" : "manufacturerPartId" }, { - "value" : "NO-551163600198049838485842", + "value" : "NO-970184929223671657380079", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -84825,7 +84361,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", + "catenaXId" : "urn:uuid:0868146e-e93a-48ba-b0bc-c529e12bb113", "partTypeInformation" : { "manufacturerPartId" : "22768257-25", "customerPartId" : "22768257-25", @@ -84840,16 +84376,16 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", + "assetId" : "urn:uuid:0868146e-e93a-48ba-b0bc-c529e12bb113", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", + "catenaXId" : "urn:uuid:0868146e-e93a-48ba-b0bc-c529e12bb113", "partTypeInformation" : { "ownerPartId" : "22768257-25", "partVersion" : "01", @@ -84862,34 +84398,32 @@ "nameAtOwner" : "Bumper rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0868146e-e93a-48ba-b0bc-c529e12bb113", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", + "catenaXId" : "urn:uuid:791edb42-e125-45e6-8403-afeb9714d4ba", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "393939", + "orderNumber" : "912455", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 17 @@ -84898,7 +84432,7 @@ "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -84907,8 +84441,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "7998", + "referencedStandard" : "ISO", + "referencedStandardID" : "6398", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -84917,30 +84451,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -84955,7 +84489,7 @@ "value" : "65529521-37", "key" : "manufacturerPartId" }, { - "value" : "NO-335731119820995518008771", + "value" : "NO-027049062777701048893349", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -84966,7 +84500,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", + "catenaXId" : "urn:uuid:791edb42-e125-45e6-8403-afeb9714d4ba", "partTypeInformation" : { "manufacturerPartId" : "65529521-37", "customerPartId" : "65529521-37", @@ -84978,22 +84512,22 @@ "nameAtManufacturer" : "Exterior mirror left", "nameAtCustomer" : "Exterior mirror left" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", + "assetId" : "urn:uuid:791edb42-e125-45e6-8403-afeb9714d4ba", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", + "catenaXId" : "urn:uuid:791edb42-e125-45e6-8403-afeb9714d4ba", "partTypeInformation" : { "ownerPartId" : "65529521-37", - "partVersion" : "01", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Exterior mirror left", "partClassification" : [ { @@ -85003,53 +84537,51 @@ "nameAtOwner" : "Exterior mirror left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:791edb42-e125-45e6-8403-afeb9714d4ba", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", + "catenaXId" : "urn:uuid:8564420b-3f31-47f9-b57b-174707500464", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "230290", + "orderNumber" : "540539", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "5285", + "referencedStandard" : "IS", + "referencedStandardID" : "8306", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -85058,24 +84590,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -85096,7 +84628,7 @@ "value" : "58471477-24", "key" : "manufacturerPartId" }, { - "value" : "NO-079239086229295448541139", + "value" : "NO-015974619274064623422022", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -85107,7 +84639,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", + "catenaXId" : "urn:uuid:8564420b-3f31-47f9-b57b-174707500464", "partTypeInformation" : { "manufacturerPartId" : "58471477-24", "customerPartId" : "58471477-24", @@ -85119,22 +84651,22 @@ "nameAtManufacturer" : "Exterior mirror right", "nameAtCustomer" : "Exterior mirror right" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", + "assetId" : "urn:uuid:8564420b-3f31-47f9-b57b-174707500464", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", + "catenaXId" : "urn:uuid:8564420b-3f31-47f9-b57b-174707500464", "partTypeInformation" : { "ownerPartId" : "58471477-24", - "partVersion" : "04", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Exterior mirror right", "partClassification" : [ { @@ -85144,53 +84676,51 @@ "nameAtOwner" : "Exterior mirror right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8564420b-3f31-47f9-b57b-174707500464", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", + "catenaXId" : "urn:uuid:6124d6b5-1341-4e8b-90d6-7c2b1e442d5a", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "892455", + "orderNumber" : "400118", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "8069", + "referencedStandard" : "AS", + "referencedStandardID" : "4298", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -85202,7 +84732,7 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -85212,7 +84742,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -85222,7 +84752,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -85237,7 +84767,7 @@ "value" : "09002013-68", "key" : "manufacturerPartId" }, { - "value" : "NO-662892968393446403852433", + "value" : "NO-123272195421376145336496", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -85248,7 +84778,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", + "catenaXId" : "urn:uuid:6124d6b5-1341-4e8b-90d6-7c2b1e442d5a", "partTypeInformation" : { "manufacturerPartId" : "09002013-68", "customerPartId" : "09002013-68", @@ -85263,16 +84793,16 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", + "assetId" : "urn:uuid:6124d6b5-1341-4e8b-90d6-7c2b1e442d5a", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", + "catenaXId" : "urn:uuid:6124d6b5-1341-4e8b-90d6-7c2b1e442d5a", "partTypeInformation" : { "ownerPartId" : "09002013-68", "partVersion" : "05", @@ -85285,53 +84815,51 @@ "nameAtOwner" : "Tailer coupling" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6124d6b5-1341-4e8b-90d6-7c2b1e442d5a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", + "catenaXId" : "urn:uuid:550689f9-af72-428b-bfac-8334edf8e416", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "379760", + "orderNumber" : "369833", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "2969", + "referencedStandard" : "AS", + "referencedStandardID" : "8137", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -85340,10 +84868,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -85378,7 +84906,7 @@ "value" : "43501996-98", "key" : "manufacturerPartId" }, { - "value" : "NO-889772651801296554294291", + "value" : "NO-955636203002042643561671", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -85389,7 +84917,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", + "catenaXId" : "urn:uuid:550689f9-af72-428b-bfac-8334edf8e416", "partTypeInformation" : { "manufacturerPartId" : "43501996-98", "customerPartId" : "43501996-98", @@ -85401,22 +84929,22 @@ "nameAtManufacturer" : "Dashboard", "nameAtCustomer" : "Dashboard" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", + "assetId" : "urn:uuid:550689f9-af72-428b-bfac-8334edf8e416", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", + "catenaXId" : "urn:uuid:550689f9-af72-428b-bfac-8334edf8e416", "partTypeInformation" : { "ownerPartId" : "43501996-98", - "partVersion" : "05", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Dashboard", "partClassification" : [ { @@ -85426,53 +84954,51 @@ "nameAtOwner" : "Dashboard" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:550689f9-af72-428b-bfac-8334edf8e416", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", + "catenaXId" : "urn:uuid:acdefc79-3fb8-4156-ad04-3403423d6b20", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "895753", + "orderNumber" : "868997", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "7750", + "referencedStandard" : "GB", + "referencedStandardID" : "4665", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -85481,20 +85007,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -85504,7 +85030,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -85519,7 +85045,7 @@ "value" : "77795937-13", "key" : "manufacturerPartId" }, { - "value" : "NO-540565783816081906926354", + "value" : "NO-668608539671271875264871", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -85530,7 +85056,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", + "catenaXId" : "urn:uuid:acdefc79-3fb8-4156-ad04-3403423d6b20", "partTypeInformation" : { "manufacturerPartId" : "77795937-13", "customerPartId" : "77795937-13", @@ -85542,22 +85068,22 @@ "nameAtManufacturer" : "Steering wheel", "nameAtCustomer" : "Steering wheel" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", + "assetId" : "urn:uuid:acdefc79-3fb8-4156-ad04-3403423d6b20", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", + "catenaXId" : "urn:uuid:acdefc79-3fb8-4156-ad04-3403423d6b20", "partTypeInformation" : { "ownerPartId" : "77795937-13", - "partVersion" : "01", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Steering wheel", "partClassification" : [ { @@ -85567,53 +85093,51 @@ "nameAtOwner" : "Steering wheel" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:acdefc79-3fb8-4156-ad04-3403423d6b20", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", + "catenaXId" : "urn:uuid:edeb7c85-50c5-45a9-820e-bc715b8cb8d8", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "327153", + "orderNumber" : "782072", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "EN", - "referencedStandardID" : "2779", + "referencedStandardID" : "6018", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -85624,28 +85148,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -85660,7 +85184,7 @@ "value" : "20125432-59", "key" : "manufacturerPartId" }, { - "value" : "NO-279563108780111500871292", + "value" : "NO-909406989040813591067152", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -85671,7 +85195,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", + "catenaXId" : "urn:uuid:edeb7c85-50c5-45a9-820e-bc715b8cb8d8", "partTypeInformation" : { "manufacturerPartId" : "20125432-59", "customerPartId" : "20125432-59", @@ -85686,16 +85210,16 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", + "assetId" : "urn:uuid:edeb7c85-50c5-45a9-820e-bc715b8cb8d8", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", + "catenaXId" : "urn:uuid:edeb7c85-50c5-45a9-820e-bc715b8cb8d8", "partTypeInformation" : { "ownerPartId" : "20125432-59", "partVersion" : "01", @@ -85708,53 +85232,51 @@ "nameAtOwner" : "Indicator left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:edeb7c85-50c5-45a9-820e-bc715b8cb8d8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", + "catenaXId" : "urn:uuid:f7584f1a-ca86-451c-af88-1c7fc53894c9", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "164206", + "orderNumber" : "295410", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "1736", + "referencedStandard" : "EN", + "referencedStandardID" : "3032", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -85763,30 +85285,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -85801,7 +85323,7 @@ "value" : "19073706-76", "key" : "manufacturerPartId" }, { - "value" : "NO-208125027138910912230197", + "value" : "NO-712542909817646635893498", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -85812,7 +85334,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", + "catenaXId" : "urn:uuid:f7584f1a-ca86-451c-af88-1c7fc53894c9", "partTypeInformation" : { "manufacturerPartId" : "19073706-76", "customerPartId" : "19073706-76", @@ -85824,22 +85346,22 @@ "nameAtManufacturer" : "Indicator right", "nameAtCustomer" : "Indicator right" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", + "assetId" : "urn:uuid:f7584f1a-ca86-451c-af88-1c7fc53894c9", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", + "catenaXId" : "urn:uuid:f7584f1a-ca86-451c-af88-1c7fc53894c9", "partTypeInformation" : { "ownerPartId" : "19073706-76", - "partVersion" : "03", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Indicator right", "partClassification" : [ { @@ -85849,53 +85371,51 @@ "nameAtOwner" : "Indicator right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f7584f1a-ca86-451c-af88-1c7fc53894c9", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", + "catenaXId" : "urn:uuid:93e889b2-5e79-4e9d-9722-e87c4c427a7d", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "507946", + "orderNumber" : "810038", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "1797", + "referencedStandard" : "ASME", + "referencedStandardID" : "8919", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -85906,18 +85426,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -85927,7 +85447,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -85942,7 +85462,7 @@ "value" : "45415162-57", "key" : "manufacturerPartId" }, { - "value" : "NO-990942273895285348726954", + "value" : "NO-744807829977914804467911", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -85953,7 +85473,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", + "catenaXId" : "urn:uuid:93e889b2-5e79-4e9d-9722-e87c4c427a7d", "partTypeInformation" : { "manufacturerPartId" : "45415162-57", "customerPartId" : "45415162-57", @@ -85968,16 +85488,16 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", + "assetId" : "urn:uuid:93e889b2-5e79-4e9d-9722-e87c4c427a7d", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", + "catenaXId" : "urn:uuid:93e889b2-5e79-4e9d-9722-e87c4c427a7d", "partTypeInformation" : { "ownerPartId" : "45415162-57", "partVersion" : "01", @@ -85990,43 +85510,41 @@ "nameAtOwner" : "Led headlight" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:93e889b2-5e79-4e9d-9722-e87c4c427a7d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", + "catenaXId" : "urn:uuid:477e8a1c-5ffe-410d-bda0-58d751501b20", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "774660", + "orderNumber" : "775753", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -86035,8 +85553,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "8288", + "referencedStandard" : "AISI", + "referencedStandardID" : "6735", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -86045,10 +85563,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -86058,17 +85576,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -86083,7 +85601,7 @@ "value" : "78141846-87", "key" : "manufacturerPartId" }, { - "value" : "NO-492027182143893536578211", + "value" : "NO-001742371880757211938381", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -86094,7 +85612,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", + "catenaXId" : "urn:uuid:477e8a1c-5ffe-410d-bda0-58d751501b20", "partTypeInformation" : { "manufacturerPartId" : "78141846-87", "customerPartId" : "78141846-87", @@ -86106,22 +85624,22 @@ "nameAtManufacturer" : "Starter motor", "nameAtCustomer" : "Starter motor" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", + "assetId" : "urn:uuid:477e8a1c-5ffe-410d-bda0-58d751501b20", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", + "catenaXId" : "urn:uuid:477e8a1c-5ffe-410d-bda0-58d751501b20", "partTypeInformation" : { "ownerPartId" : "78141846-87", - "partVersion" : "04", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Starter motor", "partClassification" : [ { @@ -86131,53 +85649,51 @@ "nameAtOwner" : "Starter motor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:477e8a1c-5ffe-410d-bda0-58d751501b20", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", + "catenaXId" : "urn:uuid:a959944b-c165-429e-8552-912de4fdf5a5", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "995890", + "orderNumber" : "168756", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "7174", + "referencedStandard" : "JIS", + "referencedStandardID" : "6177", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -86186,30 +85702,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -86224,7 +85740,7 @@ "value" : "81324139-23", "key" : "manufacturerPartId" }, { - "value" : "NO-082450001638146989330611", + "value" : "NO-206706222944221258727004", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -86235,7 +85751,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", + "catenaXId" : "urn:uuid:a959944b-c165-429e-8552-912de4fdf5a5", "partTypeInformation" : { "manufacturerPartId" : "81324139-23", "customerPartId" : "81324139-23", @@ -86247,22 +85763,22 @@ "nameAtManufacturer" : "Alternator", "nameAtCustomer" : "Alternator" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", + "assetId" : "urn:uuid:a959944b-c165-429e-8552-912de4fdf5a5", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", + "catenaXId" : "urn:uuid:a959944b-c165-429e-8552-912de4fdf5a5", "partTypeInformation" : { "ownerPartId" : "81324139-23", - "partVersion" : "05", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Alternator", "partClassification" : [ { @@ -86272,53 +85788,51 @@ "nameAtOwner" : "Alternator" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a959944b-c165-429e-8552-912de4fdf5a5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", + "catenaXId" : "urn:uuid:eed036c0-d982-4148-9251-dd0a5ee38635", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "942988", + "orderNumber" : "453670", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "4702", + "referencedStandard" : "AS", + "referencedStandardID" : "7722", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -86330,21 +85844,21 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -86365,7 +85879,7 @@ "value" : "57929013-09", "key" : "manufacturerPartId" }, { - "value" : "NO-143989149387311917330886", + "value" : "NO-483115736481205925292116", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -86376,7 +85890,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", + "catenaXId" : "urn:uuid:eed036c0-d982-4148-9251-dd0a5ee38635", "partTypeInformation" : { "manufacturerPartId" : "57929013-09", "customerPartId" : "57929013-09", @@ -86388,22 +85902,22 @@ "nameAtManufacturer" : "AC compressor", "nameAtCustomer" : "Air conditioning compressor" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", + "assetId" : "urn:uuid:eed036c0-d982-4148-9251-dd0a5ee38635", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", + "catenaXId" : "urn:uuid:eed036c0-d982-4148-9251-dd0a5ee38635", "partTypeInformation" : { "ownerPartId" : "57929013-09", - "partVersion" : "02", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Air conditioning compressor", "partClassification" : [ { @@ -86413,43 +85927,41 @@ "nameAtOwner" : "Air conditioning compressor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:eed036c0-d982-4148-9251-dd0a5ee38635", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", + "catenaXId" : "urn:uuid:c174bb57-87a0-40eb-8a5d-d17711cdc01a", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "65111", + "orderNumber" : "762482", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -86458,8 +85970,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "8682", + "referencedStandard" : "AS", + "referencedStandardID" : "1079", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -86468,20 +85980,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -86491,7 +86003,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -86506,7 +86018,7 @@ "value" : "61184040-23", "key" : "manufacturerPartId" }, { - "value" : "NO-316284489461785110855343", + "value" : "NO-763017179063365380190964", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -86517,7 +86029,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", + "catenaXId" : "urn:uuid:c174bb57-87a0-40eb-8a5d-d17711cdc01a", "partTypeInformation" : { "manufacturerPartId" : "61184040-23", "customerPartId" : "61184040-23", @@ -86529,22 +86041,22 @@ "nameAtManufacturer" : "Taillight rear", "nameAtCustomer" : "Taillight rear" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", + "assetId" : "urn:uuid:c174bb57-87a0-40eb-8a5d-d17711cdc01a", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", + "catenaXId" : "urn:uuid:c174bb57-87a0-40eb-8a5d-d17711cdc01a", "partTypeInformation" : { "ownerPartId" : "61184040-23", - "partVersion" : "02", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Taillight rear", "partClassification" : [ { @@ -86554,43 +86066,41 @@ "nameAtOwner" : "Taillight rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c174bb57-87a0-40eb-8a5d-d17711cdc01a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", + "catenaXId" : "urn:uuid:e1d426c7-e47d-46a6-9243-eb7e5d65ab25", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "217551", + "orderNumber" : "961177", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 6 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -86599,8 +86109,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "7891", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "5880", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -86612,27 +86122,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -86647,7 +86157,7 @@ "value" : "78744126-74", "key" : "manufacturerPartId" }, { - "value" : "NO-265182792920770739941687", + "value" : "NO-207568130451579171710915", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -86658,7 +86168,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", + "catenaXId" : "urn:uuid:e1d426c7-e47d-46a6-9243-eb7e5d65ab25", "partTypeInformation" : { "manufacturerPartId" : "78744126-74", "customerPartId" : "78744126-74", @@ -86670,22 +86180,22 @@ "nameAtManufacturer" : "Taillight front", "nameAtCustomer" : "Taillight front" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", + "assetId" : "urn:uuid:e1d426c7-e47d-46a6-9243-eb7e5d65ab25", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", + "catenaXId" : "urn:uuid:e1d426c7-e47d-46a6-9243-eb7e5d65ab25", "partTypeInformation" : { "ownerPartId" : "78744126-74", - "partVersion" : "05", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Taillight front", "partClassification" : [ { @@ -86695,53 +86205,51 @@ "nameAtOwner" : "Taillight front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e1d426c7-e47d-46a6-9243-eb7e5d65ab25", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", + "catenaXId" : "urn:uuid:9aff68a5-bd9a-40d5-afd7-a8a2a63bdc02", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "36728", + "orderNumber" : "766024", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 23 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "5908", + "referencedStandard" : "JIS", + "referencedStandardID" : "9645", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -86750,30 +86258,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -86788,7 +86296,7 @@ "value" : "12093297-03", "key" : "manufacturerPartId" }, { - "value" : "NO-321655538588745557898831", + "value" : "NO-444337350901528558858992", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -86799,7 +86307,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", + "catenaXId" : "urn:uuid:9aff68a5-bd9a-40d5-afd7-a8a2a63bdc02", "partTypeInformation" : { "manufacturerPartId" : "12093297-03", "customerPartId" : "12093297-03", @@ -86811,22 +86319,22 @@ "nameAtManufacturer" : "Axle part front", "nameAtCustomer" : "Axle part front" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", + "assetId" : "urn:uuid:9aff68a5-bd9a-40d5-afd7-a8a2a63bdc02", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", + "catenaXId" : "urn:uuid:9aff68a5-bd9a-40d5-afd7-a8a2a63bdc02", "partTypeInformation" : { "ownerPartId" : "12093297-03", - "partVersion" : "02", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Axle part front", "partClassification" : [ { @@ -86836,53 +86344,51 @@ "nameAtOwner" : "Axle part front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9aff68a5-bd9a-40d5-afd7-a8a2a63bdc02", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", + "catenaXId" : "urn:uuid:7dd14e39-579d-4e1f-b4b7-68a0665c3ef6", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "318095", + "orderNumber" : "685638", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "1883", + "referencedStandard" : "ASME", + "referencedStandardID" : "5585", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -86891,14 +86397,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -86929,7 +86435,7 @@ "value" : "88111709-49", "key" : "manufacturerPartId" }, { - "value" : "NO-628587963061640627744540", + "value" : "NO-433533160602951670664143", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -86940,7 +86446,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", + "catenaXId" : "urn:uuid:7dd14e39-579d-4e1f-b4b7-68a0665c3ef6", "partTypeInformation" : { "manufacturerPartId" : "88111709-49", "customerPartId" : "88111709-49", @@ -86952,22 +86458,22 @@ "nameAtManufacturer" : "Axle part rear", "nameAtCustomer" : "Axle part rear" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", + "assetId" : "urn:uuid:7dd14e39-579d-4e1f-b4b7-68a0665c3ef6", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", + "catenaXId" : "urn:uuid:7dd14e39-579d-4e1f-b4b7-68a0665c3ef6", "partTypeInformation" : { "ownerPartId" : "88111709-49", - "partVersion" : "03", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Axle part rear", "partClassification" : [ { @@ -86977,53 +86483,51 @@ "nameAtOwner" : "Axle part rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7dd14e39-579d-4e1f-b4b7-68a0665c3ef6", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", + "catenaXId" : "urn:uuid:9ecdf8ea-3012-46a2-999c-388d54f3478b", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "121748", + "orderNumber" : "181371", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "1250", + "referencedStandard" : "JIS", + "referencedStandardID" : "2887", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -87035,27 +86539,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -87070,7 +86574,7 @@ "value" : "00871379-44", "key" : "manufacturerPartId" }, { - "value" : "NO-650434778386338517411768", + "value" : "NO-249946966569555718135189", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -87081,7 +86585,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", + "catenaXId" : "urn:uuid:9ecdf8ea-3012-46a2-999c-388d54f3478b", "partTypeInformation" : { "manufacturerPartId" : "00871379-44", "customerPartId" : "00871379-44", @@ -87093,22 +86597,22 @@ "nameAtManufacturer" : "Chassis", "nameAtCustomer" : "Chassis" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", + "assetId" : "urn:uuid:9ecdf8ea-3012-46a2-999c-388d54f3478b", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", + "catenaXId" : "urn:uuid:9ecdf8ea-3012-46a2-999c-388d54f3478b", "partTypeInformation" : { "ownerPartId" : "00871379-44", - "partVersion" : "02", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Chassis", "partClassification" : [ { @@ -87118,28 +86622,26 @@ "nameAtOwner" : "Chassis" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9ecdf8ea-3012-46a2-999c-388d54f3478b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", + "catenaXId" : "urn:uuid:702c6915-2a7d-4e5e-80d1-7716afd88e51", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "580190", + "orderNumber" : "537373", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -87148,7 +86650,7 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -87159,12 +86661,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "7234", + "referencedStandard" : "AS", + "referencedStandardID" : "4321", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -87173,10 +86675,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -87186,17 +86688,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -87211,7 +86713,7 @@ "value" : "08901347-87", "key" : "manufacturerPartId" }, { - "value" : "NO-231583231538167331069744", + "value" : "NO-174090109136872872766676", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -87222,7 +86724,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", + "catenaXId" : "urn:uuid:702c6915-2a7d-4e5e-80d1-7716afd88e51", "partTypeInformation" : { "manufacturerPartId" : "08901347-87", "customerPartId" : "08901347-87", @@ -87237,16 +86739,16 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", + "assetId" : "urn:uuid:702c6915-2a7d-4e5e-80d1-7716afd88e51", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", + "catenaXId" : "urn:uuid:702c6915-2a7d-4e5e-80d1-7716afd88e51", "partTypeInformation" : { "ownerPartId" : "08901347-87", "partVersion" : "05", @@ -87259,53 +86761,51 @@ "nameAtOwner" : "Rims" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:702c6915-2a7d-4e5e-80d1-7716afd88e51", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", + "catenaXId" : "urn:uuid:34d6a2ec-9479-453d-9617-ee75a5cc2337", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "277682", + "orderNumber" : "906893", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 9 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "2775", + "referencedStandard" : "AS", + "referencedStandardID" : "5181", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -87316,18 +86816,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -87337,7 +86837,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -87352,7 +86852,7 @@ "value" : "45863316-60", "key" : "manufacturerPartId" }, { - "value" : "NO-291029776531969586623216", + "value" : "NO-012626875057791040363969", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -87363,7 +86863,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", + "catenaXId" : "urn:uuid:34d6a2ec-9479-453d-9617-ee75a5cc2337", "partTypeInformation" : { "manufacturerPartId" : "45863316-60", "customerPartId" : "45863316-60", @@ -87375,22 +86875,22 @@ "nameAtManufacturer" : "Tires", "nameAtCustomer" : "Tires" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", + "assetId" : "urn:uuid:34d6a2ec-9479-453d-9617-ee75a5cc2337", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", + "catenaXId" : "urn:uuid:34d6a2ec-9479-453d-9617-ee75a5cc2337", "partTypeInformation" : { "ownerPartId" : "45863316-60", - "partVersion" : "05", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Tires", "partClassification" : [ { @@ -87400,28 +86900,26 @@ "nameAtOwner" : "Tires" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:34d6a2ec-9479-453d-9617-ee75a5cc2337", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Carbon Steel", - "recycledContent" : 74, + "recycledContent" : 37, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -87431,7 +86929,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Oil", - "recycledContent" : 12, + "recycledContent" : 32, "materialClass" : "9.2", "quantity" : { "unit" : "unit:kilogram", @@ -87441,7 +86939,7 @@ "materialAbbreviation" : "SAE40" }, { "materialName" : "Copper", - "recycledContent" : 86, + "recycledContent" : 76, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -87452,32 +86950,32 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "catenaXId" : "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", "childItems" : [ { - "catenaXId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "catenaXId" : "urn:uuid:d5fbfc88-d838-4f9b-b9ba-2d5e81beab94", "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2014 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "catenaXId" : "urn:uuid:91ec20ec-67ab-4699-9ae9-029ed5e332dc", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "catenaXId" : "urn:uuid:94ae80dd-e5e2-45cc-893c-9fa63622e47f", "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2341 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AZQP", @@ -87485,23 +86983,23 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "catenaXId" : "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", "bpnl" : "BPNL00000003B2OM", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "740341", + "orderNumber" : "496095", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, @@ -87512,8 +87010,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "5354", + "referencedStandard" : "AISI", + "referencedStandardID" : "6330", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -87524,28 +87022,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -87560,7 +87058,7 @@ "value" : "42555H1-52", "key" : "manufacturerPartId" }, { - "value" : "NO-035290552043863858362908", + "value" : "NO-143089154601261855753389", "key" : "partInstanceId" }, { "value" : "Company 2", @@ -87577,7 +87075,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "catenaXId" : "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", "partTypeInformation" : { "manufacturerPartId" : "42555H1-52", "customerPartId" : "42555H1-52", @@ -87589,29 +87087,29 @@ "nameAtManufacturer" : "Transmission", "nameAtCustomer" : "Transmission" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "assetId" : "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", "manufacturerId" : "BPNL00000003B2OM", "childItems" : [ { "item" : [ { "itemClassification" : [ { - "value" : "Engineering Plastics", + "value" : "Mirror left", "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:733f72ea-c327-4de4-bf29-c6f597595a85", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:2fb0c29a-c387-49b3-872a-7d33867a081b", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "childassetId" : "urn:uuid:d5fbfc88-d838-4f9b-b9ba-2d5e81beab94", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -87620,17 +87118,17 @@ "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c1d012f2-2f4c-4cc5-85a9-78ab809fff87", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:67ee61ce-9499-4ab8-a9c9-397fbb4443bd", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "childassetId" : "urn:uuid:91ec20ec-67ab-4699-9ae9-029ed5e332dc", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -87639,17 +87137,17 @@ "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9068fa71-141e-43ac-94db-3d7d51550a16", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:6b4b2117-4f39-406e-8d15-1d1a6e809b62", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "childassetId" : "urn:uuid:94ae80dd-e5e2-45cc-893c-9fa63622e47f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -87662,24 +87160,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", - "partTypeInformation" : { - "ownerPartId" : "42555H1-52", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "Transmission", - "partClassification" : [ { - "value" : "Transmission", - "key" : "BPNL00000003B2OM:PartFamily" - } ], - "nameAtOwner" : "Transmission" - } - } ], "urn:samm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { "productSpecificParameters" : { "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], @@ -87721,10 +87201,10 @@ "documentTitle" : "Title A" } ] }, - "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "catenaXId" : "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", "identification" : { "localIdentifiers" : [ { - "value" : "NO-035290552043863858362908", + "value" : "NO-143089154601261855753389", "key" : "PartInstanceID" } ], "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", @@ -87790,22 +87270,38 @@ "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", + "partTypeInformation" : { + "ownerPartId" : "42555H1-52", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Transmission", + "partClassification" : [ { + "value" : "Transmission", + "key" : "BPNL00000003B2OM:PartFamily" } ], + "nameAtOwner" : "Transmission" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B2OM" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -87813,7 +87309,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 22, + "recycledContent" : 68, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -87823,7 +87319,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 82, + "recycledContent" : 75, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -87833,35 +87329,35 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "catenaXId" : "urn:uuid:d5fbfc88-d838-4f9b-b9ba-2d5e81beab94", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "171714", + "orderNumber" : "460850", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "3822", + "referencedStandard" : "ISO", + "referencedStandardID" : "8910", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -87873,7 +87369,7 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -87883,17 +87379,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -87901,7 +87397,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "assetId" : "urn:uuid:d5fbfc88-d838-4f9b-b9ba-2d5e81beab94", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -87918,27 +87414,27 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "catenaXId" : "urn:uuid:d5fbfc88-d838-4f9b-b9ba-2d5e81beab94", "partTypeInformation" : { - "manufacturerPartId" : "FW-24", + "manufacturerPartId" : "LM-13", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "Engineering Plastics" + "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "catenaXId" : "urn:uuid:d5fbfc88-d838-4f9b-b9ba-2d5e81beab94", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "02", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -87948,31 +87444,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d5fbfc88-d838-4f9b-b9ba-2d5e81beab94", + "parentItems" : [ { + "catenaXId" : "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "catenaXId" : "urn:uuid:91ec20ec-67ab-4699-9ae9-029ed5e332dc", "childItems" : [ { - "catenaXId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "catenaXId" : "urn:uuid:19caee60-b204-4f3d-9b99-c8f1554555f5", "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.1908 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -87980,25 +87474,25 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "catenaXId" : "urn:uuid:91ec20ec-67ab-4699-9ae9-029ed5e332dc", "bpnl" : "BPNL00000003B3NX", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "353267", + "orderNumber" : "739553", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -88007,8 +87501,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "5162", + "referencedStandard" : "ASME", + "referencedStandardID" : "6631", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -88019,28 +87513,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -88052,10 +87546,10 @@ "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "06302Y8-24", + "value" : "92547Z4-89", "key" : "manufacturerPartId" }, { - "value" : "NO-567469628275481484503905", + "value" : "NO-455460779808771000947246", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -88066,10 +87560,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "catenaXId" : "urn:uuid:91ec20ec-67ab-4699-9ae9-029ed5e332dc", "partTypeInformation" : { - "manufacturerPartId" : "06302Y8-24", - "customerPartId" : "06302Y8-24", + "manufacturerPartId" : "92547Z4-89", + "customerPartId" : "92547Z4-89", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -88078,10 +87572,10 @@ "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "assetId" : "urn:uuid:91ec20ec-67ab-4699-9ae9-029ed5e332dc", "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { "item" : [ { @@ -88090,29 +87584,29 @@ "key" : "BPNL00000003B3NX:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:27e1e609-2c18-46c7-9dac-791ce42fa3b8", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:9938c569-dbe4-4807-a002-3af358bedfb5", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "childassetId" : "urn:uuid:19caee60-b204-4f3d-9b99-c8f1554555f5", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "catenaXId" : "urn:uuid:91ec20ec-67ab-4699-9ae9-029ed5e332dc", "partTypeInformation" : { - "ownerPartId" : "06302Y8-24", - "partVersion" : "05", + "ownerPartId" : "92547Z4-89", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Sensor", "partClassification" : [ { @@ -88122,22 +87616,20 @@ "nameAtOwner" : "Sensor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:91ec20ec-67ab-4699-9ae9-029ed5e332dc", + "parentItems" : [ { + "catenaXId" : "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B3NX" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -88145,7 +87637,7 @@ "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 83, + "recycledContent" : 61, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -88155,7 +87647,7 @@ "materialAbbreviation" : "" }, { "materialName" : "Other", - "recycledContent" : 11, + "recycledContent" : 87, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -88165,35 +87657,35 @@ "materialAbbreviation" : "" } ] } ], - "catenaXId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "catenaXId" : "urn:uuid:19caee60-b204-4f3d-9b99-c8f1554555f5", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "477848", + "orderNumber" : "523781", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "1650", + "referencedStandard" : "ISO", + "referencedStandardID" : "6516", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -88205,17 +87697,17 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -88233,7 +87725,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "assetId" : "urn:uuid:19caee60-b204-4f3d-9b99-c8f1554555f5", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -88250,9 +87742,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "catenaXId" : "urn:uuid:19caee60-b204-4f3d-9b99-c8f1554555f5", "partTypeInformation" : { - "manufacturerPartId" : "CK-14", + "manufacturerPartId" : "VB-57", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -88260,17 +87752,17 @@ } ], "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "catenaXId" : "urn:uuid:19caee60-b204-4f3d-9b99-c8f1554555f5", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "01", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -88280,26 +87772,24 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:19caee60-b204-4f3d-9b99-c8f1554555f5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:91ec20ec-67ab-4699-9ae9-029ed5e332dc", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "catenaXId" : "urn:uuid:94ae80dd-e5e2-45cc-893c-9fa63622e47f", "childItems" : [ ] } ], "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -88314,35 +87804,35 @@ "materialAbbreviation" : "GL338" } ] } ], - "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "catenaXId" : "urn:uuid:94ae80dd-e5e2-45cc-893c-9fa63622e47f", "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "680147", + "orderNumber" : "140056", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "DIN", - "referencedStandardID" : "8455", + "referencedStandardID" : "9003", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -88351,30 +87841,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -88382,7 +87872,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "assetId" : "urn:uuid:94ae80dd-e5e2-45cc-893c-9fa63622e47f", "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] } ], @@ -88399,9 +87889,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "catenaXId" : "urn:uuid:94ae80dd-e5e2-45cc-893c-9fa63622e47f", "partTypeInformation" : { - "manufacturerPartId" : "WI-49", + "manufacturerPartId" : "CY-70", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -88409,17 +87899,17 @@ } ], "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "catenaXId" : "urn:uuid:94ae80dd-e5e2-45cc-893c-9fa63622e47f", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "02", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -88429,28 +87919,26 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:94ae80dd-e5e2-45cc-893c-9fa63622e47f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Glue", - "recycledContent" : 15, + "recycledContent" : 80, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -88461,32 +87949,32 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "catenaXId" : "urn:uuid:7bafafa5-2d18-459c-9589-17dc8b2a9ffd", "childItems" : [ { - "catenaXId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "catenaXId" : "urn:uuid:7c5a28ce-0026-482c-b1e0-727342ff5dac", "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.3301 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "catenaXId" : "urn:uuid:ba33343e-9907-4d21-b79e-1b82bc7fa02a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "catenaXId" : "urn:uuid:95980ab6-7d30-418f-95d7-110147163576", "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2001 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -88494,35 +87982,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "catenaXId" : "urn:uuid:7bafafa5-2d18-459c-9589-17dc8b2a9ffd", "bpnl" : "BPNL00000003B5MJ", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "488720", + "orderNumber" : "113602", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "8711", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9441", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -88531,30 +88019,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -88566,10 +88054,10 @@ "value" : "BPNL00000003B5MJ", "key" : "manufacturerId" }, { - "value" : "46614X1-98", + "value" : "77136H7-68", "key" : "manufacturerPartId" }, { - "value" : "NO-259210182774842440463682", + "value" : "NO-432349591499397336015737", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -88580,10 +88068,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "catenaXId" : "urn:uuid:7bafafa5-2d18-459c-9589-17dc8b2a9ffd", "partTypeInformation" : { - "manufacturerPartId" : "46614X1-98", - "customerPartId" : "46614X1-98", + "manufacturerPartId" : "77136H7-68", + "customerPartId" : "77136H7-68", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -88592,10 +88080,10 @@ "nameAtManufacturer" : "ECU", "nameAtCustomer" : "ECU" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "assetId" : "urn:uuid:7bafafa5-2d18-459c-9589-17dc8b2a9ffd", "manufacturerId" : "BPNL00000003B5MJ", "childItems" : [ { "item" : [ { @@ -88604,17 +88092,17 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4b437202-c07c-4a4e-921a-03c01c724184", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:e56d7b9e-71ef-46c1-8677-6e2fc4c1b962", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "childassetId" : "urn:uuid:7c5a28ce-0026-482c-b1e0-727342ff5dac", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -88623,17 +88111,17 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1e8dddda-b3f2-4719-b9b8-d3eedf7f1d92", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:604d7fe8-be66-4623-8957-4c84f1c1c929", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "childassetId" : "urn:uuid:ba33343e-9907-4d21-b79e-1b82bc7fa02a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -88642,29 +88130,29 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2736ba00-f1c7-4a3b-8978-ca9f9f58674f", + "ownerItemId" : "urn:uuid:0639e622-b1d0-45a5-912d-a0c8a4611fbb", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "childassetId" : "urn:uuid:95980ab6-7d30-418f-95d7-110147163576", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "catenaXId" : "urn:uuid:7bafafa5-2d18-459c-9589-17dc8b2a9ffd", "partTypeInformation" : { - "ownerPartId" : "46614X1-98", - "partVersion" : "04", + "ownerPartId" : "77136H7-68", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "ECU", "partClassification" : [ { @@ -88674,22 +88162,20 @@ "nameAtOwner" : "ECU" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7bafafa5-2d18-459c-9589-17dc8b2a9ffd", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B5MJ" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -88697,7 +88183,7 @@ "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 88, + "recycledContent" : 36, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -88707,7 +88193,7 @@ "materialAbbreviation" : "AL7" }, { "materialName" : "Other", - "recycledContent" : 14, + "recycledContent" : 22, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -88717,25 +88203,25 @@ "materialAbbreviation" : "" } ] } ], - "catenaXId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "catenaXId" : "urn:uuid:7c5a28ce-0026-482c-b1e0-727342ff5dac", "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "141371", + "orderNumber" : "396929", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -88744,8 +88230,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "6371", + "referencedStandard" : "IS", + "referencedStandardID" : "6837", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -88767,17 +88253,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -88785,7 +88271,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "assetId" : "urn:uuid:7c5a28ce-0026-482c-b1e0-727342ff5dac", "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] } ], @@ -88802,9 +88288,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "catenaXId" : "urn:uuid:7c5a28ce-0026-482c-b1e0-727342ff5dac", "partTypeInformation" : { - "manufacturerPartId" : "GR-15", + "manufacturerPartId" : "XL-29", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -88812,17 +88298,17 @@ } ], "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "catenaXId" : "urn:uuid:7c5a28ce-0026-482c-b1e0-727342ff5dac", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "02", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -88832,31 +88318,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7c5a28ce-0026-482c-b1e0-727342ff5dac", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7bafafa5-2d18-459c-9589-17dc8b2a9ffd", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "catenaXId" : "urn:uuid:ba33343e-9907-4d21-b79e-1b82bc7fa02a", "childItems" : [ { - "catenaXId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "catenaXId" : "urn:uuid:0ad79ce7-fe94-4bea-bc88-f89edcdbdbbd", "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.1908 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -88864,35 +88348,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "catenaXId" : "urn:uuid:ba33343e-9907-4d21-b79e-1b82bc7fa02a", "bpnl" : "BPNL00000003B3NX", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "348770", + "orderNumber" : "475590", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 24 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "9834", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6126", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -88901,30 +88385,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -88936,10 +88420,10 @@ "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "56212J7-52", + "value" : "43065M5-33", "key" : "manufacturerPartId" }, { - "value" : "NO-727634309611409688637610", + "value" : "NO-900603834614288799374160", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -88950,10 +88434,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "catenaXId" : "urn:uuid:ba33343e-9907-4d21-b79e-1b82bc7fa02a", "partTypeInformation" : { - "manufacturerPartId" : "56212J7-52", - "customerPartId" : "56212J7-52", + "manufacturerPartId" : "43065M5-33", + "customerPartId" : "43065M5-33", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -88962,41 +88446,41 @@ "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "assetId" : "urn:uuid:ba33343e-9907-4d21-b79e-1b82bc7fa02a", "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { "item" : [ { "itemClassification" : [ { - "value" : "Engineering Plastics", + "value" : "Mirror left", "key" : "BPNL00000003B3NX:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9941c55f-8624-4702-8de9-a9823424f7a5", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:ce9b013f-4bbf-4661-8607-273a680d8679", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "childassetId" : "urn:uuid:0ad79ce7-fe94-4bea-bc88-f89edcdbdbbd", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "catenaXId" : "urn:uuid:ba33343e-9907-4d21-b79e-1b82bc7fa02a", "partTypeInformation" : { - "ownerPartId" : "56212J7-52", - "partVersion" : "04", + "ownerPartId" : "43065M5-33", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Sensor", "partClassification" : [ { @@ -89006,22 +88490,20 @@ "nameAtOwner" : "Sensor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ba33343e-9907-4d21-b79e-1b82bc7fa02a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7bafafa5-2d18-459c-9589-17dc8b2a9ffd", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B3NX" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -89029,7 +88511,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 60, + "recycledContent" : 54, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -89039,7 +88521,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 52, + "recycledContent" : 88, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -89049,23 +88531,23 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "catenaXId" : "urn:uuid:0ad79ce7-fe94-4bea-bc88-f89edcdbdbbd", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "897849", + "orderNumber" : "554339", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, @@ -89076,8 +88558,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "4800", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6169", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -89086,24 +88568,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -89117,7 +88599,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "assetId" : "urn:uuid:0ad79ce7-fe94-4bea-bc88-f89edcdbdbbd", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -89134,27 +88616,27 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "catenaXId" : "urn:uuid:0ad79ce7-fe94-4bea-bc88-f89edcdbdbbd", "partTypeInformation" : { - "manufacturerPartId" : "JK-61", + "manufacturerPartId" : "IQ-71", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "Engineering Plastics" + "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "catenaXId" : "urn:uuid:0ad79ce7-fe94-4bea-bc88-f89edcdbdbbd", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "01", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -89164,22 +88646,20 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0ad79ce7-fe94-4bea-bc88-f89edcdbdbbd", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ba33343e-9907-4d21-b79e-1b82bc7fa02a", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -89187,7 +88667,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 15, + "recycledContent" : 78, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -89197,7 +88677,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 27, + "recycledContent" : 26, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -89207,35 +88687,35 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "catenaXId" : "urn:uuid:95980ab6-7d30-418f-95d7-110147163576", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "930368", + "orderNumber" : "971942", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "7013", + "referencedStandard" : "ASME", + "referencedStandardID" : "3908", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -89246,7 +88726,7 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { @@ -89267,7 +88747,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -89279,24 +88759,24 @@ "value" : "BPNL00000003B0Q0", "key" : "manufacturerId" }, { - "value" : "67982V2-87", + "value" : "07238J4-45", "key" : "manufacturerPartId" }, { - "value" : "NO-737073696787221982590376", + "value" : "NO-199908341628893542049026", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", "country" : "DEU", "sites" : [ { - "catenaXsiteId" : "BPNS00000003B0Q0", + "catenaXsiteId" : "BPNS00000003B5MJ", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "catenaXId" : "urn:uuid:95980ab6-7d30-418f-95d7-110147163576", "partTypeInformation" : { - "manufacturerPartId" : "67982V2-87", - "customerPartId" : "67982V2-87", + "manufacturerPartId" : "07238J4-45", + "customerPartId" : "07238J4-45", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -89308,18 +88788,18 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "assetId" : "urn:uuid:95980ab6-7d30-418f-95d7-110147163576", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "catenaXId" : "urn:uuid:95980ab6-7d30-418f-95d7-110147163576", "partTypeInformation" : { - "ownerPartId" : "67982V2-87", + "ownerPartId" : "07238J4-45", "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Engineering Plastics", @@ -89330,25 +88810,87 @@ "nameAtOwner" : "Engineering Plastics" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:95980ab6-7d30-418f-95d7-110147163576", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7bafafa5-2d18-459c-9589-17dc8b2a9ffd", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", + "childItems" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { @@ -89358,7 +88900,7 @@ "value" : "38049661-08", "key" : "manufacturerPartId" }, { - "value" : "NO-895713475469629339512267", + "value" : "NO-629148426832070851940458", "key" : "partInstanceId" }, { "value" : "Company 1", @@ -89375,7 +88917,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", "partTypeInformation" : { "manufacturerPartId" : "38049661-08", "customerPartId" : "38049661-08", @@ -89387,7 +88929,7 @@ "nameAtManufacturer" : "Battery", "nameAtCustomer" : "Battery" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { "incoterms" : "DAP (Delivered at Place)", @@ -89426,7 +88968,7 @@ "key" : "JxkyvRnL" } ], "productLink" : "https://123", - "oeNumber" : "NO-895713475469629339512267", + "oeNumber" : "NO-629148426832070851940458", "category" : { "subCategory" : [ "Battery" ], "mainCategory" : [ "Audio, video, navigation" ] @@ -89439,7 +88981,7 @@ "mileage" : 120000.06 } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "assetId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -89448,17 +88990,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ff168200-fba9-4d50-8074-116121dd9c48", + "ownerItemId" : "urn:uuid:084e43af-3f54-416b-9145-e8f218001cd3", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "childassetId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -89467,17 +89009,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5e73f952-0541-4d3c-b1b3-11e7bb8ef690", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:a3a427cb-d5e3-4df2-a205-239204ae9b3b", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "childassetId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -89486,17 +89028,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:dd8779e0-f4e3-429c-8e6d-f5e64984645c", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:2dc4cf49-c40c-445f-a032-552266047ad7", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "childassetId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -89505,17 +89047,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:55e3b256-5df2-4b27-b0bf-24ef35aff527", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:bc192b93-3e6c-44a0-9bec-be27b89fb75b", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "childassetId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -89524,17 +89066,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ba7f0989-cb80-4f21-825b-f557e529664d", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:e0cf82db-4235-4785-b1c1-70791d4f108e", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "childassetId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -89543,17 +89085,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2f6855f9-fdcc-4dd1-9606-1661b39876d7", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:5d1a088c-a099-4645-9b6f-99742c2adfa9", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "childassetId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -89588,36 +89130,36 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2021-09-27", - "version" : 2.2, - "status" : "Invalid" + "issueDate" : "2024-01-27", + "version" : 1.4, + "status" : "Approved" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 1257.0484, - "width" : 1257, - "length" : 2052, - "weight" : 675, - "height" : 303 + "diameter" : 1302.0299, + "width" : 1302, + "length" : 2040, + "weight" : 653, + "height" : 290 }, "lifespan" : { "unit" : "unit:year", - "value" : 19 + "value" : 17 } }, "commercial" : { - "placedOnMarket" : "2020-10-07", + "placedOnMarket" : "2024-01-10", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-895713475469629339512267", + "value" : "NO-629148426832070851940458", "key" : "PartInstanceID" } ], - "gtin" : " 29402437", + "gtin" : " 57297030", "additionalCode" : [ { "name" : "TARIC", - "value" : "299862107" + "value" : "580817482" } ] }, "sources" : { @@ -89639,7 +89181,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Passport", + "category" : "Safety", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -89668,12 +89210,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2022-12-29", + "date" : "2024-03-26", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : false, + "reusablePackaging" : true, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -89684,9 +89226,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 0.9695 ] + "left" : [ 5.3328 ] }, - "id" : "XE1625" + "id" : "WV8702" } ] }, "additionalData" : [ { @@ -89712,7 +89254,7 @@ "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Cobalt" + "name" : "Manganese" } ], "critical" : [ "Graphite" ], "carbonFootprint" : { @@ -89724,39 +89266,40 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 113 + "carbonContentTotal" : 118 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", + "facilityId" : "BPNL00000003B3NX", "manufacturerId" : "BPNL00000003AVTH" } } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", + "partTypeInformation" : { + "ownerPartId" : "38049661-08", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Battery", + "partClassification" : [ { + "value" : "Battery", + "key" : "BPNL00000003AVTH:PartFamily" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + "nameAtOwner" : "Battery" + } } ], "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 2, + "recycledContent" : 74, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -89766,7 +89309,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 8, + "recycledContent" : 1, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -89776,7 +89319,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 79, + "recycledContent" : 42, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -89786,97 +89329,33 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", - "childItems" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "98791", + "orderNumber" : "531596", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "4910", + "referencedStandard" : "EN", + "referencedStandardID" : "9183", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -89887,18 +89366,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -89908,31 +89387,13 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } } } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", - "partTypeInformation" : { - "ownerPartId" : "38049661-08", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "Battery", - "partClassification" : [ { - "value" : "Battery", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "Battery" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -90158,7 +89619,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-895713475469629339512267", + "batteryIDDMCCode" : "NO-629148426832070851940458", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -90177,6 +89638,21 @@ } ], "productType" : "pack" } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "customers" : [ "BPNL00000003AVTH" ] + } ], "urn:samm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { "productConditions" : "at least 1990 model", "desiredPrice" : { @@ -90192,7 +89668,7 @@ "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 77, + "recycledContent" : 79, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -90202,7 +89678,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 58, + "recycledContent" : 46, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -90212,7 +89688,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 64, + "recycledContent" : 7, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -90223,112 +89699,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "catenaXId" : "urn:uuid:9cca7412-c7d0-467d-80b2-c300ae8c5437", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "catenaXId" : "urn:uuid:cd675d8b-22bd-4c13-9408-5849d0fa9413", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "catenaXId" : "urn:uuid:776c002e-f878-4d31-9eac-d29f44c19979", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "catenaXId" : "urn:uuid:833523eb-a768-4bf9-b262-1f16db5c2534", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "catenaXId" : "urn:uuid:698944a7-8aac-498b-bc7f-944a4cd03e30", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "catenaXId" : "urn:uuid:9de6976d-487d-42a4-9da8-ac39a7ab12e9", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "catenaXId" : "urn:uuid:5be1091f-dba8-46d9-9ca8-e83a90a0253f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "catenaXId" : "urn:uuid:e12b4d2e-b44f-4d87-952e-a9f7a9c01f7a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "catenaXId" : "urn:uuid:5629169e-75fa-4d52-8a7d-ce48e78839be", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "catenaXId" : "urn:uuid:7eaa312a-ff29-45a6-b205-3a65d9043c63", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -90336,23 +89812,23 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "276472", + "orderNumber" : "172230", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -90363,8 +89839,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "4561", + "referencedStandard" : "ISO", + "referencedStandardID" : "6739", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -90373,30 +89849,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -90411,7 +89887,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-687113612968742222940062", + "value" : "NO-816927354992517373478168", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -90422,7 +89898,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -90437,7 +89913,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "assetId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -90446,17 +89922,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2a9c3adb-c757-4c14-bcea-07920643bf17", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:1e26b65a-b6c4-4eb6-bc56-6bd674e0bdc2", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -90465,17 +89941,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ad92ac7d-a13d-4338-a6de-8a01e66c3896", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:570d5d5f-2b13-4a7a-b1b9-029eacd72f95", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "childassetId" : "urn:uuid:9cca7412-c7d0-467d-80b2-c300ae8c5437", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -90484,17 +89960,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:488e74af-d665-4b41-a6f3-74f2384773f2", + "ownerItemId" : "urn:uuid:344733d9-eb49-4420-b17c-db88ec69a365", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "childassetId" : "urn:uuid:cd675d8b-22bd-4c13-9408-5849d0fa9413", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -90503,17 +89979,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:82621f3a-6943-4b28-a17b-6b7bd600ddb5", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:ebbfd6ce-03cb-4a1a-b5ac-de28f996400b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "childassetId" : "urn:uuid:776c002e-f878-4d31-9eac-d29f44c19979", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -90522,17 +89998,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:bd609bc9-b8b6-404e-90a7-32ec9111050f", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:89a15c19-db4a-4ec5-8863-4ace0bf0aa5a", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "childassetId" : "urn:uuid:833523eb-a768-4bf9-b262-1f16db5c2534", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -90541,17 +90017,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3cad2036-f3aa-4117-a32c-efcc07975c0d", + "ownerItemId" : "urn:uuid:6457216f-3f44-4661-b8b7-20a4d99aeec3", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "childassetId" : "urn:uuid:698944a7-8aac-498b-bc7f-944a4cd03e30", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -90560,17 +90036,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:fbfd002a-0f50-4f73-a768-47d64ad9e0b5", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:c3a47080-9181-4fe0-90ba-21010cb3a4c4", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "childassetId" : "urn:uuid:9de6976d-487d-42a4-9da8-ac39a7ab12e9", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -90579,17 +90055,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a54fc9c0-d2dd-417d-9d31-4d764e114782", + "ownerItemId" : "urn:uuid:33ebd43f-4d5e-4105-925b-f878b2e581fb", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "childassetId" : "urn:uuid:5be1091f-dba8-46d9-9ca8-e83a90a0253f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -90598,17 +90074,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5868633e-c78c-4411-9bd6-a5bed1069a82", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:70440ca2-6fb1-40b2-ba27-252b62539489", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "childassetId" : "urn:uuid:e12b4d2e-b44f-4d87-952e-a9f7a9c01f7a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -90617,17 +90093,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3e4124e6-3c37-4910-8aaf-c09ffdd6252d", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:83897b1e-1cd4-4608-812e-52652fdd28c6", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "childassetId" : "urn:uuid:5629169e-75fa-4d52-8a7d-ce48e78839be", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -90636,38 +90112,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e3b0f102-98b3-42de-973c-0e34aa51bc22", + "ownerItemId" : "urn:uuid:8091fe88-344e-4e22-b39c-59dda9a079f5", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "childassetId" : "urn:uuid:7eaa312a-ff29-45a6-b205-3a65d9043c63", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -90893,7 +90351,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-687113612968742222940062", + "batteryIDDMCCode" : "NO-816927354992517373478168", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -90935,13 +90393,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2022-10-13", - "version" : 1.2, - "status" : "Approved" + "issueDate" : "2024-01-09", + "version" : 2.7, + "status" : "Draft" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6427, + "diameter" : 229.644, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -90949,22 +90407,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 19 + "value" : 15 } }, "commercial" : { - "placedOnMarket" : "2022-03-21", + "placedOnMarket" : "2023-11-25", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-687113612968742222940062", + "value" : "NO-816927354992517373478168", "key" : "PartInstanceID" } ], - "gtin" : " 63000226", + "gtin" : " 86831934", "additionalCode" : [ { "name" : "TARIC", - "value" : "100159072" + "value" : "743299321" } ] }, "sources" : { @@ -90986,7 +90444,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Compliance", + "category" : "SubstanceOfConcern", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -91015,7 +90473,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2022-10-22", + "date" : "2024-03-19", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -91031,9 +90489,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 1.2394 ] + "left" : [ 7.3471 ] }, - "id" : "JG9921" + "id" : "AP6260" } ] }, "additionalData" : [ { @@ -91059,9 +90517,9 @@ "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Graphite" + "name" : "Polyamid" } ], - "critical" : [ "Manganese" ], + "critical" : [ "Lithium" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -91071,14 +90529,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 116 + "carbonContentTotal" : 123 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B2OM", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003AXS3", "manufacturerId" : "BPNL00000003AVTH" } } @@ -91091,31 +90549,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "catenaXId" : "urn:uuid:9cca7412-c7d0-467d-80b2-c300ae8c5437", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -91130,11 +90604,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-10-11", + "currentStateOfHealthTimestamp" : "2015-02-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthTimestamp" : "2024-03-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -91144,10 +90618,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "catenaXId" : "urn:uuid:9cca7412-c7d0-467d-80b2-c300ae8c5437", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "29945", + "orderNumber" : "34670", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -91156,23 +90630,23 @@ "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "AISI", - "referencedStandardID" : "8692", + "referencedStandardID" : "6519", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -91194,17 +90668,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -91219,7 +90693,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-991767235182356540580326", + "value" : "NO-046702061904874808708796", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -91230,7 +90704,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "catenaXId" : "urn:uuid:9cca7412-c7d0-467d-80b2-c300ae8c5437", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -91242,10 +90716,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "assetId" : "urn:uuid:9cca7412-c7d0-467d-80b2-c300ae8c5437", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -91254,17 +90728,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0629471c-f896-4217-b79e-0aeb31224d62", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:e4215b1b-ea6d-4a3c-a461-075265299596", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -91277,24 +90751,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -91520,7 +90976,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-991767235182356540580326", + "batteryIDDMCCode" : "NO-046702061904874808708796", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -91539,31 +90995,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9cca7412-c7d0-467d-80b2-c300ae8c5437", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9cca7412-c7d0-467d-80b2-c300ae8c5437", + "parentItems" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "catenaXId" : "urn:uuid:cd675d8b-22bd-4c13-9408-5849d0fa9413", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -91578,11 +91050,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-10-09", + "currentStateOfHealthTimestamp" : "2018-08-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-05", + "currentStateOfHealthTimestamp" : "2024-03-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -91592,35 +91064,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "catenaXId" : "urn:uuid:cd675d8b-22bd-4c13-9408-5849d0fa9413", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "512105", + "orderNumber" : "657890", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "JASO", - "referencedStandardID" : "4439", + "referencedStandardID" : "4653", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -91629,10 +91101,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -91642,17 +91114,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -91667,7 +91139,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-545804594773407247538373", + "value" : "NO-470874275732939576623426", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -91678,7 +91150,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "catenaXId" : "urn:uuid:cd675d8b-22bd-4c13-9408-5849d0fa9413", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -91693,7 +91165,7 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "assetId" : "urn:uuid:cd675d8b-22bd-4c13-9408-5849d0fa9413", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -91702,17 +91174,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9697415f-e8cb-4f58-9527-ea63f831902a", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:0a97be8d-6ebe-4564-9e36-78a850aaa446", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -91725,24 +91197,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -91968,7 +91422,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-545804594773407247538373", + "batteryIDDMCCode" : "NO-470874275732939576623426", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -91987,31 +91441,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:cd675d8b-22bd-4c13-9408-5849d0fa9413", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cd675d8b-22bd-4c13-9408-5849d0fa9413", + "parentItems" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "catenaXId" : "urn:uuid:776c002e-f878-4d31-9eac-d29f44c19979", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -92026,11 +91496,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-11-09", + "currentStateOfHealthTimestamp" : "2024-01-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -92040,35 +91510,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "catenaXId" : "urn:uuid:776c002e-f878-4d31-9eac-d29f44c19979", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "550731", + "orderNumber" : "922172", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "6134", + "referencedStandard" : "DIN", + "referencedStandardID" : "7387", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -92077,20 +91547,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -92100,7 +91570,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -92115,7 +91585,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-631371404662581637455960", + "value" : "NO-085619066206559305485202", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -92126,7 +91596,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "catenaXId" : "urn:uuid:776c002e-f878-4d31-9eac-d29f44c19979", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -92138,10 +91608,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "assetId" : "urn:uuid:776c002e-f878-4d31-9eac-d29f44c19979", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -92150,17 +91620,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:cdbd0dc2-9482-45e6-9e2a-bd2bf2bce918", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:08a36d10-1b64-4f26-85b2-aaaedede1e46", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -92173,24 +91643,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -92416,7 +91868,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-631371404662581637455960", + "batteryIDDMCCode" : "NO-085619066206559305485202", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -92435,31 +91887,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:776c002e-f878-4d31-9eac-d29f44c19979", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:776c002e-f878-4d31-9eac-d29f44c19979", + "parentItems" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "catenaXId" : "urn:uuid:833523eb-a768-4bf9-b262-1f16db5c2534", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -92474,11 +91942,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-08-25", + "currentStateOfHealthTimestamp" : "2022-06-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-03-06", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -92488,16 +91956,16 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "catenaXId" : "urn:uuid:833523eb-a768-4bf9-b262-1f16db5c2534", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "783564", + "orderNumber" : "129200", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 17 @@ -92506,17 +91974,17 @@ "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "JASO", - "referencedStandardID" : "1182", + "referencedStandardID" : "5324", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -92525,30 +91993,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -92563,7 +92031,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-045002863370677316790179", + "value" : "NO-757339058089831668193292", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -92574,7 +92042,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "catenaXId" : "urn:uuid:833523eb-a768-4bf9-b262-1f16db5c2534", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -92586,10 +92054,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "assetId" : "urn:uuid:833523eb-a768-4bf9-b262-1f16db5c2534", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -92598,17 +92066,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:37b41ccc-e207-418a-814a-70471ab92615", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:4d3a145b-f5c1-4fbf-a477-9b4540eafe9a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -92621,24 +92089,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -92864,7 +92314,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-045002863370677316790179", + "batteryIDDMCCode" : "NO-757339058089831668193292", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -92883,31 +92333,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:833523eb-a768-4bf9-b262-1f16db5c2534", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:833523eb-a768-4bf9-b262-1f16db5c2534", + "parentItems" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "catenaXId" : "urn:uuid:698944a7-8aac-498b-bc7f-944a4cd03e30", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -92922,11 +92388,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-11-25", + "currentStateOfHealthTimestamp" : "2017-06-03", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-06", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -92936,16 +92402,16 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "catenaXId" : "urn:uuid:698944a7-8aac-498b-bc7f-944a4cd03e30", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "166529", + "orderNumber" : "960225", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 16 @@ -92959,12 +92425,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "2290", + "referencedStandard" : "AS", + "referencedStandardID" : "4753", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -92973,24 +92439,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -93011,7 +92477,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-352043035937848602986982", + "value" : "NO-625897587140967036600345", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -93022,7 +92488,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "catenaXId" : "urn:uuid:698944a7-8aac-498b-bc7f-944a4cd03e30", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -93037,7 +92503,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "assetId" : "urn:uuid:698944a7-8aac-498b-bc7f-944a4cd03e30", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -93046,17 +92512,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1a349f23-007b-4065-b06d-37db5a8ff2b9", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:2779fe8d-7fb9-41aa-8abc-a64e05fb704c", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -93069,24 +92535,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -93312,7 +92760,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-352043035937848602986982", + "batteryIDDMCCode" : "NO-625897587140967036600345", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -93331,31 +92779,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:698944a7-8aac-498b-bc7f-944a4cd03e30", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:698944a7-8aac-498b-bc7f-944a4cd03e30", + "parentItems" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "catenaXId" : "urn:uuid:9de6976d-487d-42a4-9da8-ac39a7ab12e9", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -93370,11 +92834,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-04-12", + "currentStateOfHealthTimestamp" : "2018-09-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-25", + "currentStateOfHealthTimestamp" : "2024-03-09", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -93384,35 +92848,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "catenaXId" : "urn:uuid:9de6976d-487d-42a4-9da8-ac39a7ab12e9", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "59352", + "orderNumber" : "713216", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "7924", + "referencedStandard" : "JASO", + "referencedStandardID" : "5623", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -93421,30 +92885,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -93459,7 +92923,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-632396764290897802894727", + "value" : "NO-452748343042728907626021", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -93470,7 +92934,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "catenaXId" : "urn:uuid:9de6976d-487d-42a4-9da8-ac39a7ab12e9", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -93482,10 +92946,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "assetId" : "urn:uuid:9de6976d-487d-42a4-9da8-ac39a7ab12e9", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -93494,17 +92958,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f02aa833-37b4-4dc1-b296-1cb081f28863", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:4ba6192e-9fd9-409c-864f-e6e15b647656", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -93517,24 +92981,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -93760,7 +93206,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-632396764290897802894727", + "batteryIDDMCCode" : "NO-452748343042728907626021", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -93779,31 +93225,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9de6976d-487d-42a4-9da8-ac39a7ab12e9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9de6976d-487d-42a4-9da8-ac39a7ab12e9", + "parentItems" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "catenaXId" : "urn:uuid:5be1091f-dba8-46d9-9ca8-e83a90a0253f", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -93818,11 +93280,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-10-19", + "currentStateOfHealthTimestamp" : "2024-01-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -93832,16 +93294,16 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "catenaXId" : "urn:uuid:5be1091f-dba8-46d9-9ca8-e83a90a0253f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "250126", + "orderNumber" : "604683", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 19 @@ -93850,17 +93312,17 @@ "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "7219", + "referencedStandard" : "ISO", + "referencedStandardID" : "6262", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -93871,8 +93333,8 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -93882,17 +93344,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -93907,7 +93369,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-609733587434520163359758", + "value" : "NO-080214182903807107239261", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -93918,7 +93380,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "catenaXId" : "urn:uuid:5be1091f-dba8-46d9-9ca8-e83a90a0253f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -93933,7 +93395,7 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "assetId" : "urn:uuid:5be1091f-dba8-46d9-9ca8-e83a90a0253f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -93942,17 +93404,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e4efde77-c9a7-4ca6-8dec-e6eb0b47633e", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:5b7ca464-ca78-4c86-b373-b65a5e71906f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -93965,24 +93427,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -94208,7 +93652,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-609733587434520163359758", + "batteryIDDMCCode" : "NO-080214182903807107239261", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -94227,31 +93671,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5be1091f-dba8-46d9-9ca8-e83a90a0253f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5be1091f-dba8-46d9-9ca8-e83a90a0253f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "catenaXId" : "urn:uuid:e12b4d2e-b44f-4d87-952e-a9f7a9c01f7a", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -94266,11 +93726,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-04-26", + "currentStateOfHealthTimestamp" : "2016-12-16", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -94280,35 +93740,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "catenaXId" : "urn:uuid:e12b4d2e-b44f-4d87-952e-a9f7a9c01f7a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "245679", + "orderNumber" : "323529", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "EN", - "referencedStandardID" : "8593", + "referencedStandardID" : "6842", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -94320,17 +93780,17 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -94340,7 +93800,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -94355,7 +93815,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-000743277368034273286877", + "value" : "NO-238785908693173993701869", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -94366,7 +93826,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "catenaXId" : "urn:uuid:e12b4d2e-b44f-4d87-952e-a9f7a9c01f7a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -94378,10 +93838,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "assetId" : "urn:uuid:e12b4d2e-b44f-4d87-952e-a9f7a9c01f7a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -94390,17 +93850,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:05b8ea1b-a9ad-4747-a573-1ebf1b8d963e", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:880fe460-37ec-4123-9cc4-775d33d9f3d8", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -94413,24 +93873,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -94656,7 +94098,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-000743277368034273286877", + "batteryIDDMCCode" : "NO-238785908693173993701869", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -94675,31 +94117,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e12b4d2e-b44f-4d87-952e-a9f7a9c01f7a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e12b4d2e-b44f-4d87-952e-a9f7a9c01f7a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "catenaXId" : "urn:uuid:5629169e-75fa-4d52-8a7d-ce48e78839be", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -94714,11 +94172,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-12-04", + "currentStateOfHealthTimestamp" : "2015-06-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-04-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -94728,25 +94186,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "catenaXId" : "urn:uuid:5629169e-75fa-4d52-8a7d-ce48e78839be", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "757463", + "orderNumber" : "54354", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -94755,8 +94213,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "3457", + "referencedStandard" : "EN", + "referencedStandardID" : "3577", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -94767,28 +94225,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -94803,7 +94261,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-081673198748776020784976", + "value" : "NO-172826221038997175209151", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -94814,7 +94272,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "catenaXId" : "urn:uuid:5629169e-75fa-4d52-8a7d-ce48e78839be", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -94826,10 +94284,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "assetId" : "urn:uuid:5629169e-75fa-4d52-8a7d-ce48e78839be", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -94838,17 +94296,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:630521f7-1210-4911-b636-c52af839b667", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:e5cc3f22-5e92-4a4c-8f6c-bd3535e388b1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -94861,24 +94319,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -95104,7 +94544,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-081673198748776020784976", + "batteryIDDMCCode" : "NO-172826221038997175209151", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -95123,31 +94563,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5629169e-75fa-4d52-8a7d-ce48e78839be", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5629169e-75fa-4d52-8a7d-ce48e78839be", + "parentItems" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "catenaXId" : "urn:uuid:7eaa312a-ff29-45a6-b205-3a65d9043c63", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -95162,11 +94618,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-01-21", + "currentStateOfHealthTimestamp" : "2021-10-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -95176,25 +94632,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "catenaXId" : "urn:uuid:7eaa312a-ff29-45a6-b205-3a65d9043c63", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "345102", + "orderNumber" : "366517", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -95203,8 +94659,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "4091", + "referencedStandard" : "JASO", + "referencedStandardID" : "7095", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -95213,30 +94669,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -95251,7 +94707,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-340269000861175179352744", + "value" : "NO-971590305979907343173679", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -95262,7 +94718,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "catenaXId" : "urn:uuid:7eaa312a-ff29-45a6-b205-3a65d9043c63", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -95277,7 +94733,7 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "assetId" : "urn:uuid:7eaa312a-ff29-45a6-b205-3a65d9043c63", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -95286,17 +94742,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:dd8e0ecd-3bc9-4d33-82b3-2d22b48b4b24", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:92433206-2281-4041-a780-3cf4fb019a4a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -95309,24 +94765,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -95552,7 +94990,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-340269000861175179352744", + "batteryIDDMCCode" : "NO-971590305979907343173679", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -95571,28 +95009,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7eaa312a-ff29-45a6-b205-3a65d9043c63", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7eaa312a-ff29-45a6-b205-3a65d9043c63", + "parentItems" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 0, + "recycledContent" : 66, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -95602,7 +95056,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 75, + "recycledContent" : 38, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -95612,7 +95066,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 26, + "recycledContent" : 48, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -95623,112 +95077,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "catenaXId" : "urn:uuid:4e7bad19-4838-4235-bf28-9f8b8a53ca5b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "catenaXId" : "urn:uuid:c5be0ca9-d04d-4967-83c7-e79cae198c63", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "catenaXId" : "urn:uuid:f2f8f5d9-1a9f-49ef-ae16-ec7e567907b1", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "catenaXId" : "urn:uuid:f8eebc9b-3a62-495b-8f27-b1c238247e25", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "catenaXId" : "urn:uuid:5c551c52-58f6-4442-bb09-9e2eec3c8713", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "catenaXId" : "urn:uuid:7dc3e911-86d0-4fbf-b7c1-06708297ddaf", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "catenaXId" : "urn:uuid:03eaf4eb-6a81-41b0-82bb-1eea0160397f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "catenaXId" : "urn:uuid:ac82062f-9fbb-484a-ab0b-abed55bc522b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "catenaXId" : "urn:uuid:c83db165-610d-4ba0-9a1f-bcaaf596362c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "catenaXId" : "urn:uuid:0067fa67-d9cd-4298-8e5b-b96a4ea03566", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -95736,35 +95190,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "528112", + "orderNumber" : "892930", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "JIS", - "referencedStandardID" : "4264", + "referencedStandardID" : "2312", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -95773,14 +95227,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -95790,7 +95244,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -95811,7 +95265,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-930399204706280839185780", + "value" : "NO-336392663226749996266073", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -95822,7 +95276,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -95834,10 +95288,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "assetId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -95846,17 +95300,55 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:30726710-6781-4ecf-bc10-32f4603e472e", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:25a841b3-848f-448b-b993-294a1dbb3f9f", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" + }, + "ownerItemId" : "urn:uuid:ef86f980-75ac-45f3-b1bd-f9677408302a", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:4e7bad19-4838-4235-bf28-9f8b8a53ca5b", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" + }, + "ownerItemId" : "urn:uuid:e4aed370-073f-47fc-826a-23a30066c48c", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:c5be0ca9-d04d-4967-83c7-e79cae198c63", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -95865,17 +95357,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1627b916-c61f-45c2-8373-a3cde6dca474", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:9453b349-db19-4c7c-98d2-540aefaa9e61", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "childassetId" : "urn:uuid:f2f8f5d9-1a9f-49ef-ae16-ec7e567907b1", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -95884,17 +95376,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:68dc0b52-484d-43a4-951a-c9aae0d3f6e0", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:a0fd225d-e12e-48a8-a89c-996b2b6255b8", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "childassetId" : "urn:uuid:f8eebc9b-3a62-495b-8f27-b1c238247e25", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -95903,17 +95395,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:315888a4-412c-4ac6-bf04-e86a413202e9", + "ownerItemId" : "urn:uuid:507c8402-17ae-4b9f-9e62-4e7f91c3bd6a", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "childassetId" : "urn:uuid:5c551c52-58f6-4442-bb09-9e2eec3c8713", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -95922,17 +95414,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c4c3b3b1-90b6-46cb-9b75-8d1db6390061", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:36119be2-40fe-4a1d-a250-9494340a8709", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "childassetId" : "urn:uuid:7dc3e911-86d0-4fbf-b7c1-06708297ddaf", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -95941,36 +95433,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:db348591-16d7-4045-828f-cbc2d8dd55d4", + "ownerItemId" : "urn:uuid:1d382899-8572-407b-86c3-fef120424710", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:82e82195-5ea8-4672-b954-fdf6cb3616aa", - "itemVersion" : "04", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "childassetId" : "urn:uuid:03eaf4eb-6a81-41b0-82bb-1eea0160397f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -95979,17 +95452,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1031da68-24f2-429e-a453-acc8c31c0f9c", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:a5daac3c-508a-4b99-b646-df4f7ab117e4", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "childassetId" : "urn:uuid:ac82062f-9fbb-484a-ab0b-abed55bc522b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -95998,17 +95471,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8fd8a5ad-fd1f-43f3-8cda-f7d0c50602dd", + "ownerItemId" : "urn:uuid:800d07ca-957d-4e30-8de2-15426a92685f", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "childassetId" : "urn:uuid:c83db165-610d-4ba0-9a1f-bcaaf596362c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -96017,57 +95490,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b6ff08f4-f895-4730-8f98-e0f7ef1d7158", + "ownerItemId" : "urn:uuid:07f9e4ec-ea80-4200-80ea-c21124947753", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:7f33b8ad-f7d7-4ee0-9eee-a320b9408782", - "itemVersion" : "01", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "childassetId" : "urn:uuid:0067fa67-d9cd-4298-8e5b-b96a4ea03566", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -96293,7 +95729,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-930399204706280839185780", + "batteryIDDMCCode" : "NO-336392663226749996266073", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -96335,13 +95771,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2023-12-07", - "version" : 1.5, - "status" : "Expired" + "issueDate" : "2023-10-10", + "version" : 3, + "status" : "Invalid" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6988, + "diameter" : 229.6351, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -96349,22 +95785,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 19 + "value" : 15 } }, "commercial" : { - "placedOnMarket" : "2022-03-14", + "placedOnMarket" : "2020-11-09", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-930399204706280839185780", + "value" : "NO-336392663226749996266073", "key" : "PartInstanceID" } ], - "gtin" : " 50405858", + "gtin" : " 26965204", "additionalCode" : [ { "name" : "TARIC", - "value" : "217762458" + "value" : "181531580" } ] }, "sources" : { @@ -96415,7 +95851,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-03-02", + "date" : "2024-02-09", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -96431,9 +95867,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 8.8673 ] + "left" : [ 6.2348 ] }, - "id" : "CO2626" + "id" : "XR4148" } ] }, "additionalData" : [ { @@ -96456,12 +95892,12 @@ } ], "sustainability" : { "material" : [ { - "recycled" : false, + "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Steel" + "name" : "Copper" } ], - "critical" : [ "Manganese" ], + "critical" : [ "Cobalt" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -96476,9 +95912,9 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B2OM", + "importer" : "BPNL00000003B3NX", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003B3NX", "manufacturerId" : "BPNL00000003AVTH" } } @@ -96491,31 +95927,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "catenaXId" : "urn:uuid:4e7bad19-4838-4235-bf28-9f8b8a53ca5b", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -96530,11 +95982,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-09-25", + "currentStateOfHealthTimestamp" : "2021-01-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-01", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -96544,10 +95996,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "catenaXId" : "urn:uuid:4e7bad19-4838-4235-bf28-9f8b8a53ca5b", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "849845", + "orderNumber" : "529121", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -96556,23 +96008,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "6614", + "referencedStandard" : "ISO", + "referencedStandardID" : "8140", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -96581,10 +96033,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -96594,17 +96046,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -96619,7 +96071,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-875824163752079594295649", + "value" : "NO-842110813695126127816787", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -96630,7 +96082,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "catenaXId" : "urn:uuid:4e7bad19-4838-4235-bf28-9f8b8a53ca5b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -96642,10 +96094,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "assetId" : "urn:uuid:4e7bad19-4838-4235-bf28-9f8b8a53ca5b", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -96654,17 +96106,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:45932070-a93c-4c77-81a3-116aec564a05", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:6429a4c6-50ff-4b83-b185-2f1826d9d5c1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -96677,24 +96129,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -96920,7 +96354,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-875824163752079594295649", + "batteryIDDMCCode" : "NO-842110813695126127816787", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -96939,31 +96373,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4e7bad19-4838-4235-bf28-9f8b8a53ca5b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4e7bad19-4838-4235-bf28-9f8b8a53ca5b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "catenaXId" : "urn:uuid:c5be0ca9-d04d-4967-83c7-e79cae198c63", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -96978,11 +96428,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-03-30", + "currentStateOfHealthTimestamp" : "2017-10-02", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -96992,35 +96442,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "catenaXId" : "urn:uuid:c5be0ca9-d04d-4967-83c7-e79cae198c63", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "94016", + "orderNumber" : "873414", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 8 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "ASME", - "referencedStandardID" : "3455", + "referencedStandardID" : "3621", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -97029,30 +96479,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -97067,7 +96517,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-181274919815027048779446", + "value" : "NO-901075001338711413234812", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -97078,7 +96528,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "catenaXId" : "urn:uuid:c5be0ca9-d04d-4967-83c7-e79cae198c63", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -97090,10 +96540,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "assetId" : "urn:uuid:c5be0ca9-d04d-4967-83c7-e79cae198c63", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -97102,17 +96552,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4c34eac1-9a0b-4675-9821-7217b4d3dc42", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:4fecd5e7-df86-4e1a-a898-297b10ec3bea", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -97125,24 +96575,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -97368,7 +96800,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-181274919815027048779446", + "batteryIDDMCCode" : "NO-901075001338711413234812", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -97387,31 +96819,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c5be0ca9-d04d-4967-83c7-e79cae198c63", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c5be0ca9-d04d-4967-83c7-e79cae198c63", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "catenaXId" : "urn:uuid:f2f8f5d9-1a9f-49ef-ae16-ec7e567907b1", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -97426,11 +96874,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-11-28", + "currentStateOfHealthTimestamp" : "2014-07-03", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -97440,35 +96888,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "catenaXId" : "urn:uuid:f2f8f5d9-1a9f-49ef-ae16-ec7e567907b1", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "613386", + "orderNumber" : "329886", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "GB", - "referencedStandardID" : "5374", + "referencedStandardID" : "9878", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -97479,28 +96927,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -97515,7 +96963,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-624099875318346541799114", + "value" : "NO-162200942779463110193609", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -97526,7 +96974,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "catenaXId" : "urn:uuid:f2f8f5d9-1a9f-49ef-ae16-ec7e567907b1", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -97538,10 +96986,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "assetId" : "urn:uuid:f2f8f5d9-1a9f-49ef-ae16-ec7e567907b1", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -97550,17 +96998,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:06f38f5c-3879-4e92-a522-686f5443428a", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:e9b319a1-578b-48b7-9d0d-5ceffa7ea717", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -97573,24 +97021,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -97816,7 +97246,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-624099875318346541799114", + "batteryIDDMCCode" : "NO-162200942779463110193609", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -97835,31 +97265,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f2f8f5d9-1a9f-49ef-ae16-ec7e567907b1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f2f8f5d9-1a9f-49ef-ae16-ec7e567907b1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "catenaXId" : "urn:uuid:f8eebc9b-3a62-495b-8f27-b1c238247e25", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -97874,11 +97320,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-04-10", + "currentStateOfHealthTimestamp" : "2023-01-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -97888,14 +97334,14 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "catenaXId" : "urn:uuid:f8eebc9b-3a62-495b-8f27-b1c238247e25", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "884019", + "orderNumber" : "689144", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { @@ -97904,19 +97350,19 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "6746", + "referencedStandard" : "IS", + "referencedStandardID" : "4646", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -97925,10 +97371,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -97938,17 +97384,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -97963,7 +97409,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-605812180459007775211801", + "value" : "NO-058298438745598770420719", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -97974,7 +97420,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "catenaXId" : "urn:uuid:f8eebc9b-3a62-495b-8f27-b1c238247e25", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -97986,10 +97432,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "assetId" : "urn:uuid:f8eebc9b-3a62-495b-8f27-b1c238247e25", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -97998,17 +97444,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e0cc79df-b1cc-4179-9407-4e0f4fd4f19f", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:4fa03dd2-a841-4d8e-aa10-a0f97580a13e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -98021,24 +97467,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -98264,7 +97692,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-605812180459007775211801", + "batteryIDDMCCode" : "NO-058298438745598770420719", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -98283,31 +97711,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f8eebc9b-3a62-495b-8f27-b1c238247e25", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f8eebc9b-3a62-495b-8f27-b1c238247e25", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "catenaXId" : "urn:uuid:5c551c52-58f6-4442-bb09-9e2eec3c8713", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -98322,11 +97766,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-10-10", + "currentStateOfHealthTimestamp" : "2014-05-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-02", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -98336,35 +97780,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "catenaXId" : "urn:uuid:5c551c52-58f6-4442-bb09-9e2eec3c8713", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "935131", + "orderNumber" : "942119", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "8100", + "referencedStandard" : "ASME", + "referencedStandardID" : "4174", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -98373,14 +97817,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -98390,13 +97834,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -98411,7 +97855,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-968546653898175607848081", + "value" : "NO-619993831308626846896497", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -98422,7 +97866,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "catenaXId" : "urn:uuid:5c551c52-58f6-4442-bb09-9e2eec3c8713", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -98434,10 +97878,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "assetId" : "urn:uuid:5c551c52-58f6-4442-bb09-9e2eec3c8713", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -98446,17 +97890,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3bf6c18f-02d0-49d6-bf85-dfefbce4e4b0", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:8f3c0bea-b8b3-4d24-adf4-8b16d3201e4e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -98469,24 +97913,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -98712,7 +98138,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-968546653898175607848081", + "batteryIDDMCCode" : "NO-619993831308626846896497", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -98731,31 +98157,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5c551c52-58f6-4442-bb09-9e2eec3c8713", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5c551c52-58f6-4442-bb09-9e2eec3c8713", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "catenaXId" : "urn:uuid:7dc3e911-86d0-4fbf-b7c1-06708297ddaf", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -98770,11 +98212,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-01-27", + "currentStateOfHealthTimestamp" : "2016-06-13", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthTimestamp" : "2024-03-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -98784,35 +98226,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "catenaXId" : "urn:uuid:7dc3e911-86d0-4fbf-b7c1-06708297ddaf", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "444876", + "orderNumber" : "169866", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "2660", + "referencedStandard" : "DIN", + "referencedStandardID" : "3352", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -98821,30 +98263,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -98859,7 +98301,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-855241899954855664946610", + "value" : "NO-977704584411529006588832", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -98870,7 +98312,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "catenaXId" : "urn:uuid:7dc3e911-86d0-4fbf-b7c1-06708297ddaf", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -98882,10 +98324,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "assetId" : "urn:uuid:7dc3e911-86d0-4fbf-b7c1-06708297ddaf", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -98894,17 +98336,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:85425f36-99aa-459b-918a-82a54553705e", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:0b1ccc67-b1a6-4e27-9010-4fc8fa73ce6b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -98917,24 +98359,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -99160,7 +98584,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-855241899954855664946610", + "batteryIDDMCCode" : "NO-977704584411529006588832", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -99179,31 +98603,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7dc3e911-86d0-4fbf-b7c1-06708297ddaf", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7dc3e911-86d0-4fbf-b7c1-06708297ddaf", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "catenaXId" : "urn:uuid:03eaf4eb-6a81-41b0-82bb-1eea0160397f", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -99218,11 +98658,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-07-16", + "currentStateOfHealthTimestamp" : "2019-12-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -99232,25 +98672,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "catenaXId" : "urn:uuid:03eaf4eb-6a81-41b0-82bb-1eea0160397f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "789866", + "orderNumber" : "477940", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 22 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -99259,8 +98699,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "3022", + "referencedStandard" : "DIN", + "referencedStandardID" : "7751", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -99269,30 +98709,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -99307,7 +98747,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-971962340442720997066820", + "value" : "NO-332150147131165825407893", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -99318,7 +98758,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "catenaXId" : "urn:uuid:03eaf4eb-6a81-41b0-82bb-1eea0160397f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -99333,7 +98773,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "assetId" : "urn:uuid:03eaf4eb-6a81-41b0-82bb-1eea0160397f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -99342,17 +98782,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0dd31796-d329-4f79-a566-f5188ad9cc55", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:4d661f4e-1c7a-4e17-85cf-a10e5e1c28f4", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -99365,24 +98805,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -99608,7 +99030,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-971962340442720997066820", + "batteryIDDMCCode" : "NO-332150147131165825407893", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -99627,31 +99049,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:03eaf4eb-6a81-41b0-82bb-1eea0160397f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:03eaf4eb-6a81-41b0-82bb-1eea0160397f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "catenaXId" : "urn:uuid:ac82062f-9fbb-484a-ab0b-abed55bc522b", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -99666,11 +99104,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-07-01", + "currentStateOfHealthTimestamp" : "2020-02-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -99680,35 +99118,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "catenaXId" : "urn:uuid:ac82062f-9fbb-484a-ab0b-abed55bc522b", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "663613", + "orderNumber" : "107374", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "8743", + "referencedStandard" : "IS", + "referencedStandardID" : "7851", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -99717,14 +99155,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -99734,13 +99172,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -99755,7 +99193,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-912642282493118256153758", + "value" : "NO-308925915756189788164176", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -99766,7 +99204,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "catenaXId" : "urn:uuid:ac82062f-9fbb-484a-ab0b-abed55bc522b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -99778,10 +99216,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "assetId" : "urn:uuid:ac82062f-9fbb-484a-ab0b-abed55bc522b", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -99790,17 +99228,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5644e790-c4b5-4a8d-960d-b6c6aa8d3b07", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:7dcdf2e3-a500-424c-bcc5-3683200ba58c", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -99813,24 +99251,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -100056,7 +99476,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-912642282493118256153758", + "batteryIDDMCCode" : "NO-308925915756189788164176", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -100075,31 +99495,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ac82062f-9fbb-484a-ab0b-abed55bc522b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ac82062f-9fbb-484a-ab0b-abed55bc522b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "catenaXId" : "urn:uuid:c83db165-610d-4ba0-9a1f-bcaaf596362c", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -100114,11 +99550,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-06-21", + "currentStateOfHealthTimestamp" : "2020-03-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -100128,35 +99564,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "catenaXId" : "urn:uuid:c83db165-610d-4ba0-9a1f-bcaaf596362c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "879377", + "orderNumber" : "387964", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "1411", + "referencedStandard" : "JASO", + "referencedStandardID" : "9622", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -100165,30 +99601,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -100203,7 +99639,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-289487941315784350536387", + "value" : "NO-396384175246102676232025", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -100214,7 +99650,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "catenaXId" : "urn:uuid:c83db165-610d-4ba0-9a1f-bcaaf596362c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -100229,7 +99665,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "assetId" : "urn:uuid:c83db165-610d-4ba0-9a1f-bcaaf596362c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -100238,17 +99674,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ff50fc9e-ef9c-4235-bd06-98727d11795e", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:a8f90fdb-2450-404c-ba2d-fdd872a31485", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -100261,24 +99697,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -100504,7 +99922,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-289487941315784350536387", + "batteryIDDMCCode" : "NO-396384175246102676232025", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -100523,31 +99941,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c83db165-610d-4ba0-9a1f-bcaaf596362c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c83db165-610d-4ba0-9a1f-bcaaf596362c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "catenaXId" : "urn:uuid:0067fa67-d9cd-4298-8e5b-b96a4ea03566", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -100562,11 +99996,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-04-27", + "currentStateOfHealthTimestamp" : "2014-10-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -100576,25 +100010,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "catenaXId" : "urn:uuid:0067fa67-d9cd-4298-8e5b-b96a4ea03566", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "696702", + "orderNumber" : "575760", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -100603,8 +100037,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "3942", + "referencedStandard" : "ISO", + "referencedStandardID" : "7291", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -100613,30 +100047,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -100651,7 +100085,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-218925641782669622254168", + "value" : "NO-787709570641890998925139", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -100662,7 +100096,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "catenaXId" : "urn:uuid:0067fa67-d9cd-4298-8e5b-b96a4ea03566", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -100674,10 +100108,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "assetId" : "urn:uuid:0067fa67-d9cd-4298-8e5b-b96a4ea03566", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -100686,17 +100120,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a970c990-c8f9-4636-b5d4-a3b9e3d1e2d4", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:b990a187-65f3-47d7-88a7-0e748a44057f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -100709,24 +100143,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -100952,7 +100368,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-218925641782669622254168", + "batteryIDDMCCode" : "NO-787709570641890998925139", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -100971,28 +100387,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0067fa67-d9cd-4298-8e5b-b96a4ea03566", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0067fa67-d9cd-4298-8e5b-b96a4ea03566", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 88, + "recycledContent" : 19, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -101002,7 +100434,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 65, + "recycledContent" : 38, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -101012,7 +100444,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 29, + "recycledContent" : 65, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -101023,112 +100455,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "catenaXId" : "urn:uuid:283bd827-a5b3-4da2-8291-f5a4630cc4b8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "catenaXId" : "urn:uuid:93b71a59-67c2-4343-b13f-13855ed479cf", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "catenaXId" : "urn:uuid:16d63da6-1274-41d7-adae-0f079e8a713a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "catenaXId" : "urn:uuid:e4fc13d9-a9a2-4735-b90a-5c5542c75155", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "catenaXId" : "urn:uuid:51371b9c-bc9b-41cc-8144-7aba635a27ba", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "catenaXId" : "urn:uuid:73c265d9-d593-456c-84c5-fe33f079255a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "catenaXId" : "urn:uuid:0729b069-ce66-436b-9189-52c3d3a1148d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "catenaXId" : "urn:uuid:9d5757ea-0898-42d6-86bb-9358fb5adcc6", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "catenaXId" : "urn:uuid:f8d109de-117e-49a4-a054-c7a6a93031aa", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "catenaXId" : "urn:uuid:2521ffb5-296f-4dc1-a440-9cf5ae3e7f63", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -101136,35 +100568,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "278337", + "orderNumber" : "96675", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "9037", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9560", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -101175,12 +100607,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -101190,13 +100622,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -101211,7 +100643,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-266625803499013057727310", + "value" : "NO-813954363927946566927046", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -101222,7 +100654,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -101234,10 +100666,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "assetId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -101246,17 +100678,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e553e26e-de63-4ce9-ac24-6ef009c72cce", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:bd73b47e-4d3c-400f-9cec-cb39f53fd92a", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -101265,17 +100697,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5f5a1239-6412-40c6-b6bb-ab1c48d605c1", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:2239c2ec-2395-4796-921c-210169cbaf9e", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "childassetId" : "urn:uuid:283bd827-a5b3-4da2-8291-f5a4630cc4b8", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -101284,17 +100716,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:81503307-6207-4ac6-952f-ee5ac97d9b37", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:242d6f2d-a2f0-4d15-9322-957e315d01e2", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "childassetId" : "urn:uuid:93b71a59-67c2-4343-b13f-13855ed479cf", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -101303,17 +100735,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:56796667-e8b6-47c8-8473-0f4405280d8c", + "ownerItemId" : "urn:uuid:9feb74a0-3d6d-42c1-8473-a221326396d0", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "childassetId" : "urn:uuid:16d63da6-1274-41d7-adae-0f079e8a713a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -101322,17 +100754,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2a3d807a-8c0f-4724-8168-dc926a3fa9b8", + "ownerItemId" : "urn:uuid:7a31c2f3-7dba-448c-a198-ccc8a5edae79", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "childassetId" : "urn:uuid:e4fc13d9-a9a2-4735-b90a-5c5542c75155", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -101341,17 +100773,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:94957af5-c50c-409d-89fb-4bd8cffc8855", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:87044715-abce-4848-bb51-4a298a53eb6d", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "childassetId" : "urn:uuid:51371b9c-bc9b-41cc-8144-7aba635a27ba", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -101360,17 +100792,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4bd91ba0-653d-43cc-896f-98f1ff031526", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:6837863a-365a-402d-9230-00079e58050c", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "childassetId" : "urn:uuid:73c265d9-d593-456c-84c5-fe33f079255a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -101379,17 +100811,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b90f6671-e863-4c61-b478-50a26cf38042", + "ownerItemId" : "urn:uuid:38889b0c-e389-48ed-881a-ec48c248b4d1", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "childassetId" : "urn:uuid:0729b069-ce66-436b-9189-52c3d3a1148d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -101398,17 +100830,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:66137a0e-4a71-4360-b556-ef8fe211e9ae", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:b19e96ed-94da-49c7-a9d4-ea98ab2dae0e", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "childassetId" : "urn:uuid:9d5757ea-0898-42d6-86bb-9358fb5adcc6", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -101417,17 +100849,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ef675976-6da6-4e89-bc9e-3f18212bbcdf", + "ownerItemId" : "urn:uuid:189f6e0b-c048-491e-af2e-48df60cd5d7b", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "childassetId" : "urn:uuid:f8d109de-117e-49a4-a054-c7a6a93031aa", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -101436,38 +100868,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c467d5c5-dcb6-49bc-af93-6a3c1318ce79", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:25803344-cca5-40b2-9851-0e500e158be7", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "childassetId" : "urn:uuid:2521ffb5-296f-4dc1-a440-9cf5ae3e7f63", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -101693,7 +101107,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-266625803499013057727310", + "batteryIDDMCCode" : "NO-813954363927946566927046", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -101735,13 +101149,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2021-09-07", - "version" : 2.3, + "issueDate" : "2023-09-11", + "version" : 2.7, "status" : "Invalid" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6781, + "diameter" : 229.6222, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -101749,22 +101163,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 15 + "value" : 19 } }, "commercial" : { - "placedOnMarket" : "2021-06-07", + "placedOnMarket" : "2022-05-28", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-266625803499013057727310", + "value" : "NO-813954363927946566927046", "key" : "PartInstanceID" } ], - "gtin" : " 52245597", + "gtin" : " 80719500", "additionalCode" : [ { "name" : "TARIC", - "value" : "388682915" + "value" : "507664124" } ] }, "sources" : { @@ -101786,7 +101200,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Compliance", + "category" : "Sustainability", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -101815,7 +101229,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2022-03-30", + "date" : "2023-12-27", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -101831,9 +101245,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 7.25 ] + "left" : [ 1.0961 ] }, - "id" : "VX5322" + "id" : "WS8670" } ] }, "additionalData" : [ { @@ -101856,10 +101270,10 @@ } ], "sustainability" : { "material" : [ { - "recycled" : true, + "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Steel" + "name" : "Graphite" } ], "critical" : [ "Cobalt" ], "carbonFootprint" : { @@ -101871,14 +101285,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 121 + "carbonContentTotal" : 115 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AYRE", + "importer" : "BPNL00000003B3NX", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AVTH" } } @@ -101891,31 +101305,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "catenaXId" : "urn:uuid:283bd827-a5b3-4da2-8291-f5a4630cc4b8", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -101930,11 +101360,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-07-03", + "currentStateOfHealthTimestamp" : "2024-01-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -101944,25 +101374,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "catenaXId" : "urn:uuid:283bd827-a5b3-4da2-8291-f5a4630cc4b8", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "720827", + "orderNumber" : "921252", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -101971,8 +101401,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "4083", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6779", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -101983,28 +101413,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -102019,7 +101449,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-813531313449156434340447", + "value" : "NO-353177263076937406980534", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -102030,7 +101460,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "catenaXId" : "urn:uuid:283bd827-a5b3-4da2-8291-f5a4630cc4b8", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -102042,10 +101472,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "assetId" : "urn:uuid:283bd827-a5b3-4da2-8291-f5a4630cc4b8", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -102054,17 +101484,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f46e4ec9-3791-4bcc-bda1-1b381c4c0007", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:25e197f1-e29b-46e2-805e-80eb2eb771ce", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -102077,24 +101507,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -102320,7 +101732,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-813531313449156434340447", + "batteryIDDMCCode" : "NO-353177263076937406980534", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -102339,31 +101751,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:283bd827-a5b3-4da2-8291-f5a4630cc4b8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:283bd827-a5b3-4da2-8291-f5a4630cc4b8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "catenaXId" : "urn:uuid:93b71a59-67c2-4343-b13f-13855ed479cf", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -102378,11 +101806,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-08-20", + "currentStateOfHealthTimestamp" : "2022-07-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthTimestamp" : "2024-03-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -102392,35 +101820,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "catenaXId" : "urn:uuid:93b71a59-67c2-4343-b13f-13855ed479cf", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "726830", + "orderNumber" : "509069", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 24 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "6045", + "referencedStandard" : "AS", + "referencedStandardID" : "2948", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -102432,7 +101860,7 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -102452,7 +101880,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -102467,7 +101895,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-160502363712170606609249", + "value" : "NO-103687604595307515776989", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -102478,7 +101906,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "catenaXId" : "urn:uuid:93b71a59-67c2-4343-b13f-13855ed479cf", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -102490,10 +101918,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "assetId" : "urn:uuid:93b71a59-67c2-4343-b13f-13855ed479cf", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -102502,17 +101930,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e30f53f5-d096-4b8d-b738-16f2a8c86bb7", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:5e6c7776-0728-4927-a0e0-794a805e9453", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -102525,24 +101953,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -102768,7 +102178,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-160502363712170606609249", + "batteryIDDMCCode" : "NO-103687604595307515776989", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -102787,31 +102197,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:93b71a59-67c2-4343-b13f-13855ed479cf", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:93b71a59-67c2-4343-b13f-13855ed479cf", + "parentItems" : [ { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "catenaXId" : "urn:uuid:16d63da6-1274-41d7-adae-0f079e8a713a", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -102826,11 +102252,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-03-03", + "currentStateOfHealthTimestamp" : "2018-06-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-03-31", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -102840,25 +102266,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "catenaXId" : "urn:uuid:16d63da6-1274-41d7-adae-0f079e8a713a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "125411", + "orderNumber" : "291836", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 23 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -102867,8 +102293,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "9687", + "referencedStandard" : "JASO", + "referencedStandardID" : "7725", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -102884,23 +102310,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -102915,7 +102341,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-598740850606585963235307", + "value" : "NO-021417401259333589053767", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -102926,7 +102352,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "catenaXId" : "urn:uuid:16d63da6-1274-41d7-adae-0f079e8a713a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -102941,7 +102367,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "assetId" : "urn:uuid:16d63da6-1274-41d7-adae-0f079e8a713a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -102950,17 +102376,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:161425eb-a656-474a-bc48-cc822e5c431e", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:0496054a-ea61-490d-b5fd-cd6e78e7f0d1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -102973,24 +102399,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -103216,7 +102624,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-598740850606585963235307", + "batteryIDDMCCode" : "NO-021417401259333589053767", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -103235,31 +102643,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:16d63da6-1274-41d7-adae-0f079e8a713a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:16d63da6-1274-41d7-adae-0f079e8a713a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "catenaXId" : "urn:uuid:e4fc13d9-a9a2-4735-b90a-5c5542c75155", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -103274,11 +102698,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-05-29", + "currentStateOfHealthTimestamp" : "2019-01-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthTimestamp" : "2024-03-27", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -103288,35 +102712,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "catenaXId" : "urn:uuid:e4fc13d9-a9a2-4735-b90a-5c5542c75155", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "845221", + "orderNumber" : "13222", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "AISI", - "referencedStandardID" : "1665", + "referencedStandardID" : "5339", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -103328,7 +102752,7 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -103338,7 +102762,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -103363,7 +102787,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-088559388438816364444095", + "value" : "NO-379656394358398977767787", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -103374,7 +102798,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "catenaXId" : "urn:uuid:e4fc13d9-a9a2-4735-b90a-5c5542c75155", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -103389,7 +102813,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "assetId" : "urn:uuid:e4fc13d9-a9a2-4735-b90a-5c5542c75155", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -103398,17 +102822,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a7852bf6-ea94-40e5-895b-bd240eee8469", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:e715a876-ecd1-4d9e-b69f-1e99ed95db51", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -103421,24 +102845,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -103664,7 +103070,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-088559388438816364444095", + "batteryIDDMCCode" : "NO-379656394358398977767787", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -103683,31 +103089,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e4fc13d9-a9a2-4735-b90a-5c5542c75155", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e4fc13d9-a9a2-4735-b90a-5c5542c75155", + "parentItems" : [ { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "catenaXId" : "urn:uuid:51371b9c-bc9b-41cc-8144-7aba635a27ba", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -103722,11 +103144,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-04-15", + "currentStateOfHealthTimestamp" : "2022-07-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-14", + "currentStateOfHealthTimestamp" : "2024-03-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -103736,35 +103158,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "catenaXId" : "urn:uuid:51371b9c-bc9b-41cc-8144-7aba635a27ba", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "433380", + "orderNumber" : "379726", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "3214", + "referencedStandard" : "AS", + "referencedStandardID" : "5172", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -103773,30 +103195,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -103811,7 +103233,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-226975986307778816726774", + "value" : "NO-851795906012186517139798", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -103822,7 +103244,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "catenaXId" : "urn:uuid:51371b9c-bc9b-41cc-8144-7aba635a27ba", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -103834,10 +103256,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "assetId" : "urn:uuid:51371b9c-bc9b-41cc-8144-7aba635a27ba", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -103846,17 +103268,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e5e314f5-4ab2-4457-84b1-51ca5d68ee87", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:4603839e-223c-4373-bae8-3a9bea038a00", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -103869,24 +103291,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -104112,7 +103516,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-226975986307778816726774", + "batteryIDDMCCode" : "NO-851795906012186517139798", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -104131,31 +103535,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:51371b9c-bc9b-41cc-8144-7aba635a27ba", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:51371b9c-bc9b-41cc-8144-7aba635a27ba", + "parentItems" : [ { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "catenaXId" : "urn:uuid:73c265d9-d593-456c-84c5-fe33f079255a", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -104170,11 +103590,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-10-05", + "currentStateOfHealthTimestamp" : "2019-05-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -104184,35 +103604,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "catenaXId" : "urn:uuid:73c265d9-d593-456c-84c5-fe33f079255a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "899752", + "orderNumber" : "653224", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "5551", + "referencedStandard" : "ASME", + "referencedStandardID" : "1132", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -104223,28 +103643,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -104259,7 +103679,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-169345443003327596491868", + "value" : "NO-535857797589032688407109", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -104270,7 +103690,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "catenaXId" : "urn:uuid:73c265d9-d593-456c-84c5-fe33f079255a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -104282,10 +103702,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "assetId" : "urn:uuid:73c265d9-d593-456c-84c5-fe33f079255a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -104294,17 +103714,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5bb5ff2c-66ce-408a-85ac-045c03bb3df7", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:20ea0ace-4ffc-49d7-b6cf-14231386fc41", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -104317,24 +103737,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -104560,7 +103962,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-169345443003327596491868", + "batteryIDDMCCode" : "NO-535857797589032688407109", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -104579,31 +103981,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:73c265d9-d593-456c-84c5-fe33f079255a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:73c265d9-d593-456c-84c5-fe33f079255a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "catenaXId" : "urn:uuid:0729b069-ce66-436b-9189-52c3d3a1148d", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -104618,11 +104036,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-09-08", + "currentStateOfHealthTimestamp" : "2023-10-07", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthTimestamp" : "2024-03-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -104632,35 +104050,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "catenaXId" : "urn:uuid:0729b069-ce66-436b-9189-52c3d3a1148d", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "862255", + "orderNumber" : "908705", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "AISI", - "referencedStandardID" : "8043", + "referencedStandardID" : "6763", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -104686,13 +104104,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -104707,7 +104125,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-928993266068674740609748", + "value" : "NO-891443010663294430339387", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -104718,7 +104136,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "catenaXId" : "urn:uuid:0729b069-ce66-436b-9189-52c3d3a1148d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -104733,7 +104151,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "assetId" : "urn:uuid:0729b069-ce66-436b-9189-52c3d3a1148d", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -104742,17 +104160,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:408cc932-804a-4584-ab9a-1861aa32bc8a", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:0ca0767e-8e4c-4951-a7f7-76481143c8a7", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -104765,24 +104183,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -105008,7 +104408,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-928993266068674740609748", + "batteryIDDMCCode" : "NO-891443010663294430339387", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -105027,31 +104427,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0729b069-ce66-436b-9189-52c3d3a1148d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0729b069-ce66-436b-9189-52c3d3a1148d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "catenaXId" : "urn:uuid:9d5757ea-0898-42d6-86bb-9358fb5adcc6", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -105066,11 +104482,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-08-07", + "currentStateOfHealthTimestamp" : "2020-07-13", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -105080,35 +104496,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "catenaXId" : "urn:uuid:9d5757ea-0898-42d6-86bb-9358fb5adcc6", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "656036", + "orderNumber" : "361906", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "5594", + "referencedStandard" : "EN", + "referencedStandardID" : "7414", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -105117,10 +104533,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -105130,11 +104546,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -105155,7 +104571,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-522142872283988107476796", + "value" : "NO-015156631174182144932841", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -105166,7 +104582,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "catenaXId" : "urn:uuid:9d5757ea-0898-42d6-86bb-9358fb5adcc6", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -105178,10 +104594,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "assetId" : "urn:uuid:9d5757ea-0898-42d6-86bb-9358fb5adcc6", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -105190,17 +104606,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9bb5d74f-5549-427f-b637-0d465dc0a7c6", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:174d1934-63c2-47b0-adc5-7a491dee7656", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -105213,24 +104629,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -105456,7 +104854,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-522142872283988107476796", + "batteryIDDMCCode" : "NO-015156631174182144932841", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -105475,31 +104873,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9d5757ea-0898-42d6-86bb-9358fb5adcc6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9d5757ea-0898-42d6-86bb-9358fb5adcc6", + "parentItems" : [ { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "catenaXId" : "urn:uuid:f8d109de-117e-49a4-a054-c7a6a93031aa", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -105514,11 +104928,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-02-09", + "currentStateOfHealthTimestamp" : "2021-02-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-05", + "currentStateOfHealthTimestamp" : "2024-03-27", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -105528,35 +104942,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "catenaXId" : "urn:uuid:f8d109de-117e-49a4-a054-c7a6a93031aa", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "388692", + "orderNumber" : "818627", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "5187", + "referencedStandard" : "EN", + "referencedStandardID" : "8356", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -105567,28 +104981,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -105603,7 +105017,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-824705014257620858873450", + "value" : "NO-593620449184117256671167", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -105614,7 +105028,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "catenaXId" : "urn:uuid:f8d109de-117e-49a4-a054-c7a6a93031aa", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -105629,7 +105043,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "assetId" : "urn:uuid:f8d109de-117e-49a4-a054-c7a6a93031aa", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -105638,17 +105052,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1c2db2cd-b93c-4058-8b7a-b96d302f33e0", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:7312df63-05c9-48bb-b4ad-214922c1aef2", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -105661,24 +105075,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -105904,7 +105300,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-824705014257620858873450", + "batteryIDDMCCode" : "NO-593620449184117256671167", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -105923,31 +105319,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f8d109de-117e-49a4-a054-c7a6a93031aa", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f8d109de-117e-49a4-a054-c7a6a93031aa", + "parentItems" : [ { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "catenaXId" : "urn:uuid:2521ffb5-296f-4dc1-a440-9cf5ae3e7f63", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -105962,11 +105374,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-09-08", + "currentStateOfHealthTimestamp" : "2019-02-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-25", + "currentStateOfHealthTimestamp" : "2024-03-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -105976,14 +105388,14 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "catenaXId" : "urn:uuid:2521ffb5-296f-4dc1-a440-9cf5ae3e7f63", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "711477", + "orderNumber" : "912070", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { @@ -105992,19 +105404,19 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "2407", + "referencedStandard" : "EN", + "referencedStandardID" : "7348", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -106013,20 +105425,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -106051,7 +105463,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-405159030052090407177399", + "value" : "NO-500869015063897903165169", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -106062,7 +105474,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "catenaXId" : "urn:uuid:2521ffb5-296f-4dc1-a440-9cf5ae3e7f63", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -106074,10 +105486,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "assetId" : "urn:uuid:2521ffb5-296f-4dc1-a440-9cf5ae3e7f63", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -106086,17 +105498,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:89209001-da0e-46b3-9b2c-65fb28926cc9", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:c89f0f3a-c2a5-4d37-9495-a33fa846208e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -106109,24 +105521,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -106352,7 +105746,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-405159030052090407177399", + "batteryIDDMCCode" : "NO-500869015063897903165169", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -106371,28 +105765,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2521ffb5-296f-4dc1-a440-9cf5ae3e7f63", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2521ffb5-296f-4dc1-a440-9cf5ae3e7f63", + "parentItems" : [ { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 49, + "recycledContent" : 17, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -106402,7 +105812,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 23, + "recycledContent" : 57, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -106412,7 +105822,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 34, + "recycledContent" : 78, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -106423,112 +105833,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "catenaXId" : "urn:uuid:9a50ae53-787b-44c9-ba79-7c8e145edf7f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "catenaXId" : "urn:uuid:1573a073-3934-4f46-bc18-0f5ff203a0dd", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "catenaXId" : "urn:uuid:1bab885c-2578-4335-91a7-0f686c7ffc7a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "catenaXId" : "urn:uuid:432ea93b-67c9-41bd-b427-23cd7c9a4047", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "catenaXId" : "urn:uuid:419f01ac-042e-4238-9f5b-46942a8b814f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "catenaXId" : "urn:uuid:1471fa1a-87d8-48cf-820e-4ff54fb96219", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "catenaXId" : "urn:uuid:87828bcf-070d-4559-ac97-fbdc539a3f24", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "catenaXId" : "urn:uuid:4a82eafc-eb4e-4e4a-aa18-1eb5bbf2de6f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "catenaXId" : "urn:uuid:4e69da75-7103-4e5d-8a59-6405877887d5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "catenaXId" : "urn:uuid:1bafd705-badf-400b-b69d-92277a782aa5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -106536,10 +105946,10 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "750204", + "orderNumber" : "286272", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -106548,23 +105958,23 @@ "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "8597", + "referencedStandard" : "AISI", + "referencedStandardID" : "1637", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -106580,23 +105990,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -106611,7 +106021,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-666462495321800521350161", + "value" : "NO-299250302066174356688340", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -106622,7 +106032,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -106634,10 +106044,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "assetId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -106646,17 +106056,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4637acf8-9fa4-4cb8-93f2-cc4b5e6386f1", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:28df98e0-751f-42dd-8f3c-d93ea81cf763", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -106665,17 +106075,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6c31ae6b-6a71-4279-beb7-b8c8093f3767", + "ownerItemId" : "urn:uuid:32c5d6b4-87fc-47a0-9f2f-9fb9786f6d2c", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "childassetId" : "urn:uuid:9a50ae53-787b-44c9-ba79-7c8e145edf7f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -106684,17 +106094,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:31e21a39-3b30-4b01-ab7c-c97d1a85e0e0", + "ownerItemId" : "urn:uuid:1e46714a-af21-4a9b-ba73-a08869d5a9ba", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "childassetId" : "urn:uuid:1573a073-3934-4f46-bc18-0f5ff203a0dd", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -106703,17 +106113,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5f543e94-1085-4252-b326-be28aac57cff", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:61235ed7-e409-40b8-b337-cc52c4eb9942", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "childassetId" : "urn:uuid:1bab885c-2578-4335-91a7-0f686c7ffc7a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -106722,17 +106132,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:075cd693-5bfb-49eb-98ea-8ef0bc986709", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:9b12e42a-702d-40fe-8cad-1c5113fe4207", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "childassetId" : "urn:uuid:432ea93b-67c9-41bd-b427-23cd7c9a4047", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -106741,17 +106151,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e19b6141-eb8d-4fdb-a678-f5ed47ac25d9", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:fb89f9b6-4043-4451-b76f-09f011381aa7", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "childassetId" : "urn:uuid:419f01ac-042e-4238-9f5b-46942a8b814f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -106760,17 +106170,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6352c846-ae60-4aad-95ac-060e611688e7", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:d8234cdb-adac-47c9-aec1-dd6d20873583", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "childassetId" : "urn:uuid:1471fa1a-87d8-48cf-820e-4ff54fb96219", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -106779,17 +106189,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:55d77876-0c90-4f80-a890-f9e42df95adb", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:66f451fc-8045-4957-aee0-979416b3c5b1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "childassetId" : "urn:uuid:87828bcf-070d-4559-ac97-fbdc539a3f24", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -106798,17 +106208,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0fe5ffab-5d1d-4db2-ab12-7c11858a6169", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:5ce3020a-3143-4e0a-9a51-0b16c0725d4d", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "childassetId" : "urn:uuid:4a82eafc-eb4e-4e4a-aa18-1eb5bbf2de6f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -106817,17 +106227,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4542651d-ec6d-4dc0-9e81-03013a793abd", + "ownerItemId" : "urn:uuid:71899f8d-8bab-4260-975d-8bbe592c256d", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "childassetId" : "urn:uuid:4e69da75-7103-4e5d-8a59-6405877887d5", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -106836,38 +106246,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:40c9674b-f1fd-4b6a-89d2-ead5403c6883", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:6ae6283f-c7ea-46d4-8eea-ec096e7bc584", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "childassetId" : "urn:uuid:1bafd705-badf-400b-b69d-92277a782aa5", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -107093,7 +106485,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-666462495321800521350161", + "batteryIDDMCCode" : "NO-299250302066174356688340", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -107135,13 +106527,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2023-12-26", - "version" : 2.6, - "status" : "Expired" + "issueDate" : "2022-03-05", + "version" : 1.4, + "status" : "Invalid" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.68019999999999, + "diameter" : 229.67159999999998, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -107149,22 +106541,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 15 + "value" : 16 } }, "commercial" : { - "placedOnMarket" : "2023-12-12", + "placedOnMarket" : "2020-02-21", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-666462495321800521350161", + "value" : "NO-299250302066174356688340", "key" : "PartInstanceID" } ], - "gtin" : " 80816507", + "gtin" : " 17602822", "additionalCode" : [ { "name" : "TARIC", - "value" : "338960894" + "value" : "243040827" } ] }, "sources" : { @@ -107186,7 +106578,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Compliance", + "category" : "Sustainability", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -107215,7 +106607,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-01-28", + "date" : "2022-04-03", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -107231,9 +106623,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 8.8569 ] + "left" : [ 5.6376 ] }, - "id" : "TV8227" + "id" : "JQ1307" } ] }, "additionalData" : [ { @@ -107259,9 +106651,9 @@ "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "UV Varnish" + "name" : "Sealant" } ], - "critical" : [ "Nickel" ], + "critical" : [ "Manganese" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -107271,14 +106663,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 120 + "carbonContentTotal" : 113 }, "state" : "first life" }, "operation" : { "importer" : "BPNL00000003B3NX", "manufacturer" : { - "facilityId" : "BPNL00000003B3NX", + "facilityId" : "BPNL00000003AXS3", "manufacturerId" : "BPNL00000003AVTH" } } @@ -107291,31 +106683,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "catenaXId" : "urn:uuid:9a50ae53-787b-44c9-ba79-7c8e145edf7f", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -107330,11 +106738,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-02-21", + "currentStateOfHealthTimestamp" : "2017-01-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -107344,19 +106752,19 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "catenaXId" : "urn:uuid:9a50ae53-787b-44c9-ba79-7c8e145edf7f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "440587", + "orderNumber" : "527796", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 8 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -107367,12 +106775,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "1784", + "referencedStandard" : "JASO", + "referencedStandardID" : "5015", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -107383,22 +106791,22 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -107419,7 +106827,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-243431359981652793976124", + "value" : "NO-761118606872897346517498", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -107430,7 +106838,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "catenaXId" : "urn:uuid:9a50ae53-787b-44c9-ba79-7c8e145edf7f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -107445,7 +106853,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "assetId" : "urn:uuid:9a50ae53-787b-44c9-ba79-7c8e145edf7f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -107454,17 +106862,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1b6966e0-303a-4f61-9fee-c98a94297ed5", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:80c9a7af-ee8a-4cc2-b97d-4959b91cea0d", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -107477,24 +106885,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -107720,7 +107110,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-243431359981652793976124", + "batteryIDDMCCode" : "NO-761118606872897346517498", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -107739,31 +107129,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9a50ae53-787b-44c9-ba79-7c8e145edf7f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9a50ae53-787b-44c9-ba79-7c8e145edf7f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "catenaXId" : "urn:uuid:1573a073-3934-4f46-bc18-0f5ff203a0dd", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -107778,11 +107184,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-11-12", + "currentStateOfHealthTimestamp" : "2024-01-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-03-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -107792,35 +107198,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "catenaXId" : "urn:uuid:1573a073-3934-4f46-bc18-0f5ff203a0dd", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "804866", + "orderNumber" : "532291", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "8876", + "referencedStandard" : "GB", + "referencedStandardID" : "3736", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -107831,12 +107237,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -107846,7 +107252,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -107867,7 +107273,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-023002600992356013537416", + "value" : "NO-874321513761335588378709", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -107878,7 +107284,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "catenaXId" : "urn:uuid:1573a073-3934-4f46-bc18-0f5ff203a0dd", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -107893,7 +107299,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "assetId" : "urn:uuid:1573a073-3934-4f46-bc18-0f5ff203a0dd", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -107902,17 +107308,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c29ae841-3b6e-47b9-a5fc-65f9f7edd927", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:89618f3e-cd25-4d64-9973-cf95b9e06d4e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -107925,24 +107331,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -108168,7 +107556,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-023002600992356013537416", + "batteryIDDMCCode" : "NO-874321513761335588378709", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -108187,31 +107575,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1573a073-3934-4f46-bc18-0f5ff203a0dd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1573a073-3934-4f46-bc18-0f5ff203a0dd", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "catenaXId" : "urn:uuid:1bab885c-2578-4335-91a7-0f686c7ffc7a", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -108226,11 +107630,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-02-24", + "currentStateOfHealthTimestamp" : "2018-06-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthTimestamp" : "2024-03-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -108240,35 +107644,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "catenaXId" : "urn:uuid:1bab885c-2578-4335-91a7-0f686c7ffc7a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "941283", + "orderNumber" : "905205", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "9395", + "referencedStandard" : "DIN", + "referencedStandardID" : "8613", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -108277,30 +107681,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -108315,7 +107719,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-723900595323676180970239", + "value" : "NO-342236709136076823061034", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -108326,7 +107730,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "catenaXId" : "urn:uuid:1bab885c-2578-4335-91a7-0f686c7ffc7a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -108338,10 +107742,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "assetId" : "urn:uuid:1bab885c-2578-4335-91a7-0f686c7ffc7a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -108350,17 +107754,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7d921a84-ce8b-42ef-b6c6-4e4c8abea760", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:a3faf3ee-6aa0-455d-b18f-10f01439f36d", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -108373,24 +107777,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -108616,7 +108002,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-723900595323676180970239", + "batteryIDDMCCode" : "NO-342236709136076823061034", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -108635,31 +108021,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1bab885c-2578-4335-91a7-0f686c7ffc7a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1bab885c-2578-4335-91a7-0f686c7ffc7a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "catenaXId" : "urn:uuid:432ea93b-67c9-41bd-b427-23cd7c9a4047", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -108674,11 +108076,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-07-16", + "currentStateOfHealthTimestamp" : "2022-07-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-09", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -108688,25 +108090,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "catenaXId" : "urn:uuid:432ea93b-67c9-41bd-b427-23cd7c9a4047", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "201539", + "orderNumber" : "449030", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -108715,8 +108117,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "3201", + "referencedStandard" : "JASO", + "referencedStandardID" : "5615", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -108725,10 +108127,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -108738,17 +108140,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -108763,7 +108165,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-852995337686482639469224", + "value" : "NO-938212604599539570895309", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -108774,7 +108176,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "catenaXId" : "urn:uuid:432ea93b-67c9-41bd-b427-23cd7c9a4047", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -108786,10 +108188,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "assetId" : "urn:uuid:432ea93b-67c9-41bd-b427-23cd7c9a4047", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -108798,17 +108200,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c69859ac-dbd1-4d65-97c4-8318f78d36a4", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:2bc05f02-0b14-471f-a693-0fbf51cc5fa1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -108821,24 +108223,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -109064,7 +108448,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-852995337686482639469224", + "batteryIDDMCCode" : "NO-938212604599539570895309", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -109083,31 +108467,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:432ea93b-67c9-41bd-b427-23cd7c9a4047", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:432ea93b-67c9-41bd-b427-23cd7c9a4047", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "catenaXId" : "urn:uuid:419f01ac-042e-4238-9f5b-46942a8b814f", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -109122,11 +108522,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-02-24", + "currentStateOfHealthTimestamp" : "2022-01-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-02", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -109136,35 +108536,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "catenaXId" : "urn:uuid:419f01ac-042e-4238-9f5b-46942a8b814f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "608424", + "orderNumber" : "32472", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "4955", + "referencedStandard" : "ISO", + "referencedStandardID" : "1501", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -109175,28 +108575,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -109211,7 +108611,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-864271430120841368141725", + "value" : "NO-028690566422024909405570", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -109222,7 +108622,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "catenaXId" : "urn:uuid:419f01ac-042e-4238-9f5b-46942a8b814f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -109234,10 +108634,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "assetId" : "urn:uuid:419f01ac-042e-4238-9f5b-46942a8b814f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -109246,17 +108646,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7bd13c22-ca20-4588-8251-28386e9c68a6", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:8354e237-59a1-45f4-975b-052fdcceba81", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -109269,24 +108669,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -109512,7 +108894,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-864271430120841368141725", + "batteryIDDMCCode" : "NO-028690566422024909405570", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -109531,31 +108913,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:419f01ac-042e-4238-9f5b-46942a8b814f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:419f01ac-042e-4238-9f5b-46942a8b814f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "catenaXId" : "urn:uuid:1471fa1a-87d8-48cf-820e-4ff54fb96219", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -109570,11 +108968,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-06-25", + "currentStateOfHealthTimestamp" : "2014-11-15", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -109584,35 +108982,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "catenaXId" : "urn:uuid:1471fa1a-87d8-48cf-820e-4ff54fb96219", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "83839", + "orderNumber" : "114174", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "2658", + "referencedStandard" : "JASO", + "referencedStandardID" : "1929", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -109621,30 +109019,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -109659,7 +109057,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-493965559315963173200149", + "value" : "NO-443620290801454528608838", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -109670,7 +109068,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "catenaXId" : "urn:uuid:1471fa1a-87d8-48cf-820e-4ff54fb96219", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -109682,10 +109080,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "assetId" : "urn:uuid:1471fa1a-87d8-48cf-820e-4ff54fb96219", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -109694,17 +109092,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ade79d38-7a36-44c7-80a8-fdc08a7cb8fb", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:86d82017-eed4-4520-becb-f60e3284c433", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -109717,24 +109115,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -109960,7 +109340,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-493965559315963173200149", + "batteryIDDMCCode" : "NO-443620290801454528608838", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -109979,31 +109359,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1471fa1a-87d8-48cf-820e-4ff54fb96219", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1471fa1a-87d8-48cf-820e-4ff54fb96219", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "catenaXId" : "urn:uuid:87828bcf-070d-4559-ac97-fbdc539a3f24", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -110018,11 +109414,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-06-05", + "currentStateOfHealthTimestamp" : "2019-09-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-04", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -110032,35 +109428,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "catenaXId" : "urn:uuid:87828bcf-070d-4559-ac97-fbdc539a3f24", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "391038", + "orderNumber" : "145581", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "4977", + "referencedStandard" : "IS", + "referencedStandardID" : "6941", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -110071,18 +109467,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -110092,7 +109488,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -110107,7 +109503,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-631945854224183782802522", + "value" : "NO-373530199750331239499694", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -110118,7 +109514,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "catenaXId" : "urn:uuid:87828bcf-070d-4559-ac97-fbdc539a3f24", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -110130,10 +109526,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "assetId" : "urn:uuid:87828bcf-070d-4559-ac97-fbdc539a3f24", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -110142,17 +109538,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0f5748c3-c0bd-46e4-9832-db3120d291c8", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:da5cb838-5d88-48ed-a678-eb34b4991d6f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -110165,24 +109561,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -110408,7 +109786,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-631945854224183782802522", + "batteryIDDMCCode" : "NO-373530199750331239499694", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -110427,31 +109805,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:87828bcf-070d-4559-ac97-fbdc539a3f24", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:87828bcf-070d-4559-ac97-fbdc539a3f24", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "catenaXId" : "urn:uuid:4a82eafc-eb4e-4e4a-aa18-1eb5bbf2de6f", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -110466,11 +109860,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-09-26", + "currentStateOfHealthTimestamp" : "2017-12-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-17", + "currentStateOfHealthTimestamp" : "2024-03-22", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -110480,25 +109874,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "catenaXId" : "urn:uuid:4a82eafc-eb4e-4e4a-aa18-1eb5bbf2de6f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "64252", + "orderNumber" : "674779", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -110507,8 +109901,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "7550", + "referencedStandard" : "AS", + "referencedStandardID" : "6910", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -110519,28 +109913,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -110555,7 +109949,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-528164755627618925093346", + "value" : "NO-000884847473256397893511", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -110566,7 +109960,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "catenaXId" : "urn:uuid:4a82eafc-eb4e-4e4a-aa18-1eb5bbf2de6f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -110578,10 +109972,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "assetId" : "urn:uuid:4a82eafc-eb4e-4e4a-aa18-1eb5bbf2de6f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -110590,17 +109984,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ab698cc6-6b42-41ba-97ae-50ea78e7078a", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:5370b11c-3461-492b-bdc6-04d57a429ac5", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -110613,24 +110007,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -110856,7 +110232,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-528164755627618925093346", + "batteryIDDMCCode" : "NO-000884847473256397893511", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -110875,31 +110251,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4a82eafc-eb4e-4e4a-aa18-1eb5bbf2de6f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4a82eafc-eb4e-4e4a-aa18-1eb5bbf2de6f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "catenaXId" : "urn:uuid:4e69da75-7103-4e5d-8a59-6405877887d5", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -110914,11 +110306,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-10-31", + "currentStateOfHealthTimestamp" : "2022-02-16", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -110928,19 +110320,19 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "catenaXId" : "urn:uuid:4e69da75-7103-4e5d-8a59-6405877887d5", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "182499", + "orderNumber" : "249351", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -110951,12 +110343,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "ASME", - "referencedStandardID" : "4222", + "referencedStandardID" : "4966", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -110968,21 +110360,21 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -111003,7 +110395,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-080946431019630794165586", + "value" : "NO-872284497289268828850972", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -111014,7 +110406,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "catenaXId" : "urn:uuid:4e69da75-7103-4e5d-8a59-6405877887d5", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -111029,7 +110421,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "assetId" : "urn:uuid:4e69da75-7103-4e5d-8a59-6405877887d5", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -111038,17 +110430,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ec903206-ddb7-4c2c-8b6c-abd3cd3f419b", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:cc309953-fc79-46f4-b329-eeed587589a5", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -111061,24 +110453,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -111304,7 +110678,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-080946431019630794165586", + "batteryIDDMCCode" : "NO-872284497289268828850972", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -111323,31 +110697,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4e69da75-7103-4e5d-8a59-6405877887d5", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4e69da75-7103-4e5d-8a59-6405877887d5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "catenaXId" : "urn:uuid:1bafd705-badf-400b-b69d-92277a782aa5", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -111362,11 +110752,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-02-15", + "currentStateOfHealthTimestamp" : "2014-04-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-23", + "currentStateOfHealthTimestamp" : "2024-03-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -111376,35 +110766,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "catenaXId" : "urn:uuid:1bafd705-badf-400b-b69d-92277a782aa5", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "716893", + "orderNumber" : "583158", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "6717", + "referencedStandard" : "AISI", + "referencedStandardID" : "1873", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -111415,28 +110805,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -111451,7 +110841,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-562616991863372023913717", + "value" : "NO-184779682912162798050449", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -111462,7 +110852,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "catenaXId" : "urn:uuid:1bafd705-badf-400b-b69d-92277a782aa5", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -111474,10 +110864,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "assetId" : "urn:uuid:1bafd705-badf-400b-b69d-92277a782aa5", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -111486,17 +110876,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7813e8b3-9f24-4c98-be61-804592f09faf", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:672fff05-1250-4a3a-8920-829edf77de8d", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -111509,24 +110899,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -111752,7 +111124,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-562616991863372023913717", + "batteryIDDMCCode" : "NO-184779682912162798050449", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -111771,28 +111143,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1bafd705-badf-400b-b69d-92277a782aa5", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1bafd705-badf-400b-b69d-92277a782aa5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 80, + "recycledContent" : 7, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -111802,7 +111190,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 50, + "recycledContent" : 21, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -111823,112 +111211,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "catenaXId" : "urn:uuid:d031d403-c219-4ce4-842b-6defe9145812", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "catenaXId" : "urn:uuid:7926ba88-d8ed-40e3-92e5-7e487370e2a0", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "catenaXId" : "urn:uuid:563ff16e-f30c-4f80-9f4a-8d05c7bf24e7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "catenaXId" : "urn:uuid:346e40e4-78ba-465b-b648-902cc7ddf282", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "catenaXId" : "urn:uuid:b3df0c0f-a241-408c-bdc7-126627acc03a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "catenaXId" : "urn:uuid:66524416-85d4-4f02-915e-c70c0d5bb542", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "catenaXId" : "urn:uuid:a2bf8f8c-ea8f-457a-b2f2-71e9de49932d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "catenaXId" : "urn:uuid:c1caf694-4fec-4c5a-8058-ba508450cbf0", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "catenaXId" : "urn:uuid:ef7c034d-c083-4da5-8278-e553518354e8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "catenaXId" : "urn:uuid:202d3236-9f24-49c2-aeca-03dc524d7aca", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -111936,35 +111324,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "296324", + "orderNumber" : "357289", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "5460", + "referencedStandard" : "ISO", + "referencedStandardID" : "3529", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -111975,28 +111363,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -112011,7 +111399,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-867046467379395919343188", + "value" : "NO-583642165673004734306920", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -112022,7 +111410,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -112034,10 +111422,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "assetId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -112046,17 +111434,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9b3502fb-4137-4569-806f-9c91d4a544da", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:61092df9-ab62-42a7-b2c5-7ba113699f77", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -112065,17 +111453,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:185a4fcf-7340-48d8-b32c-e34a1ac7ff7b", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:48ffc285-94a1-4081-aaab-908817c76ee4", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "childassetId" : "urn:uuid:d031d403-c219-4ce4-842b-6defe9145812", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -112084,17 +111472,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:fab74cea-2b28-448a-82f4-cf8a68018087", + "ownerItemId" : "urn:uuid:b57bf999-fa01-4689-ba33-6c9f7145b567", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "childassetId" : "urn:uuid:7926ba88-d8ed-40e3-92e5-7e487370e2a0", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -112103,17 +111491,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2bd560c5-6f6a-4897-91ef-8e12cbe69f46", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:4fc52401-3086-4014-a0c5-d2083b9c2e4b", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "childassetId" : "urn:uuid:563ff16e-f30c-4f80-9f4a-8d05c7bf24e7", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -112122,17 +111510,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f9420cbc-700e-47b6-86f5-0e09f6e21687", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:7971dd60-ee90-44a1-84ea-a1c487ddeac9", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "childassetId" : "urn:uuid:346e40e4-78ba-465b-b648-902cc7ddf282", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -112141,17 +111529,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:29556c31-a6e0-4c19-b11d-bde92fb31779", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:678a579f-9474-4fd4-98ee-d8e743553cd4", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "childassetId" : "urn:uuid:b3df0c0f-a241-408c-bdc7-126627acc03a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -112160,17 +111548,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:fcd11560-75ec-459b-ad76-601049cfacaf", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:c5027fd2-d557-42a6-b459-604db7b73d40", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "childassetId" : "urn:uuid:66524416-85d4-4f02-915e-c70c0d5bb542", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -112179,17 +111567,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e09d57d2-0c2e-42a9-b695-e3a5191f082b", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:05790637-0c49-464d-b44c-efac96349c83", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "childassetId" : "urn:uuid:a2bf8f8c-ea8f-457a-b2f2-71e9de49932d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -112198,17 +111586,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4b5c89ee-5d84-4331-b4ef-15f04a727aca", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:98e090e7-a039-42c5-a291-02d25b82469c", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "childassetId" : "urn:uuid:c1caf694-4fec-4c5a-8058-ba508450cbf0", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -112217,17 +111605,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8f362f14-95d6-4b17-8f06-99f97549d351", + "ownerItemId" : "urn:uuid:e77c1bd9-f5c3-4605-9ec3-8bfbe6537c19", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "childassetId" : "urn:uuid:ef7c034d-c083-4da5-8278-e553518354e8", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -112236,38 +111624,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c5f07ed3-9c8f-4f31-b7c0-58297f97f30f", + "ownerItemId" : "urn:uuid:aea3a4d4-c6cb-4018-b88c-087bb9f23267", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "childassetId" : "urn:uuid:202d3236-9f24-49c2-aeca-03dc524d7aca", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -112493,7 +111863,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-867046467379395919343188", + "batteryIDDMCCode" : "NO-583642165673004734306920", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -112535,13 +111905,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2023-12-27", - "version" : 2, - "status" : "Invalid" + "issueDate" : "2023-10-03", + "version" : 2.9, + "status" : "Draft" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6324, + "diameter" : 229.6795, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -112549,22 +111919,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 15 + "value" : 17 } }, "commercial" : { - "placedOnMarket" : "2022-11-06", + "placedOnMarket" : "2022-04-19", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-867046467379395919343188", + "value" : "NO-583642165673004734306920", "key" : "PartInstanceID" } ], - "gtin" : " 78885933", + "gtin" : " 87359242", "additionalCode" : [ { "name" : "TARIC", - "value" : "394264016" + "value" : "764137838" } ] }, "sources" : { @@ -112586,7 +111956,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Sustainability", + "category" : "SubstanceOfConcern", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -112615,7 +111985,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-02-02", + "date" : "2023-12-22", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -112631,9 +112001,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 0.9146 ] + "left" : [ 8.2594 ] }, - "id" : "FO5164" + "id" : "WQ7259" } ] }, "additionalData" : [ { @@ -112659,9 +112029,9 @@ "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Manganese" + "name" : "Cobalt" } ], - "critical" : [ "Cobalt" ], + "critical" : [ "Lithium" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -112671,14 +112041,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 111 + "carbonContentTotal" : 113 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AYRE", + "importer" : "BPNL00000003AXS3", "manufacturer" : { - "facilityId" : "BPNL00000003AYRE", + "facilityId" : "BPNL00000003B2OM", "manufacturerId" : "BPNL00000003AVTH" } } @@ -112691,31 +112061,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "catenaXId" : "urn:uuid:d031d403-c219-4ce4-842b-6defe9145812", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -112730,7 +112116,7 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-06-16", + "currentStateOfHealthTimestamp" : "2020-01-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { @@ -112744,10 +112130,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "catenaXId" : "urn:uuid:d031d403-c219-4ce4-842b-6defe9145812", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "486113", + "orderNumber" : "247211", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -112756,13 +112142,13 @@ "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -112772,7 +112158,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "AS", - "referencedStandardID" : "9750", + "referencedStandardID" : "7986", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -112781,30 +112167,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -112819,7 +112205,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-527219620679419431905191", + "value" : "NO-584589060546938156743639", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -112830,7 +112216,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "catenaXId" : "urn:uuid:d031d403-c219-4ce4-842b-6defe9145812", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -112842,10 +112228,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "assetId" : "urn:uuid:d031d403-c219-4ce4-842b-6defe9145812", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -112854,17 +112240,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9f76b956-94c1-40af-bc0b-f775f5768aac", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:1784daba-446c-4b2d-9b18-28ea860f71f4", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -112877,24 +112263,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -113120,7 +112488,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-527219620679419431905191", + "batteryIDDMCCode" : "NO-584589060546938156743639", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -113139,31 +112507,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d031d403-c219-4ce4-842b-6defe9145812", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d031d403-c219-4ce4-842b-6defe9145812", + "parentItems" : [ { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "catenaXId" : "urn:uuid:7926ba88-d8ed-40e3-92e5-7e487370e2a0", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -113178,11 +112562,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-02-22", + "currentStateOfHealthTimestamp" : "2015-12-05", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthTimestamp" : "2024-03-06", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -113192,35 +112576,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "catenaXId" : "urn:uuid:7926ba88-d8ed-40e3-92e5-7e487370e2a0", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "576741", + "orderNumber" : "890820", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "7917", + "referencedStandard" : "EN", + "referencedStandardID" : "8283", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -113236,23 +112620,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -113267,7 +112651,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-617791177853609557272147", + "value" : "NO-097656155974844166092025", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -113278,7 +112662,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "catenaXId" : "urn:uuid:7926ba88-d8ed-40e3-92e5-7e487370e2a0", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -113293,7 +112677,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "assetId" : "urn:uuid:7926ba88-d8ed-40e3-92e5-7e487370e2a0", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -113302,17 +112686,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e01f7173-86fb-4daa-b205-a9b56a07da2d", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:05ccab85-fd03-4cd2-a9bc-2ee63a052a6f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -113325,24 +112709,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -113568,7 +112934,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-617791177853609557272147", + "batteryIDDMCCode" : "NO-097656155974844166092025", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -113587,31 +112953,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7926ba88-d8ed-40e3-92e5-7e487370e2a0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7926ba88-d8ed-40e3-92e5-7e487370e2a0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "catenaXId" : "urn:uuid:563ff16e-f30c-4f80-9f4a-8d05c7bf24e7", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -113626,11 +113008,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-07-02", + "currentStateOfHealthTimestamp" : "2017-05-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-27", + "currentStateOfHealthTimestamp" : "2024-03-27", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -113640,25 +113022,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "catenaXId" : "urn:uuid:563ff16e-f30c-4f80-9f4a-8d05c7bf24e7", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "250089", + "orderNumber" : "50931", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -113667,8 +113049,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "5129", + "referencedStandard" : "AS", + "referencedStandardID" : "1538", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -113680,21 +113062,21 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -113715,7 +113097,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-431960051195561035016450", + "value" : "NO-906720475287942484971848", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -113726,7 +113108,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "catenaXId" : "urn:uuid:563ff16e-f30c-4f80-9f4a-8d05c7bf24e7", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -113738,10 +113120,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "assetId" : "urn:uuid:563ff16e-f30c-4f80-9f4a-8d05c7bf24e7", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -113750,17 +113132,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6a5ac78c-93ff-475d-8d4f-73bdd745dfb7", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:dced43a7-05a2-4c7f-91aa-e9f04fc4a723", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -113773,24 +113155,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -114016,7 +113380,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-431960051195561035016450", + "batteryIDDMCCode" : "NO-906720475287942484971848", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -114035,31 +113399,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:563ff16e-f30c-4f80-9f4a-8d05c7bf24e7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:563ff16e-f30c-4f80-9f4a-8d05c7bf24e7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "catenaXId" : "urn:uuid:346e40e4-78ba-465b-b648-902cc7ddf282", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -114074,11 +113454,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-03-09", + "currentStateOfHealthTimestamp" : "2018-12-22", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -114088,25 +113468,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "catenaXId" : "urn:uuid:346e40e4-78ba-465b-b648-902cc7ddf282", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "57892", + "orderNumber" : "34849", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -114115,8 +113495,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "5839", + "referencedStandard" : "AISI", + "referencedStandardID" : "2147", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -114127,28 +113507,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -114163,7 +113543,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-642498843554646731896600", + "value" : "NO-864890239944843406247402", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -114174,7 +113554,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "catenaXId" : "urn:uuid:346e40e4-78ba-465b-b648-902cc7ddf282", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -114186,10 +113566,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "assetId" : "urn:uuid:346e40e4-78ba-465b-b648-902cc7ddf282", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -114198,17 +113578,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:fde1fc3c-d687-40a6-ab10-5330a445a477", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:8ea2a26f-8756-4f1e-9186-2a9e70afa77d", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -114221,24 +113601,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -114464,7 +113826,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-642498843554646731896600", + "batteryIDDMCCode" : "NO-864890239944843406247402", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -114483,31 +113845,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:346e40e4-78ba-465b-b648-902cc7ddf282", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:346e40e4-78ba-465b-b648-902cc7ddf282", + "parentItems" : [ { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "catenaXId" : "urn:uuid:b3df0c0f-a241-408c-bdc7-126627acc03a", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -114522,11 +113900,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-10-11", + "currentStateOfHealthTimestamp" : "2024-02-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -114536,35 +113914,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "catenaXId" : "urn:uuid:b3df0c0f-a241-408c-bdc7-126627acc03a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "839129", + "orderNumber" : "195073", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 8 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "4989", + "referencedStandard" : "GB", + "referencedStandardID" : "8647", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -114576,27 +113954,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -114611,7 +113989,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-475634520880851519671204", + "value" : "NO-420096744871300139960196", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -114622,7 +114000,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "catenaXId" : "urn:uuid:b3df0c0f-a241-408c-bdc7-126627acc03a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -114634,10 +114012,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "assetId" : "urn:uuid:b3df0c0f-a241-408c-bdc7-126627acc03a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -114646,17 +114024,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d92d17c4-9867-40c1-aff8-ccf6777effe7", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:96c560b0-8743-42f7-804b-c248e1c12245", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -114669,24 +114047,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -114912,7 +114272,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-475634520880851519671204", + "batteryIDDMCCode" : "NO-420096744871300139960196", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -114931,31 +114291,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b3df0c0f-a241-408c-bdc7-126627acc03a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b3df0c0f-a241-408c-bdc7-126627acc03a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "catenaXId" : "urn:uuid:66524416-85d4-4f02-915e-c70c0d5bb542", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -114970,11 +114346,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-01-08", + "currentStateOfHealthTimestamp" : "2017-05-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthTimestamp" : "2024-03-22", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -114984,35 +114360,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "catenaXId" : "urn:uuid:66524416-85d4-4f02-915e-c70c0d5bb542", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "73823", + "orderNumber" : "338099", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "AS", - "referencedStandardID" : "4218", + "referencedStandardID" : "2314", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -115023,22 +114399,22 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -115059,7 +114435,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-964473612808435756536485", + "value" : "NO-775017670642304020030227", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -115070,7 +114446,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "catenaXId" : "urn:uuid:66524416-85d4-4f02-915e-c70c0d5bb542", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -115082,10 +114458,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "assetId" : "urn:uuid:66524416-85d4-4f02-915e-c70c0d5bb542", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -115094,17 +114470,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a97420bd-45e7-4cc7-9f60-c990732828b9", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:44155d2e-ced2-422d-a04e-8ce39337306b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -115117,24 +114493,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -115360,7 +114718,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-964473612808435756536485", + "batteryIDDMCCode" : "NO-775017670642304020030227", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -115379,31 +114737,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:66524416-85d4-4f02-915e-c70c0d5bb542", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:66524416-85d4-4f02-915e-c70c0d5bb542", + "parentItems" : [ { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "catenaXId" : "urn:uuid:a2bf8f8c-ea8f-457a-b2f2-71e9de49932d", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -115418,11 +114792,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-02-03", + "currentStateOfHealthTimestamp" : "2020-12-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -115432,25 +114806,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "catenaXId" : "urn:uuid:a2bf8f8c-ea8f-457a-b2f2-71e9de49932d", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "530545", + "orderNumber" : "807100", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -115459,8 +114833,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "1441", + "referencedStandard" : "DIN", + "referencedStandardID" : "8492", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -115476,7 +114850,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -115486,13 +114860,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -115507,7 +114881,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-389701329773588536459130", + "value" : "NO-693651648079618727347715", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -115518,7 +114892,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "catenaXId" : "urn:uuid:a2bf8f8c-ea8f-457a-b2f2-71e9de49932d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -115530,10 +114904,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "assetId" : "urn:uuid:a2bf8f8c-ea8f-457a-b2f2-71e9de49932d", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -115542,17 +114916,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:28cdce65-60ca-44f7-9a05-3a292fc1e45a", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:35f4e506-a0df-4124-9918-baaf46c574aa", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -115565,24 +114939,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -115808,7 +115164,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-389701329773588536459130", + "batteryIDDMCCode" : "NO-693651648079618727347715", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -115827,31 +115183,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a2bf8f8c-ea8f-457a-b2f2-71e9de49932d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a2bf8f8c-ea8f-457a-b2f2-71e9de49932d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "catenaXId" : "urn:uuid:c1caf694-4fec-4c5a-8058-ba508450cbf0", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -115866,11 +115238,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-03-04", + "currentStateOfHealthTimestamp" : "2014-08-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-04", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -115880,35 +115252,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "catenaXId" : "urn:uuid:c1caf694-4fec-4c5a-8058-ba508450cbf0", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "208638", + "orderNumber" : "872635", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "7389", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1816", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -115920,11 +115292,11 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -115934,13 +115306,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -115955,7 +115327,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-265855892739828724648190", + "value" : "NO-828741902571921103739667", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -115966,7 +115338,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "catenaXId" : "urn:uuid:c1caf694-4fec-4c5a-8058-ba508450cbf0", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -115978,10 +115350,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "assetId" : "urn:uuid:c1caf694-4fec-4c5a-8058-ba508450cbf0", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -115990,17 +115362,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:896cf53b-e577-4954-b7e1-06e33124c6dd", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:98ff8e5d-8a1c-4545-9c90-31054fbea6f4", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -116013,24 +115385,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -116256,7 +115610,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-265855892739828724648190", + "batteryIDDMCCode" : "NO-828741902571921103739667", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -116275,31 +115629,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c1caf694-4fec-4c5a-8058-ba508450cbf0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c1caf694-4fec-4c5a-8058-ba508450cbf0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "catenaXId" : "urn:uuid:ef7c034d-c083-4da5-8278-e553518354e8", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -116314,11 +115684,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-09-13", + "currentStateOfHealthTimestamp" : "2021-02-15", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-04", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -116328,35 +115698,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "catenaXId" : "urn:uuid:ef7c034d-c083-4da5-8278-e553518354e8", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "680948", + "orderNumber" : "590876", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "AISI", - "referencedStandardID" : "2281", + "referencedStandardID" : "2752", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -116365,24 +115735,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -116403,7 +115773,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-175875555612811823933211", + "value" : "NO-591321746588861481641977", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -116414,7 +115784,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "catenaXId" : "urn:uuid:ef7c034d-c083-4da5-8278-e553518354e8", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -116429,7 +115799,7 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "assetId" : "urn:uuid:ef7c034d-c083-4da5-8278-e553518354e8", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -116438,17 +115808,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8429cf4e-279a-4d09-97a6-8e28ac4f2ee1", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:322b83f1-c4b1-4e4d-b683-605244972787", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -116461,24 +115831,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -116704,7 +116056,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-175875555612811823933211", + "batteryIDDMCCode" : "NO-591321746588861481641977", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -116723,31 +116075,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ef7c034d-c083-4da5-8278-e553518354e8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ef7c034d-c083-4da5-8278-e553518354e8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "catenaXId" : "urn:uuid:202d3236-9f24-49c2-aeca-03dc524d7aca", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -116762,11 +116130,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-09-25", + "currentStateOfHealthTimestamp" : "2016-09-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -116776,35 +116144,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "catenaXId" : "urn:uuid:202d3236-9f24-49c2-aeca-03dc524d7aca", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "160595", + "orderNumber" : "353964", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 9 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "2208", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "3644", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -116813,10 +116181,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -116826,11 +116194,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -116851,7 +116219,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-903660072999464921495584", + "value" : "NO-976405785842786943411308", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -116862,7 +116230,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "catenaXId" : "urn:uuid:202d3236-9f24-49c2-aeca-03dc524d7aca", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -116877,7 +116245,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "assetId" : "urn:uuid:202d3236-9f24-49c2-aeca-03dc524d7aca", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -116886,17 +116254,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4832e797-d414-4c54-a3c5-d82dcab59894", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:bd6aa846-8fc4-42c5-9dbc-6112397485c1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -116909,24 +116277,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -117152,7 +116502,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-903660072999464921495584", + "batteryIDDMCCode" : "NO-976405785842786943411308", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -117171,28 +116521,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:202d3236-9f24-49c2-aeca-03dc524d7aca", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:202d3236-9f24-49c2-aeca-03dc524d7aca", + "parentItems" : [ { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 57, + "recycledContent" : 50, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -117202,7 +116568,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 43, + "recycledContent" : 46, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -117212,7 +116578,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 83, + "recycledContent" : 75, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -117223,112 +116589,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "catenaXId" : "urn:uuid:c9139804-29eb-4fa3-a6ec-7bef29cb04e9", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "catenaXId" : "urn:uuid:e680cf49-7668-47a2-9935-10c7d10ed841", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "catenaXId" : "urn:uuid:c7687b0e-924f-46bc-8828-25dd4ae259bf", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "catenaXId" : "urn:uuid:37d38939-c388-4787-8ee8-58118cbc139b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "catenaXId" : "urn:uuid:e675f5ea-ddf6-4cab-83be-be50060425d0", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "catenaXId" : "urn:uuid:4779217b-2be4-4eb7-9e86-956c4114f6fb", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "catenaXId" : "urn:uuid:bf7d6151-235c-445f-8037-aa5897c4ea1b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "catenaXId" : "urn:uuid:84cba51a-9a25-46a6-b6af-8605d42470fc", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "catenaXId" : "urn:uuid:8eba4762-f201-4e56-bdb2-9ce091063a34", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "catenaXId" : "urn:uuid:d82ee6c8-c677-4fb3-a447-7b8136e918df", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -117336,35 +116702,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "38931", + "orderNumber" : "625618", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "IS", - "referencedStandardID" : "8142", + "referencedStandardID" : "6656", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -117375,8 +116741,8 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -117386,17 +116752,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -117411,7 +116777,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-791731492084972438194145", + "value" : "NO-977339448342507377280022", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -117422,7 +116788,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -117434,10 +116800,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "assetId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -117446,17 +116812,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:68bddd21-7586-4158-95c2-9c89a88e558c", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:99924e77-ce1b-4e76-bcb1-660f4a13b4f8", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -117465,17 +116831,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:61022aa8-8094-4f27-9c40-5cdd19dddcac", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:f03f204a-a0ad-467f-a4e0-79704ffe8132", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "childassetId" : "urn:uuid:c9139804-29eb-4fa3-a6ec-7bef29cb04e9", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -117484,17 +116850,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4357a21d-09ee-4218-9db8-234ca45a8daf", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:835b0483-3868-4886-9b9c-06b048ec3c82", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "childassetId" : "urn:uuid:e680cf49-7668-47a2-9935-10c7d10ed841", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -117503,17 +116869,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ec38531c-4f82-4fb2-a8fa-d3d4912a9f63", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:66066b54-9051-43bc-831a-226f9c3f86b1", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "childassetId" : "urn:uuid:c7687b0e-924f-46bc-8828-25dd4ae259bf", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -117522,17 +116888,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:51530b79-d709-43f7-a481-b30b2d75c6a6", + "ownerItemId" : "urn:uuid:077ec265-60d4-4e30-af2b-571687ccbf32", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "childassetId" : "urn:uuid:37d38939-c388-4787-8ee8-58118cbc139b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -117541,17 +116907,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:708f39f2-a4fd-4c52-957e-136d8fffd699", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:051c27f9-ec03-4eb4-ad50-56503c1d2358", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "childassetId" : "urn:uuid:e675f5ea-ddf6-4cab-83be-be50060425d0", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -117560,17 +116926,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6ee407d0-250a-45d6-892e-26068c3a8362", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:b99e5ddd-b0ce-4fe7-b097-172950372af0", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "childassetId" : "urn:uuid:4779217b-2be4-4eb7-9e86-956c4114f6fb", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -117579,17 +116945,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:47c7d8b7-027a-4164-a997-3dbeba5a50e1", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:fc354d99-903a-4b21-8f26-a72cc5e91c9b", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "childassetId" : "urn:uuid:bf7d6151-235c-445f-8037-aa5897c4ea1b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -117598,17 +116964,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2b65d05f-3c67-4001-a36e-ff7766fb146a", + "ownerItemId" : "urn:uuid:6eae28fe-a021-4bf2-af3a-589636e7b8fc", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "childassetId" : "urn:uuid:84cba51a-9a25-46a6-b6af-8605d42470fc", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -117617,17 +116983,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1c117fd9-628e-482f-85ee-9fbe4eb43211", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:37741788-398b-43c6-9cb0-897f3769cf66", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "childassetId" : "urn:uuid:8eba4762-f201-4e56-bdb2-9ce091063a34", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -117636,38 +117002,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:475bd658-600d-41b1-a20b-4e110cba6118", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:bf59c109-169d-45b7-b7dd-37fb475b735e", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "childassetId" : "urn:uuid:d82ee6c8-c677-4fb3-a447-7b8136e918df", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -117893,7 +117241,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-791731492084972438194145", + "batteryIDDMCCode" : "NO-977339448342507377280022", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -117935,13 +117283,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2024-01-24", - "version" : 2.7, + "issueDate" : "2023-04-19", + "version" : 2.5, "status" : "Approved" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6739, + "diameter" : 229.66819999999998, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -117953,18 +117301,18 @@ } }, "commercial" : { - "placedOnMarket" : "2023-12-28", + "placedOnMarket" : "2022-03-10", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-791731492084972438194145", + "value" : "NO-977339448342507377280022", "key" : "PartInstanceID" } ], - "gtin" : " 58660936", + "gtin" : " 20505536", "additionalCode" : [ { "name" : "TARIC", - "value" : "971564677" + "value" : "742277870" } ] }, "sources" : { @@ -117986,7 +117334,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Passport", + "category" : "Sustainability", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -118015,7 +117363,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-02-26", + "date" : "2023-10-03", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -118031,9 +117379,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 0.2396 ] + "left" : [ 8.188 ] }, - "id" : "VD3168" + "id" : "KS2646" } ] }, "additionalData" : [ { @@ -118056,10 +117404,10 @@ } ], "sustainability" : { "material" : [ { - "recycled" : false, + "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Cobalt" + "name" : "UV Varnish" } ], "critical" : [ "Cobalt" ], "carbonFootprint" : { @@ -118071,14 +117419,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 103 + "carbonContentTotal" : 108 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B2OM", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AVTH" } } @@ -118091,31 +117439,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "catenaXId" : "urn:uuid:c9139804-29eb-4fa3-a6ec-7bef29cb04e9", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -118130,11 +117494,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-11-01", + "currentStateOfHealthTimestamp" : "2022-06-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-14", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -118144,35 +117508,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "catenaXId" : "urn:uuid:c9139804-29eb-4fa3-a6ec-7bef29cb04e9", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "273853", + "orderNumber" : "101822", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "ASME", - "referencedStandardID" : "4715", + "referencedStandardID" : "5231", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -118181,10 +117545,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -118198,7 +117562,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -118219,7 +117583,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-045528680871181123527870", + "value" : "NO-649686248132682387519763", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -118230,7 +117594,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "catenaXId" : "urn:uuid:c9139804-29eb-4fa3-a6ec-7bef29cb04e9", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -118242,10 +117606,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "assetId" : "urn:uuid:c9139804-29eb-4fa3-a6ec-7bef29cb04e9", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -118254,17 +117618,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3aa2a2cf-30c1-41dd-ab51-4d55b3c37850", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:deb337a4-9774-48f3-91b2-8e32eeb8891f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -118277,24 +117641,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -118520,7 +117866,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-045528680871181123527870", + "batteryIDDMCCode" : "NO-649686248132682387519763", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -118539,31 +117885,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c9139804-29eb-4fa3-a6ec-7bef29cb04e9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c9139804-29eb-4fa3-a6ec-7bef29cb04e9", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "catenaXId" : "urn:uuid:e680cf49-7668-47a2-9935-10c7d10ed841", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -118578,11 +117940,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-11-06", + "currentStateOfHealthTimestamp" : "2015-02-13", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthTimestamp" : "2024-03-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -118592,35 +117954,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "catenaXId" : "urn:uuid:e680cf49-7668-47a2-9935-10c7d10ed841", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "712590", + "orderNumber" : "756091", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 8 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "7917", + "referencedStandard" : "IS", + "referencedStandardID" : "6293", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -118636,23 +117998,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -118667,7 +118029,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-432762596534102360005521", + "value" : "NO-932126621028416918869890", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -118678,7 +118040,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "catenaXId" : "urn:uuid:e680cf49-7668-47a2-9935-10c7d10ed841", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -118690,10 +118052,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "assetId" : "urn:uuid:e680cf49-7668-47a2-9935-10c7d10ed841", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -118702,17 +118064,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a38f1235-949a-4422-ad21-606efa26af11", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:6505867a-7ff3-43bc-8625-369963b7de7d", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -118725,24 +118087,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -118968,7 +118312,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-432762596534102360005521", + "batteryIDDMCCode" : "NO-932126621028416918869890", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -118987,31 +118331,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e680cf49-7668-47a2-9935-10c7d10ed841", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e680cf49-7668-47a2-9935-10c7d10ed841", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "catenaXId" : "urn:uuid:c7687b0e-924f-46bc-8828-25dd4ae259bf", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -119026,11 +118386,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-11-29", + "currentStateOfHealthTimestamp" : "2015-12-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-28", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -119040,35 +118400,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "catenaXId" : "urn:uuid:c7687b0e-924f-46bc-8828-25dd4ae259bf", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "416054", + "orderNumber" : "890129", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "JIS", - "referencedStandardID" : "6133", + "referencedStandardID" : "7095", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -119077,24 +118437,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -119115,7 +118475,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-773784648231452499786492", + "value" : "NO-265842576666662883131948", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -119126,7 +118486,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "catenaXId" : "urn:uuid:c7687b0e-924f-46bc-8828-25dd4ae259bf", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -119138,10 +118498,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "assetId" : "urn:uuid:c7687b0e-924f-46bc-8828-25dd4ae259bf", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -119150,17 +118510,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:08eb587a-3b9a-42e1-84d0-feb6fa9f3509", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:d0b87908-7a68-458b-abb1-cc8dccbb7c47", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -119173,24 +118533,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -119416,7 +118758,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-773784648231452499786492", + "batteryIDDMCCode" : "NO-265842576666662883131948", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -119435,31 +118777,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c7687b0e-924f-46bc-8828-25dd4ae259bf", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c7687b0e-924f-46bc-8828-25dd4ae259bf", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "catenaXId" : "urn:uuid:37d38939-c388-4787-8ee8-58118cbc139b", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -119474,11 +118832,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-02-15", + "currentStateOfHealthTimestamp" : "2020-05-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -119488,35 +118846,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "catenaXId" : "urn:uuid:37d38939-c388-4787-8ee8-58118cbc139b", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "203822", + "orderNumber" : "690979", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "1349", + "referencedStandard" : "JIS", + "referencedStandardID" : "9628", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -119525,10 +118883,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -119538,17 +118896,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -119563,7 +118921,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-931089020852644605885160", + "value" : "NO-408768191108077260382795", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -119574,7 +118932,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "catenaXId" : "urn:uuid:37d38939-c388-4787-8ee8-58118cbc139b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -119589,7 +118947,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "assetId" : "urn:uuid:37d38939-c388-4787-8ee8-58118cbc139b", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -119598,17 +118956,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0726b2ee-7b3c-4508-a61f-5f032a3dfc00", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:57b26378-3a89-4515-8f7e-4171cd6bcaa0", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -119621,24 +118979,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -119864,7 +119204,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-931089020852644605885160", + "batteryIDDMCCode" : "NO-408768191108077260382795", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -119883,31 +119223,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:37d38939-c388-4787-8ee8-58118cbc139b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:37d38939-c388-4787-8ee8-58118cbc139b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "catenaXId" : "urn:uuid:e675f5ea-ddf6-4cab-83be-be50060425d0", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -119922,11 +119278,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-07-09", + "currentStateOfHealthTimestamp" : "2022-02-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-04-01", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -119936,35 +119292,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "catenaXId" : "urn:uuid:e675f5ea-ddf6-4cab-83be-be50060425d0", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "51836", + "orderNumber" : "546714", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "2864", + "referencedStandard" : "AISI", + "referencedStandardID" : "9682", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -119976,7 +119332,7 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -119986,7 +119342,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -119996,7 +119352,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -120011,7 +119367,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-052559054522519128170672", + "value" : "NO-345960433403675209960230", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -120022,7 +119378,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "catenaXId" : "urn:uuid:e675f5ea-ddf6-4cab-83be-be50060425d0", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -120034,10 +119390,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "assetId" : "urn:uuid:e675f5ea-ddf6-4cab-83be-be50060425d0", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -120046,17 +119402,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c57cc6c4-e720-4aa8-a1e1-fab106760396", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:9f812e94-2647-4381-98d9-01f5728a0b6c", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -120069,24 +119425,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -120312,7 +119650,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-052559054522519128170672", + "batteryIDDMCCode" : "NO-345960433403675209960230", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -120331,31 +119669,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e675f5ea-ddf6-4cab-83be-be50060425d0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e675f5ea-ddf6-4cab-83be-be50060425d0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "catenaXId" : "urn:uuid:4779217b-2be4-4eb7-9e86-956c4114f6fb", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -120370,11 +119724,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-11-01", + "currentStateOfHealthTimestamp" : "2019-06-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -120384,35 +119738,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "catenaXId" : "urn:uuid:4779217b-2be4-4eb7-9e86-956c4114f6fb", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "702518", + "orderNumber" : "966631", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "9016", + "referencedStandard" : "AS", + "referencedStandardID" : "4531", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -120421,14 +119775,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -120438,13 +119792,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -120459,7 +119813,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-069888996325895048192020", + "value" : "NO-427371659239686645615774", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -120470,7 +119824,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "catenaXId" : "urn:uuid:4779217b-2be4-4eb7-9e86-956c4114f6fb", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -120482,10 +119836,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "assetId" : "urn:uuid:4779217b-2be4-4eb7-9e86-956c4114f6fb", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -120494,17 +119848,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4fecbf7e-15ce-407e-abb3-ea9279febdb7", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:951c6ae4-d855-4a05-9bef-ddce09bb2869", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -120517,24 +119871,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -120760,7 +120096,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-069888996325895048192020", + "batteryIDDMCCode" : "NO-427371659239686645615774", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -120779,31 +120115,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4779217b-2be4-4eb7-9e86-956c4114f6fb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4779217b-2be4-4eb7-9e86-956c4114f6fb", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "catenaXId" : "urn:uuid:bf7d6151-235c-445f-8037-aa5897c4ea1b", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -120818,11 +120170,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-10-11", + "currentStateOfHealthTimestamp" : "2016-08-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthTimestamp" : "2024-03-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -120832,23 +120184,23 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "catenaXId" : "urn:uuid:bf7d6151-235c-445f-8037-aa5897c4ea1b", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "40243", + "orderNumber" : "934316", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, @@ -120859,8 +120211,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "7525", + "referencedStandard" : "AISI", + "referencedStandardID" : "1020", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -120869,30 +120221,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -120907,7 +120259,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-726411710200643729429321", + "value" : "NO-657784086680049310074224", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -120918,7 +120270,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "catenaXId" : "urn:uuid:bf7d6151-235c-445f-8037-aa5897c4ea1b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -120930,10 +120282,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "assetId" : "urn:uuid:bf7d6151-235c-445f-8037-aa5897c4ea1b", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -120942,17 +120294,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:61a2e795-3787-4bd2-82be-f3b2a77bbfeb", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:685b60eb-1d97-4bf1-b22b-cc265a9c49c3", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -120965,24 +120317,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -121208,7 +120542,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-726411710200643729429321", + "batteryIDDMCCode" : "NO-657784086680049310074224", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -121227,31 +120561,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bf7d6151-235c-445f-8037-aa5897c4ea1b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bf7d6151-235c-445f-8037-aa5897c4ea1b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "catenaXId" : "urn:uuid:84cba51a-9a25-46a6-b6af-8605d42470fc", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -121266,11 +120616,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-03-25", + "currentStateOfHealthTimestamp" : "2019-08-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-13", + "currentStateOfHealthTimestamp" : "2024-03-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -121280,23 +120630,23 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "catenaXId" : "urn:uuid:84cba51a-9a25-46a6-b6af-8605d42470fc", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "363896", + "orderNumber" : "648610", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -121307,8 +120657,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "6846", + "referencedStandard" : "ASME", + "referencedStandardID" : "4674", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -121317,20 +120667,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -121340,7 +120690,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -121355,7 +120705,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-778428442049642183418940", + "value" : "NO-985917467897435611472151", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -121366,7 +120716,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "catenaXId" : "urn:uuid:84cba51a-9a25-46a6-b6af-8605d42470fc", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -121381,7 +120731,7 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "assetId" : "urn:uuid:84cba51a-9a25-46a6-b6af-8605d42470fc", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -121390,17 +120740,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9097c151-5813-4b55-b756-8aabc22824eb", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:dd4ce224-0297-45c5-ace5-33fb18d5572f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -121413,24 +120763,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -121656,7 +120988,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-778428442049642183418940", + "batteryIDDMCCode" : "NO-985917467897435611472151", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -121675,31 +121007,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:84cba51a-9a25-46a6-b6af-8605d42470fc", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:84cba51a-9a25-46a6-b6af-8605d42470fc", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "catenaXId" : "urn:uuid:8eba4762-f201-4e56-bdb2-9ce091063a34", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -121714,11 +121062,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-09-10", + "currentStateOfHealthTimestamp" : "2020-04-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-01", + "currentStateOfHealthTimestamp" : "2024-03-22", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -121728,25 +121076,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "catenaXId" : "urn:uuid:8eba4762-f201-4e56-bdb2-9ce091063a34", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "926923", + "orderNumber" : "90799", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -121755,8 +121103,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "7022", + "referencedStandard" : "AS", + "referencedStandardID" : "9045", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -121765,30 +121113,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -121803,7 +121151,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-876479343707965086240559", + "value" : "NO-402366524753095150071304", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -121814,7 +121162,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "catenaXId" : "urn:uuid:8eba4762-f201-4e56-bdb2-9ce091063a34", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -121826,10 +121174,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "assetId" : "urn:uuid:8eba4762-f201-4e56-bdb2-9ce091063a34", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -121838,17 +121186,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5cf0de64-f33c-4657-8529-4d161c907012", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:1dd3496c-4475-4cc7-8c2b-13015afb9534", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -121861,24 +121209,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -122104,7 +121434,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-876479343707965086240559", + "batteryIDDMCCode" : "NO-402366524753095150071304", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -122123,31 +121453,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8eba4762-f201-4e56-bdb2-9ce091063a34", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8eba4762-f201-4e56-bdb2-9ce091063a34", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "catenaXId" : "urn:uuid:d82ee6c8-c677-4fb3-a447-7b8136e918df", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -122162,11 +121508,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-11-16", + "currentStateOfHealthTimestamp" : "2018-10-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-14", + "currentStateOfHealthTimestamp" : "2024-03-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -122176,35 +121522,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "catenaXId" : "urn:uuid:d82ee6c8-c677-4fb3-a447-7b8136e918df", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "623430", + "orderNumber" : "965940", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "4536", + "referencedStandard" : "AS", + "referencedStandardID" : "5867", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -122215,12 +121561,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -122230,13 +121576,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -122251,7 +121597,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-724113540825337678971966", + "value" : "NO-391895037671891491068331", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -122262,7 +121608,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "catenaXId" : "urn:uuid:d82ee6c8-c677-4fb3-a447-7b8136e918df", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -122274,10 +121620,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "assetId" : "urn:uuid:d82ee6c8-c677-4fb3-a447-7b8136e918df", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -122286,17 +121632,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:90b56fcc-07bc-4939-b0cc-c4a021760305", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:05b382c3-045c-4d5e-b480-1857d969b4d6", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -122309,24 +121655,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -122552,7 +121880,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-724113540825337678971966", + "batteryIDDMCCode" : "NO-391895037671891491068331", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -122571,28 +121899,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d82ee6c8-c677-4fb3-a447-7b8136e918df", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d82ee6c8-c677-4fb3-a447-7b8136e918df", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Iron", - "recycledContent" : 85, + "recycledContent" : 22, "materialClass" : "1.1", "quantity" : { "unit" : "unit:kilogram", @@ -122602,7 +121946,7 @@ "materialAbbreviation" : "IR334" }, { "materialName" : "Polyethylen", - "recycledContent" : 64, + "recycledContent" : 38, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -122612,7 +121956,7 @@ "materialAbbreviation" : "PE221" }, { "materialName" : "Polyamid6", - "recycledContent" : 24, + "recycledContent" : 4, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -122622,7 +121966,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Aluminium", - "recycledContent" : 68, + "recycledContent" : 39, "materialClass" : "2.1", "quantity" : { "unit" : "unit:kilogram", @@ -122632,7 +121976,7 @@ "materialAbbreviation" : "ALU331" }, { "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", - "recycledContent" : 23, + "recycledContent" : 53, "materialClass" : "0.7", "quantity" : { "unit" : "unit:kilogram", @@ -122642,7 +121986,7 @@ "materialAbbreviation" : "W123" }, { "materialName" : "Glue", - "recycledContent" : 29, + "recycledContent" : 8, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -122652,7 +121996,7 @@ "materialAbbreviation" : "GL338" }, { "materialName" : "Carbon Steel", - "recycledContent" : 57, + "recycledContent" : 42, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -122662,7 +122006,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Cooper", - "recycledContent" : 9, + "recycledContent" : 8, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -122672,7 +122016,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Rubber", - "recycledContent" : 65, + "recycledContent" : 88, "materialClass" : "5.3", "quantity" : { "unit" : "unit:kilogram", @@ -122682,7 +122026,7 @@ "materialAbbreviation" : "R22" }, { "materialName" : "Textiles", - "recycledContent" : 22, + "recycledContent" : 55, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:kilogram", @@ -122693,322 +122037,322 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", "childItems" : [ { - "catenaXId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", + "catenaXId" : "urn:uuid:79d62c1d-b561-4392-8fe9-898d937f97b7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "catenaXId" : "urn:uuid:58b1972a-2f60-4e2c-8fe8-85c6aa14d753", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "catenaXId" : "urn:uuid:f1cab4e5-3050-45ee-b222-f24eb188e14c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", + "catenaXId" : "urn:uuid:d21f6082-a7b9-4fe6-b8ce-45938aeee8b8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", + "catenaXId" : "urn:uuid:0728656f-8f42-4584-906b-7e99ae9734fa", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", + "catenaXId" : "urn:uuid:89adacb8-e1d5-415f-adc0-494d840a749f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", + "catenaXId" : "urn:uuid:9fcb541b-698a-40d5-a998-fd2b08a25e5e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", + "catenaXId" : "urn:uuid:65c12779-fe7b-480b-bcae-37de98aab505", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", + "catenaXId" : "urn:uuid:8f28ed67-e3a3-48e4-ae5c-352a8490546d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", + "catenaXId" : "urn:uuid:e62a465c-d7c9-4596-ab6b-370ef4751944", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", + "catenaXId" : "urn:uuid:46266bc3-7fc0-4dc5-9c4c-166129334fbc", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", + "catenaXId" : "urn:uuid:06be54bc-8899-4288-a13a-113d9f3dddc7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", + "catenaXId" : "urn:uuid:a269a3e6-db15-47e5-99de-46318eb1892c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", + "catenaXId" : "urn:uuid:9245da08-969c-4d37-a071-6b4986b56c1a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", + "catenaXId" : "urn:uuid:50d76011-c285-4d73-936b-e54768ab4bd5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", + "catenaXId" : "urn:uuid:9425f1ac-6908-424e-8f56-c8ea4433e0de", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", + "catenaXId" : "urn:uuid:62ab53a5-d7e3-4862-8e32-e6155d6021b2", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", + "catenaXId" : "urn:uuid:1f07ab5c-54f1-489b-b658-962d02de43c8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", + "catenaXId" : "urn:uuid:62cdb1a1-5668-4d4d-9405-08815b0a44e1", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", + "catenaXId" : "urn:uuid:e2599d37-eeae-4dc6-a8c0-540b10fc754f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", + "catenaXId" : "urn:uuid:7ae121a2-aeb3-4e54-9792-00b8a586ce99", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", + "catenaXId" : "urn:uuid:1cd0e175-3f84-4140-8a8e-bd4efdc9765e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", + "catenaXId" : "urn:uuid:72fe5c32-18ea-4c08-92a3-21355e9d29dc", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", + "catenaXId" : "urn:uuid:6f01feea-55c2-46c5-a455-d6ed95eff9a2", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", + "catenaXId" : "urn:uuid:6dceae77-9d5d-4165-90bc-e17d7f6d1727", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", + "catenaXId" : "urn:uuid:269730ad-0db1-4422-986a-b06f3a0ce671", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", + "catenaXId" : "urn:uuid:f38f7ec3-dcdc-41b2-9a09-659179eb6278", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", + "catenaXId" : "urn:uuid:f04fbd63-685f-41e7-bebf-ec0aafb77fe1", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", + "catenaXId" : "urn:uuid:2590bb8f-f847-4bf1-9cd4-7c34dcf9b827", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "catenaXId" : "urn:uuid:11cb3621-2f78-4d24-8e25-b77abe0fc480", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "catenaXId" : "urn:uuid:295ea608-eafc-4984-a377-4d7ce088194f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B5MJ", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -123016,33 +122360,33 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "XH-93", + "value" : "PC-28", "key" : "manufacturerPartId" }, { - "value" : "OMALJMMEXIGNTJZQM", + "value" : "OMAVHOPORUNZXBLLA", "key" : "partInstanceId" }, { - "value" : "OMALJMMEXIGNTJZQM", + "value" : "OMAVHOPORUNZXBLLA", "key" : "van" } ], "manufacturingInformation" : { - "date" : "2016-03-06T12:29:16.000Z", + "date" : "2014-05-20T04:08:53.000Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", "partTypeInformation" : { - "manufacturerPartId" : "XH-93", + "manufacturerPartId" : "PC-28", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -123050,17 +122394,17 @@ } ], "nameAtManufacturer" : "Vehicle Fully Electric" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "04", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -123071,8 +122415,8 @@ } } ], "urn:samm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Mehrzweckfahrzeug", - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "bodyVariant" : "Pkw-Pick-up", + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", "engine" : { "size" : 2998, "power" : 143 @@ -123086,43 +122430,43 @@ "description" : "security plus", "group" : "special equipment" }, { - "code" : "S763C", - "description" : "sport package", + "code" : "S218A", + "description" : "sport automatic transmission", "group" : "special equipment" }, { - "code" : "A01CR", - "description" : "remote engine start", + "code" : "B298B", + "description" : "keyless entry", "group" : "special equipment" }, { - "code" : "C247R", - "description" : "trailer hitch", + "code" : "S2AVB", + "description" : "adaptive drive", "group" : "special equipment" } ], "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", "mileage" : [ { "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2023-10-09", + "mileageTimestamp" : "2023-02-27", "mileageDistance" : 120000 } ] } ] }, { - "catenaXId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", + "catenaXId" : "urn:uuid:79d62c1d-b561-4392-8fe9-898d937f97b7", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "885363", + "orderNumber" : "287163", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -123133,8 +122477,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "3294", + "referencedStandard" : "JIS", + "referencedStandardID" : "9167", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -123146,27 +122490,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -123181,7 +122525,7 @@ "value" : "73849201-61", "key" : "manufacturerPartId" }, { - "value" : "NO-131732937300126776815176", + "value" : "NO-140816701374400389504456", "key" : "partInstanceId" }, { "value" : "Company 10", @@ -123198,7 +122542,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", + "catenaXId" : "urn:uuid:79d62c1d-b561-4392-8fe9-898d937f97b7", "partTypeInformation" : { "manufacturerPartId" : "73849201-61", "customerPartId" : "73849201-61", @@ -123210,22 +122554,22 @@ "nameAtManufacturer" : "Catalysator", "nameAtCustomer" : "Catalysator" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", + "assetId" : "urn:uuid:79d62c1d-b561-4392-8fe9-898d937f97b7", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", + "catenaXId" : "urn:uuid:79d62c1d-b561-4392-8fe9-898d937f97b7", "partTypeInformation" : { "ownerPartId" : "73849201-61", - "partVersion" : "05", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Catalysator", "partClassification" : [ { @@ -123235,31 +122579,29 @@ "nameAtOwner" : "Catalysator" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:79d62c1d-b561-4392-8fe9-898d937f97b7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "catenaXId" : "urn:uuid:58b1972a-2f60-4e2c-8fe8-85c6aa14d753", "childItems" : [ { - "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "catenaXId" : "urn:uuid:aa0e0548-6e86-4825-a035-5d6d39fc0db7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000000BJTL", @@ -123267,35 +122609,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "catenaXId" : "urn:uuid:58b1972a-2f60-4e2c-8fe8-85c6aa14d753", "bpnl" : "BPNL00000003CSGV", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "669818", + "orderNumber" : "914809", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "3527", + "referencedStandard" : "ISO", + "referencedStandardID" : "5131", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -123307,27 +122649,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -123342,7 +122684,7 @@ "value" : "22782277-50", "key" : "manufacturerPartId" }, { - "value" : "NO-797084545053066023664316", + "value" : "NO-145020220675460346495389", "key" : "partInstanceId" }, { "value" : "Company 3", @@ -123359,7 +122701,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "catenaXId" : "urn:uuid:58b1972a-2f60-4e2c-8fe8-85c6aa14d753", "partTypeInformation" : { "manufacturerPartId" : "22782277-50", "customerPartId" : "22782277-50", @@ -123371,10 +122713,10 @@ "nameAtManufacturer" : "Door f-l", "nameAtCustomer" : "Door front-left" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "assetId" : "urn:uuid:58b1972a-2f60-4e2c-8fe8-85c6aa14d753", "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { "item" : [ { @@ -123383,29 +122725,29 @@ "key" : "BPNL00000003CSGV:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:64b5d052-0bbf-42d3-81a9-bf7e0e8d76b7", + "ownerItemId" : "urn:uuid:2278984e-657b-49ca-9382-d4646f207dcd", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "childassetId" : "urn:uuid:aa0e0548-6e86-4825-a035-5d6d39fc0db7", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "catenaXId" : "urn:uuid:58b1972a-2f60-4e2c-8fe8-85c6aa14d753", "partTypeInformation" : { "ownerPartId" : "22782277-50", - "partVersion" : "02", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Door front-left", "partClassification" : [ { @@ -123415,27 +122757,25 @@ "nameAtOwner" : "Door front-left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:58b1972a-2f60-4e2c-8fe8-85c6aa14d753", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003CSGV" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "76426224RGI", + "value" : "90313542BCD", "key" : "jisNumber" } ], "manufacturingInformation" : { @@ -123446,7 +122786,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "catenaXId" : "urn:uuid:aa0e0548-6e86-4825-a035-5d6d39fc0db7", "partTypeInformation" : { "manufacturerPartId" : "123-0.740-3434-A", "customerPartId" : "PRT-12345", @@ -123459,19 +122799,19 @@ "nameAtCustomer" : "side element A" } } ], - "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "catenaXId" : "urn:uuid:aa0e0548-6e86-4825-a035-5d6d39fc0db7", "bpnl" : "BPNL00000000BJTL", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "171827", + "orderNumber" : "127885", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -123482,12 +122822,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "1908", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "4019", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -123496,30 +122836,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -123534,7 +122874,7 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-529712629956906801236711", + "value" : "NO-634391319433688898264208", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -123545,7 +122885,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "catenaXId" : "urn:uuid:aa0e0548-6e86-4825-a035-5d6d39fc0db7", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", @@ -123560,16 +122900,16 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "assetId" : "urn:uuid:aa0e0548-6e86-4825-a035-5d6d39fc0db7", "manufacturerId" : "BPNL00000000BJTL", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "catenaXId" : "urn:uuid:aa0e0548-6e86-4825-a035-5d6d39fc0db7", "partTypeInformation" : { "ownerPartId" : "95657762-59", "partVersion" : "05", @@ -123582,31 +122922,29 @@ "nameAtOwner" : "Door Key" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:aa0e0548-6e86-4825-a035-5d6d39fc0db7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:58b1972a-2f60-4e2c-8fe8-85c6aa14d753", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000000BJTL" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "catenaXId" : "urn:uuid:f1cab4e5-3050-45ee-b222-f24eb188e14c", "childItems" : [ { - "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "catenaXId" : "urn:uuid:a24e7872-8230-480f-8bd7-4650e3e87ad3", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000000BJTL", @@ -123614,35 +122952,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "catenaXId" : "urn:uuid:f1cab4e5-3050-45ee-b222-f24eb188e14c", "bpnl" : "BPNL00000003CSGV", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "746375", + "orderNumber" : "376670", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "3597", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "4792", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -123654,11 +122992,11 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -123668,13 +123006,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -123689,7 +123027,7 @@ "value" : "95657362-64", "key" : "manufacturerPartId" }, { - "value" : "NO-864754207488573774479092", + "value" : "NO-757808915893862992607056", "key" : "partInstanceId" }, { "value" : "Company 4", @@ -123706,7 +123044,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "catenaXId" : "urn:uuid:f1cab4e5-3050-45ee-b222-f24eb188e14c", "partTypeInformation" : { "manufacturerPartId" : "33740332-54", "customerPartId" : "33740332-54", @@ -123718,10 +123056,10 @@ "nameAtManufacturer" : "Door f-r", "nameAtCustomer" : "Door front-right" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "assetId" : "urn:uuid:f1cab4e5-3050-45ee-b222-f24eb188e14c", "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { "item" : [ { @@ -123730,29 +123068,29 @@ "key" : "BPNL00000003CSGV:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:17a27633-730c-4aba-a8f9-ebfaaa3ca92a", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:97c049c2-15f4-4569-b90e-8ccd8d26355d", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "childassetId" : "urn:uuid:a24e7872-8230-480f-8bd7-4650e3e87ad3", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "catenaXId" : "urn:uuid:f1cab4e5-3050-45ee-b222-f24eb188e14c", "partTypeInformation" : { "ownerPartId" : "33740332-54", - "partVersion" : "04", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Door front-right", "partClassification" : [ { @@ -123762,27 +123100,25 @@ "nameAtOwner" : "Door front-right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f1cab4e5-3050-45ee-b222-f24eb188e14c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003CSGV" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "26807698BLW", + "value" : "46126318YME", "key" : "jisNumber" } ], "manufacturingInformation" : { @@ -123793,7 +123129,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "catenaXId" : "urn:uuid:a24e7872-8230-480f-8bd7-4650e3e87ad3", "partTypeInformation" : { "manufacturerPartId" : "123-0.740-3434-A", "customerPartId" : "PRT-12345", @@ -123806,35 +123142,35 @@ "nameAtCustomer" : "side element A" } } ], - "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "catenaXId" : "urn:uuid:a24e7872-8230-480f-8bd7-4650e3e87ad3", "bpnl" : "BPNL00000000BJTL", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "928025", + "orderNumber" : "397061", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "8284", + "referencedStandard" : "ASME", + "referencedStandardID" : "1192", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -123850,7 +123186,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -123881,7 +123217,7 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-827581289882481230478999", + "value" : "NO-697788953263381055413466", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -123892,7 +123228,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "catenaXId" : "urn:uuid:a24e7872-8230-480f-8bd7-4650e3e87ad3", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", @@ -123904,22 +123240,22 @@ "nameAtManufacturer" : "Door Key", "nameAtCustomer" : "Door Key" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "assetId" : "urn:uuid:a24e7872-8230-480f-8bd7-4650e3e87ad3", "manufacturerId" : "BPNL00000000BJTL", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "catenaXId" : "urn:uuid:a24e7872-8230-480f-8bd7-4650e3e87ad3", "partTypeInformation" : { "ownerPartId" : "95657762-59", - "partVersion" : "03", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Door Key", "partClassification" : [ { @@ -123929,53 +123265,51 @@ "nameAtOwner" : "Door Key" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a24e7872-8230-480f-8bd7-4650e3e87ad3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f1cab4e5-3050-45ee-b222-f24eb188e14c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000000BJTL" ] } ] }, { - "catenaXId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", + "catenaXId" : "urn:uuid:d21f6082-a7b9-4fe6-b8ce-45938aeee8b8", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "519156", + "orderNumber" : "73412", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "4527", + "referencedStandard" : "ISO", + "referencedStandardID" : "2070", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -123986,12 +123320,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -124001,13 +123335,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -124022,7 +123356,7 @@ "value" : "15635759-16", "key" : "manufacturerPartId" }, { - "value" : "NO-406065790934879225608594", + "value" : "NO-653612956947623601612006", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -124033,7 +123367,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", + "catenaXId" : "urn:uuid:d21f6082-a7b9-4fe6-b8ce-45938aeee8b8", "partTypeInformation" : { "manufacturerPartId" : "15635759-16", "customerPartId" : "15635759-16", @@ -124045,22 +123379,22 @@ "nameAtManufacturer" : "Door r-l", "nameAtCustomer" : "Door rear-left" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", + "assetId" : "urn:uuid:d21f6082-a7b9-4fe6-b8ce-45938aeee8b8", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", + "catenaXId" : "urn:uuid:d21f6082-a7b9-4fe6-b8ce-45938aeee8b8", "partTypeInformation" : { "ownerPartId" : "15635759-16", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Door rear-left", "partClassification" : [ { @@ -124070,53 +123404,51 @@ "nameAtOwner" : "Door rear-left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d21f6082-a7b9-4fe6-b8ce-45938aeee8b8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", + "catenaXId" : "urn:uuid:0728656f-8f42-4584-906b-7e99ae9734fa", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "39570", + "orderNumber" : "948915", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 9 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "9104", + "referencedStandard" : "ISO", + "referencedStandardID" : "3809", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -124125,30 +123457,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -124163,7 +123495,7 @@ "value" : "28673126-98", "key" : "manufacturerPartId" }, { - "value" : "NO-796167989573498912686635", + "value" : "NO-846584993787476923610651", "key" : "partInstanceId" }, { "value" : "Company 5", @@ -124180,7 +123512,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", + "catenaXId" : "urn:uuid:0728656f-8f42-4584-906b-7e99ae9734fa", "partTypeInformation" : { "manufacturerPartId" : "28673126-98", "customerPartId" : "28673126-98", @@ -124195,16 +123527,16 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", + "assetId" : "urn:uuid:0728656f-8f42-4584-906b-7e99ae9734fa", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", + "catenaXId" : "urn:uuid:0728656f-8f42-4584-906b-7e99ae9734fa", "partTypeInformation" : { "ownerPartId" : "28673126-98", "partVersion" : "02", @@ -124217,53 +123549,51 @@ "nameAtOwner" : "Door rear-right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0728656f-8f42-4584-906b-7e99ae9734fa", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", + "catenaXId" : "urn:uuid:89adacb8-e1d5-415f-adc0-494d840a749f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "273750", + "orderNumber" : "293657", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "5752", + "referencedStandard" : "JIS", + "referencedStandardID" : "4889", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -124272,24 +123602,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -124310,7 +123640,7 @@ "value" : "94421589-82", "key" : "manufacturerPartId" }, { - "value" : "NO-388537891916977013611943", + "value" : "NO-324318893440632794409402", "key" : "partInstanceId" }, { "value" : "Company 6", @@ -124327,7 +123657,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", + "catenaXId" : "urn:uuid:89adacb8-e1d5-415f-adc0-494d840a749f", "partTypeInformation" : { "manufacturerPartId" : "94421589-82", "customerPartId" : "94421589-82", @@ -124339,22 +123669,22 @@ "nameAtManufacturer" : "Engine hood", "nameAtCustomer" : "Engine hood" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", + "assetId" : "urn:uuid:89adacb8-e1d5-415f-adc0-494d840a749f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", + "catenaXId" : "urn:uuid:89adacb8-e1d5-415f-adc0-494d840a749f", "partTypeInformation" : { "ownerPartId" : "94421589-82", - "partVersion" : "01", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Engine hood", "partClassification" : [ { @@ -124364,41 +123694,39 @@ "nameAtOwner" : "Engine hood" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:89adacb8-e1d5-415f-adc0-494d840a749f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", + "catenaXId" : "urn:uuid:9fcb541b-698a-40d5-a998-fd2b08a25e5e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "42825", + "orderNumber" : "286262", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, @@ -124409,8 +123737,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "1379", + "referencedStandard" : "AISI", + "referencedStandardID" : "3973", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -124421,28 +123749,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -124457,7 +123785,7 @@ "value" : "85023955-75", "key" : "manufacturerPartId" }, { - "value" : "NO-857004458075736523524597", + "value" : "NO-462236595118986222488814", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -124468,7 +123796,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", + "catenaXId" : "urn:uuid:9fcb541b-698a-40d5-a998-fd2b08a25e5e", "partTypeInformation" : { "manufacturerPartId" : "85023955-75", "customerPartId" : "85023955-75", @@ -124480,22 +123808,22 @@ "nameAtManufacturer" : "Tailgate", "nameAtCustomer" : "Tailgate" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", + "assetId" : "urn:uuid:9fcb541b-698a-40d5-a998-fd2b08a25e5e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", + "catenaXId" : "urn:uuid:9fcb541b-698a-40d5-a998-fd2b08a25e5e", "partTypeInformation" : { "ownerPartId" : "85023955-75", - "partVersion" : "01", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Tailgate", "partClassification" : [ { @@ -124505,53 +123833,51 @@ "nameAtOwner" : "Tailgate" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9fcb541b-698a-40d5-a998-fd2b08a25e5e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", + "catenaXId" : "urn:uuid:65c12779-fe7b-480b-bcae-37de98aab505", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "657696", + "orderNumber" : "551488", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "6767", + "referencedStandard" : "JIS", + "referencedStandardID" : "1135", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -124563,11 +123889,11 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -124577,7 +123903,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -124598,7 +123924,7 @@ "value" : "13769860-47", "key" : "manufacturerPartId" }, { - "value" : "NO-957399938211976692050930", + "value" : "NO-376983895573429430312771", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -124609,7 +123935,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", + "catenaXId" : "urn:uuid:65c12779-fe7b-480b-bcae-37de98aab505", "partTypeInformation" : { "manufacturerPartId" : "13769860-47", "customerPartId" : "13769860-47", @@ -124621,22 +123947,22 @@ "nameAtManufacturer" : "Fender left", "nameAtCustomer" : "Fender right" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", + "assetId" : "urn:uuid:65c12779-fe7b-480b-bcae-37de98aab505", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", + "catenaXId" : "urn:uuid:65c12779-fe7b-480b-bcae-37de98aab505", "partTypeInformation" : { "ownerPartId" : "13769860-47", - "partVersion" : "03", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Fender right", "partClassification" : [ { @@ -124646,53 +123972,51 @@ "nameAtOwner" : "Fender right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:65c12779-fe7b-480b-bcae-37de98aab505", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", + "catenaXId" : "urn:uuid:8f28ed67-e3a3-48e4-ae5c-352a8490546d", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "434372", + "orderNumber" : "950592", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "9366", + "referencedStandard" : "ASME", + "referencedStandardID" : "8674", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -124701,30 +124025,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -124739,7 +124063,7 @@ "value" : "36643162-35", "key" : "manufacturerPartId" }, { - "value" : "NO-827857791188817306605242", + "value" : "NO-669324015381709299075681", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -124750,7 +124074,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", + "catenaXId" : "urn:uuid:8f28ed67-e3a3-48e4-ae5c-352a8490546d", "partTypeInformation" : { "manufacturerPartId" : "36643162-35", "customerPartId" : "36643162-35", @@ -124762,22 +124086,22 @@ "nameAtManufacturer" : "Fender right", "nameAtCustomer" : "Fender right" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", + "assetId" : "urn:uuid:8f28ed67-e3a3-48e4-ae5c-352a8490546d", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", + "catenaXId" : "urn:uuid:8f28ed67-e3a3-48e4-ae5c-352a8490546d", "partTypeInformation" : { "ownerPartId" : "36643162-35", - "partVersion" : "01", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Fender right", "partClassification" : [ { @@ -124787,28 +124111,26 @@ "nameAtOwner" : "Fender right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8f28ed67-e3a3-48e4-ae5c-352a8490546d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", + "catenaXId" : "urn:uuid:e62a465c-d7c9-4596-ab6b-370ef4751944", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "973698", + "orderNumber" : "983738", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -124817,13 +124139,13 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -124832,8 +124154,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "7475", + "referencedStandard" : "JASO", + "referencedStandardID" : "8166", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -124844,28 +124166,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -124880,7 +124202,7 @@ "value" : "54165444-59", "key" : "manufacturerPartId" }, { - "value" : "NO-183355004442600440398895", + "value" : "NO-840025256384714282504938", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -124891,7 +124213,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", + "catenaXId" : "urn:uuid:e62a465c-d7c9-4596-ab6b-370ef4751944", "partTypeInformation" : { "manufacturerPartId" : "54165444-59", "customerPartId" : "54165444-59", @@ -124903,22 +124225,22 @@ "nameAtManufacturer" : "Bumper front", "nameAtCustomer" : "Bumper front" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", + "assetId" : "urn:uuid:e62a465c-d7c9-4596-ab6b-370ef4751944", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", + "catenaXId" : "urn:uuid:e62a465c-d7c9-4596-ab6b-370ef4751944", "partTypeInformation" : { "ownerPartId" : "54165444-59", - "partVersion" : "02", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Bumper front", "partClassification" : [ { @@ -124928,53 +124250,51 @@ "nameAtOwner" : "Bumper front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e62a465c-d7c9-4596-ab6b-370ef4751944", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", + "catenaXId" : "urn:uuid:46266bc3-7fc0-4dc5-9c4c-166129334fbc", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "736137", + "orderNumber" : "303057", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "GB", - "referencedStandardID" : "1274", + "referencedStandardID" : "1742", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -124983,24 +124303,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { @@ -125021,7 +124341,7 @@ "value" : "22768257-25", "key" : "manufacturerPartId" }, { - "value" : "NO-139283692052251878287186", + "value" : "NO-597774853565321844837459", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -125032,7 +124352,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", + "catenaXId" : "urn:uuid:46266bc3-7fc0-4dc5-9c4c-166129334fbc", "partTypeInformation" : { "manufacturerPartId" : "22768257-25", "customerPartId" : "22768257-25", @@ -125044,22 +124364,22 @@ "nameAtManufacturer" : "Bumper rear", "nameAtCustomer" : "Bumper rear" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", + "assetId" : "urn:uuid:46266bc3-7fc0-4dc5-9c4c-166129334fbc", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", + "catenaXId" : "urn:uuid:46266bc3-7fc0-4dc5-9c4c-166129334fbc", "partTypeInformation" : { "ownerPartId" : "22768257-25", - "partVersion" : "05", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Bumper rear", "partClassification" : [ { @@ -125069,53 +124389,51 @@ "nameAtOwner" : "Bumper rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:46266bc3-7fc0-4dc5-9c4c-166129334fbc", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", + "catenaXId" : "urn:uuid:06be54bc-8899-4288-a13a-113d9f3dddc7", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "527263", + "orderNumber" : "567695", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "DIN EN", - "referencedStandardID" : "3530", + "referencedStandardID" : "2546", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -125124,24 +124442,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -125162,7 +124480,7 @@ "value" : "65529521-37", "key" : "manufacturerPartId" }, { - "value" : "NO-953346655646650556865701", + "value" : "NO-932753597881427636293704", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -125173,7 +124491,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", + "catenaXId" : "urn:uuid:06be54bc-8899-4288-a13a-113d9f3dddc7", "partTypeInformation" : { "manufacturerPartId" : "65529521-37", "customerPartId" : "65529521-37", @@ -125185,22 +124503,22 @@ "nameAtManufacturer" : "Exterior mirror left", "nameAtCustomer" : "Exterior mirror left" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", + "assetId" : "urn:uuid:06be54bc-8899-4288-a13a-113d9f3dddc7", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", + "catenaXId" : "urn:uuid:06be54bc-8899-4288-a13a-113d9f3dddc7", "partTypeInformation" : { "ownerPartId" : "65529521-37", - "partVersion" : "02", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Exterior mirror left", "partClassification" : [ { @@ -125210,53 +124528,51 @@ "nameAtOwner" : "Exterior mirror left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:06be54bc-8899-4288-a13a-113d9f3dddc7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", + "catenaXId" : "urn:uuid:a269a3e6-db15-47e5-99de-46318eb1892c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "343957", + "orderNumber" : "642805", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "6339", + "referencedStandard" : "ISO", + "referencedStandardID" : "5320", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -125267,28 +124583,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -125303,7 +124619,7 @@ "value" : "58471477-24", "key" : "manufacturerPartId" }, { - "value" : "NO-844308332835266576477207", + "value" : "NO-337205923049940599347636", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -125314,7 +124630,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", + "catenaXId" : "urn:uuid:a269a3e6-db15-47e5-99de-46318eb1892c", "partTypeInformation" : { "manufacturerPartId" : "58471477-24", "customerPartId" : "58471477-24", @@ -125329,16 +124645,16 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", + "assetId" : "urn:uuid:a269a3e6-db15-47e5-99de-46318eb1892c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", + "catenaXId" : "urn:uuid:a269a3e6-db15-47e5-99de-46318eb1892c", "partTypeInformation" : { "ownerPartId" : "58471477-24", "partVersion" : "03", @@ -125351,43 +124667,41 @@ "nameAtOwner" : "Exterior mirror right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a269a3e6-db15-47e5-99de-46318eb1892c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", + "catenaXId" : "urn:uuid:9245da08-969c-4d37-a071-6b4986b56c1a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "574423", + "orderNumber" : "36471", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -125396,8 +124710,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "2476", + "referencedStandard" : "EN", + "referencedStandardID" : "5731", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -125406,30 +124720,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -125444,7 +124758,7 @@ "value" : "09002013-68", "key" : "manufacturerPartId" }, { - "value" : "NO-255262622365556582484075", + "value" : "NO-868511190630987435358438", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -125455,7 +124769,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", + "catenaXId" : "urn:uuid:9245da08-969c-4d37-a071-6b4986b56c1a", "partTypeInformation" : { "manufacturerPartId" : "09002013-68", "customerPartId" : "09002013-68", @@ -125467,22 +124781,22 @@ "nameAtManufacturer" : "Trailer coupling", "nameAtCustomer" : "Tailer coupling" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", + "assetId" : "urn:uuid:9245da08-969c-4d37-a071-6b4986b56c1a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", + "catenaXId" : "urn:uuid:9245da08-969c-4d37-a071-6b4986b56c1a", "partTypeInformation" : { "ownerPartId" : "09002013-68", - "partVersion" : "02", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Tailer coupling", "partClassification" : [ { @@ -125492,43 +124806,41 @@ "nameAtOwner" : "Tailer coupling" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9245da08-969c-4d37-a071-6b4986b56c1a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", + "catenaXId" : "urn:uuid:50d76011-c285-4d73-936b-e54768ab4bd5", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "690660", + "orderNumber" : "889524", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 23 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -125537,8 +124849,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "3813", + "referencedStandard" : "AS", + "referencedStandardID" : "3263", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -125550,11 +124862,11 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -125564,13 +124876,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -125585,7 +124897,7 @@ "value" : "43501996-98", "key" : "manufacturerPartId" }, { - "value" : "NO-214622233852735436570638", + "value" : "NO-027069717568924142128693", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -125596,7 +124908,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", + "catenaXId" : "urn:uuid:50d76011-c285-4d73-936b-e54768ab4bd5", "partTypeInformation" : { "manufacturerPartId" : "43501996-98", "customerPartId" : "43501996-98", @@ -125608,22 +124920,22 @@ "nameAtManufacturer" : "Dashboard", "nameAtCustomer" : "Dashboard" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", + "assetId" : "urn:uuid:50d76011-c285-4d73-936b-e54768ab4bd5", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", + "catenaXId" : "urn:uuid:50d76011-c285-4d73-936b-e54768ab4bd5", "partTypeInformation" : { "ownerPartId" : "43501996-98", - "partVersion" : "03", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Dashboard", "partClassification" : [ { @@ -125633,53 +124945,51 @@ "nameAtOwner" : "Dashboard" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:50d76011-c285-4d73-936b-e54768ab4bd5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", + "catenaXId" : "urn:uuid:9425f1ac-6908-424e-8f56-c8ea4433e0de", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "349639", + "orderNumber" : "897484", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "4929", + "referencedStandard" : "JASO", + "referencedStandardID" : "5268", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -125688,14 +124998,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -125705,13 +125015,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -125726,7 +125036,7 @@ "value" : "77795937-13", "key" : "manufacturerPartId" }, { - "value" : "NO-842938359590063280117347", + "value" : "NO-981817296766051418121623", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -125737,7 +125047,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", + "catenaXId" : "urn:uuid:9425f1ac-6908-424e-8f56-c8ea4433e0de", "partTypeInformation" : { "manufacturerPartId" : "77795937-13", "customerPartId" : "77795937-13", @@ -125749,22 +125059,22 @@ "nameAtManufacturer" : "Steering wheel", "nameAtCustomer" : "Steering wheel" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", + "assetId" : "urn:uuid:9425f1ac-6908-424e-8f56-c8ea4433e0de", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", + "catenaXId" : "urn:uuid:9425f1ac-6908-424e-8f56-c8ea4433e0de", "partTypeInformation" : { "ownerPartId" : "77795937-13", - "partVersion" : "03", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Steering wheel", "partClassification" : [ { @@ -125774,53 +125084,51 @@ "nameAtOwner" : "Steering wheel" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9425f1ac-6908-424e-8f56-c8ea4433e0de", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", + "catenaXId" : "urn:uuid:62ab53a5-d7e3-4862-8e32-e6155d6021b2", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "473361", + "orderNumber" : "991879", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "9106", + "referencedStandard" : "ISO", + "referencedStandardID" : "9626", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -125829,10 +125137,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -125846,13 +125154,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -125867,7 +125175,7 @@ "value" : "20125432-59", "key" : "manufacturerPartId" }, { - "value" : "NO-644622011883694931091746", + "value" : "NO-049149906127737207642454", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -125878,7 +125186,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", + "catenaXId" : "urn:uuid:62ab53a5-d7e3-4862-8e32-e6155d6021b2", "partTypeInformation" : { "manufacturerPartId" : "20125432-59", "customerPartId" : "20125432-59", @@ -125890,22 +125198,22 @@ "nameAtManufacturer" : "Indicator left", "nameAtCustomer" : "Indicator left" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", + "assetId" : "urn:uuid:62ab53a5-d7e3-4862-8e32-e6155d6021b2", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", + "catenaXId" : "urn:uuid:62ab53a5-d7e3-4862-8e32-e6155d6021b2", "partTypeInformation" : { "ownerPartId" : "20125432-59", - "partVersion" : "01", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Indicator left", "partClassification" : [ { @@ -125915,53 +125223,51 @@ "nameAtOwner" : "Indicator left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:62ab53a5-d7e3-4862-8e32-e6155d6021b2", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", + "catenaXId" : "urn:uuid:1f07ab5c-54f1-489b-b658-962d02de43c8", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "947011", + "orderNumber" : "880741", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 24 + "percentageOfMaterialWeight" : 23 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "4435", + "referencedStandard" : "ASME", + "referencedStandardID" : "3954", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -125970,14 +125276,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -125987,13 +125293,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -126008,7 +125314,7 @@ "value" : "19073706-76", "key" : "manufacturerPartId" }, { - "value" : "NO-039873956461761228319899", + "value" : "NO-854676697474862936393828", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -126019,7 +125325,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", + "catenaXId" : "urn:uuid:1f07ab5c-54f1-489b-b658-962d02de43c8", "partTypeInformation" : { "manufacturerPartId" : "19073706-76", "customerPartId" : "19073706-76", @@ -126034,16 +125340,16 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", + "assetId" : "urn:uuid:1f07ab5c-54f1-489b-b658-962d02de43c8", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", + "catenaXId" : "urn:uuid:1f07ab5c-54f1-489b-b658-962d02de43c8", "partTypeInformation" : { "ownerPartId" : "19073706-76", "partVersion" : "02", @@ -126056,53 +125362,51 @@ "nameAtOwner" : "Indicator right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1f07ab5c-54f1-489b-b658-962d02de43c8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", + "catenaXId" : "urn:uuid:62cdb1a1-5668-4d4d-9405-08815b0a44e1", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "884392", + "orderNumber" : "606318", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "8046", + "referencedStandard" : "ASME", + "referencedStandardID" : "4358", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -126111,30 +125415,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -126149,7 +125453,7 @@ "value" : "45415162-57", "key" : "manufacturerPartId" }, { - "value" : "NO-465941145566936814653478", + "value" : "NO-280723231044514028929700", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -126160,7 +125464,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", + "catenaXId" : "urn:uuid:62cdb1a1-5668-4d4d-9405-08815b0a44e1", "partTypeInformation" : { "manufacturerPartId" : "45415162-57", "customerPartId" : "45415162-57", @@ -126172,22 +125476,22 @@ "nameAtManufacturer" : "Led headlight", "nameAtCustomer" : "Led headlight" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", + "assetId" : "urn:uuid:62cdb1a1-5668-4d4d-9405-08815b0a44e1", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", + "catenaXId" : "urn:uuid:62cdb1a1-5668-4d4d-9405-08815b0a44e1", "partTypeInformation" : { "ownerPartId" : "45415162-57", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Led headlight", "partClassification" : [ { @@ -126197,43 +125501,41 @@ "nameAtOwner" : "Led headlight" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:62cdb1a1-5668-4d4d-9405-08815b0a44e1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", + "catenaXId" : "urn:uuid:e2599d37-eeae-4dc6-a8c0-540b10fc754f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "998607", + "orderNumber" : "869115", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 23 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -126243,7 +125545,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "DIN", - "referencedStandardID" : "8657", + "referencedStandardID" : "3610", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -126252,7 +125554,7 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, "percentageOfMaterialWeight" : 10 @@ -126265,11 +125567,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -126290,7 +125592,7 @@ "value" : "78141846-87", "key" : "manufacturerPartId" }, { - "value" : "NO-839773269783048448130319", + "value" : "NO-546923032331232343378186", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -126301,7 +125603,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", + "catenaXId" : "urn:uuid:e2599d37-eeae-4dc6-a8c0-540b10fc754f", "partTypeInformation" : { "manufacturerPartId" : "78141846-87", "customerPartId" : "78141846-87", @@ -126313,22 +125615,22 @@ "nameAtManufacturer" : "Starter motor", "nameAtCustomer" : "Starter motor" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", + "assetId" : "urn:uuid:e2599d37-eeae-4dc6-a8c0-540b10fc754f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", + "catenaXId" : "urn:uuid:e2599d37-eeae-4dc6-a8c0-540b10fc754f", "partTypeInformation" : { "ownerPartId" : "78141846-87", - "partVersion" : "04", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Starter motor", "partClassification" : [ { @@ -126338,53 +125640,51 @@ "nameAtOwner" : "Starter motor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e2599d37-eeae-4dc6-a8c0-540b10fc754f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", + "catenaXId" : "urn:uuid:7ae121a2-aeb3-4e54-9792-00b8a586ce99", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "893422", + "orderNumber" : "985993", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "3955", + "referencedStandard" : "EN", + "referencedStandardID" : "2987", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -126393,30 +125693,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -126431,7 +125731,7 @@ "value" : "81324139-23", "key" : "manufacturerPartId" }, { - "value" : "NO-420904072316887872619111", + "value" : "NO-118420745212823143151249", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -126442,7 +125742,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", + "catenaXId" : "urn:uuid:7ae121a2-aeb3-4e54-9792-00b8a586ce99", "partTypeInformation" : { "manufacturerPartId" : "81324139-23", "customerPartId" : "81324139-23", @@ -126457,16 +125757,16 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", + "assetId" : "urn:uuid:7ae121a2-aeb3-4e54-9792-00b8a586ce99", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", + "catenaXId" : "urn:uuid:7ae121a2-aeb3-4e54-9792-00b8a586ce99", "partTypeInformation" : { "ownerPartId" : "81324139-23", "partVersion" : "01", @@ -126479,43 +125779,41 @@ "nameAtOwner" : "Alternator" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7ae121a2-aeb3-4e54-9792-00b8a586ce99", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", + "catenaXId" : "urn:uuid:1cd0e175-3f84-4140-8a8e-bd4efdc9765e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "675466", + "orderNumber" : "322442", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -126524,8 +125822,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "8025", + "referencedStandard" : "IS", + "referencedStandardID" : "3936", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -126537,11 +125835,11 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -126551,13 +125849,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -126572,7 +125870,7 @@ "value" : "57929013-09", "key" : "manufacturerPartId" }, { - "value" : "NO-424790817498696449441638", + "value" : "NO-346386415878360189792135", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -126583,7 +125881,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", + "catenaXId" : "urn:uuid:1cd0e175-3f84-4140-8a8e-bd4efdc9765e", "partTypeInformation" : { "manufacturerPartId" : "57929013-09", "customerPartId" : "57929013-09", @@ -126598,16 +125896,16 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", + "assetId" : "urn:uuid:1cd0e175-3f84-4140-8a8e-bd4efdc9765e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", + "catenaXId" : "urn:uuid:1cd0e175-3f84-4140-8a8e-bd4efdc9765e", "partTypeInformation" : { "ownerPartId" : "57929013-09", "partVersion" : "04", @@ -126620,53 +125918,51 @@ "nameAtOwner" : "Air conditioning compressor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1cd0e175-3f84-4140-8a8e-bd4efdc9765e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", + "catenaXId" : "urn:uuid:72fe5c32-18ea-4c08-92a3-21355e9d29dc", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "286636", + "orderNumber" : "226554", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "7871", + "referencedStandard" : "AISI", + "referencedStandardID" : "2501", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -126675,20 +125971,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -126698,7 +125994,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -126713,7 +126009,7 @@ "value" : "61184040-23", "key" : "manufacturerPartId" }, { - "value" : "NO-875900226307888871498847", + "value" : "NO-185130687109752250587638", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -126724,7 +126020,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", + "catenaXId" : "urn:uuid:72fe5c32-18ea-4c08-92a3-21355e9d29dc", "partTypeInformation" : { "manufacturerPartId" : "61184040-23", "customerPartId" : "61184040-23", @@ -126736,22 +126032,22 @@ "nameAtManufacturer" : "Taillight rear", "nameAtCustomer" : "Taillight rear" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", + "assetId" : "urn:uuid:72fe5c32-18ea-4c08-92a3-21355e9d29dc", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", + "catenaXId" : "urn:uuid:72fe5c32-18ea-4c08-92a3-21355e9d29dc", "partTypeInformation" : { "ownerPartId" : "61184040-23", - "partVersion" : "02", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Taillight rear", "partClassification" : [ { @@ -126761,53 +126057,51 @@ "nameAtOwner" : "Taillight rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:72fe5c32-18ea-4c08-92a3-21355e9d29dc", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", + "catenaXId" : "urn:uuid:6f01feea-55c2-46c5-a455-d6ed95eff9a2", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "424622", + "orderNumber" : "531508", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "DIN", - "referencedStandardID" : "1932", + "referencedStandardID" : "7339", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -126818,28 +126112,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -126854,7 +126148,7 @@ "value" : "78744126-74", "key" : "manufacturerPartId" }, { - "value" : "NO-322885601135436788460719", + "value" : "NO-039706753568874019967653", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -126865,7 +126159,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", + "catenaXId" : "urn:uuid:6f01feea-55c2-46c5-a455-d6ed95eff9a2", "partTypeInformation" : { "manufacturerPartId" : "78744126-74", "customerPartId" : "78744126-74", @@ -126877,22 +126171,22 @@ "nameAtManufacturer" : "Taillight front", "nameAtCustomer" : "Taillight front" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", + "assetId" : "urn:uuid:6f01feea-55c2-46c5-a455-d6ed95eff9a2", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", + "catenaXId" : "urn:uuid:6f01feea-55c2-46c5-a455-d6ed95eff9a2", "partTypeInformation" : { "ownerPartId" : "78744126-74", - "partVersion" : "02", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Taillight front", "partClassification" : [ { @@ -126902,28 +126196,26 @@ "nameAtOwner" : "Taillight front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6f01feea-55c2-46c5-a455-d6ed95eff9a2", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", + "catenaXId" : "urn:uuid:6dceae77-9d5d-4165-90bc-e17d7f6d1727", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "980587", + "orderNumber" : "508518", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -126932,23 +126224,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "1137", + "referencedStandard" : "JASO", + "referencedStandardID" : "4506", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -126957,30 +126249,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -126995,7 +126287,7 @@ "value" : "12093297-03", "key" : "manufacturerPartId" }, { - "value" : "NO-095583662686007569223747", + "value" : "NO-998982098488787010970286", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -127006,7 +126298,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", + "catenaXId" : "urn:uuid:6dceae77-9d5d-4165-90bc-e17d7f6d1727", "partTypeInformation" : { "manufacturerPartId" : "12093297-03", "customerPartId" : "12093297-03", @@ -127018,22 +126310,22 @@ "nameAtManufacturer" : "Axle part front", "nameAtCustomer" : "Axle part front" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", + "assetId" : "urn:uuid:6dceae77-9d5d-4165-90bc-e17d7f6d1727", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", + "catenaXId" : "urn:uuid:6dceae77-9d5d-4165-90bc-e17d7f6d1727", "partTypeInformation" : { "ownerPartId" : "12093297-03", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Axle part front", "partClassification" : [ { @@ -127043,53 +126335,51 @@ "nameAtOwner" : "Axle part front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6dceae77-9d5d-4165-90bc-e17d7f6d1727", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", + "catenaXId" : "urn:uuid:269730ad-0db1-4422-986a-b06f3a0ce671", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "396639", + "orderNumber" : "918687", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "5176", + "referencedStandard" : "ASME", + "referencedStandardID" : "8526", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -127098,20 +126388,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -127121,7 +126411,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -127136,7 +126426,7 @@ "value" : "88111709-49", "key" : "manufacturerPartId" }, { - "value" : "NO-360068828389685342134227", + "value" : "NO-712547592971864835151018", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -127147,7 +126437,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", + "catenaXId" : "urn:uuid:269730ad-0db1-4422-986a-b06f3a0ce671", "partTypeInformation" : { "manufacturerPartId" : "88111709-49", "customerPartId" : "88111709-49", @@ -127159,22 +126449,22 @@ "nameAtManufacturer" : "Axle part rear", "nameAtCustomer" : "Axle part rear" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", + "assetId" : "urn:uuid:269730ad-0db1-4422-986a-b06f3a0ce671", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", + "catenaXId" : "urn:uuid:269730ad-0db1-4422-986a-b06f3a0ce671", "partTypeInformation" : { "ownerPartId" : "88111709-49", - "partVersion" : "03", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Axle part rear", "partClassification" : [ { @@ -127184,53 +126474,51 @@ "nameAtOwner" : "Axle part rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:269730ad-0db1-4422-986a-b06f3a0ce671", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", + "catenaXId" : "urn:uuid:f38f7ec3-dcdc-41b2-9a09-659179eb6278", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "723657", + "orderNumber" : "986137", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "1030", + "referencedStandard" : "EN", + "referencedStandardID" : "4933", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -127241,28 +126529,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -127277,7 +126565,7 @@ "value" : "00871379-44", "key" : "manufacturerPartId" }, { - "value" : "NO-635693250173819121828510", + "value" : "NO-233550478249516645945753", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -127288,7 +126576,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", + "catenaXId" : "urn:uuid:f38f7ec3-dcdc-41b2-9a09-659179eb6278", "partTypeInformation" : { "manufacturerPartId" : "00871379-44", "customerPartId" : "00871379-44", @@ -127300,22 +126588,22 @@ "nameAtManufacturer" : "Chassis", "nameAtCustomer" : "Chassis" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", + "assetId" : "urn:uuid:f38f7ec3-dcdc-41b2-9a09-659179eb6278", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", + "catenaXId" : "urn:uuid:f38f7ec3-dcdc-41b2-9a09-659179eb6278", "partTypeInformation" : { "ownerPartId" : "00871379-44", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Chassis", "partClassification" : [ { @@ -127325,53 +126613,51 @@ "nameAtOwner" : "Chassis" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f38f7ec3-dcdc-41b2-9a09-659179eb6278", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", + "catenaXId" : "urn:uuid:f04fbd63-685f-41e7-bebf-ec0aafb77fe1", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "375771", + "orderNumber" : "948264", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "6470", + "referencedStandard" : "ASME", + "referencedStandardID" : "2016", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -127380,10 +126666,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -127393,11 +126679,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -127418,7 +126704,7 @@ "value" : "08901347-87", "key" : "manufacturerPartId" }, { - "value" : "NO-083480373139670709044407", + "value" : "NO-464038483769535552094897", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -127429,7 +126715,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", + "catenaXId" : "urn:uuid:f04fbd63-685f-41e7-bebf-ec0aafb77fe1", "partTypeInformation" : { "manufacturerPartId" : "08901347-87", "customerPartId" : "08901347-87", @@ -127441,22 +126727,22 @@ "nameAtManufacturer" : "Rims", "nameAtCustomer" : "Rims" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", + "assetId" : "urn:uuid:f04fbd63-685f-41e7-bebf-ec0aafb77fe1", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", + "catenaXId" : "urn:uuid:f04fbd63-685f-41e7-bebf-ec0aafb77fe1", "partTypeInformation" : { "ownerPartId" : "08901347-87", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Rims", "partClassification" : [ { @@ -127466,41 +126752,39 @@ "nameAtOwner" : "Rims" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f04fbd63-685f-41e7-bebf-ec0aafb77fe1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", + "catenaXId" : "urn:uuid:2590bb8f-f847-4bf1-9cd4-7c34dcf9b827", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "753648", + "orderNumber" : "562770", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 27 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, @@ -127512,7 +126796,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "EN", - "referencedStandardID" : "2434", + "referencedStandardID" : "3573", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -127521,10 +126805,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -127534,17 +126818,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -127559,7 +126843,7 @@ "value" : "45863316-60", "key" : "manufacturerPartId" }, { - "value" : "NO-665173854732642413380781", + "value" : "NO-188833714026594469826129", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -127570,7 +126854,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", + "catenaXId" : "urn:uuid:2590bb8f-f847-4bf1-9cd4-7c34dcf9b827", "partTypeInformation" : { "manufacturerPartId" : "45863316-60", "customerPartId" : "45863316-60", @@ -127585,16 +126869,16 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", + "assetId" : "urn:uuid:2590bb8f-f847-4bf1-9cd4-7c34dcf9b827", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", + "catenaXId" : "urn:uuid:2590bb8f-f847-4bf1-9cd4-7c34dcf9b827", "partTypeInformation" : { "ownerPartId" : "45863316-60", "partVersion" : "05", @@ -127607,28 +126891,26 @@ "nameAtOwner" : "Tires" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2590bb8f-f847-4bf1-9cd4-7c34dcf9b827", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Carbon Steel", - "recycledContent" : 32, + "recycledContent" : 72, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -127638,7 +126920,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Oil", - "recycledContent" : 84, + "recycledContent" : 87, "materialClass" : "9.2", "quantity" : { "unit" : "unit:kilogram", @@ -127648,7 +126930,7 @@ "materialAbbreviation" : "SAE40" }, { "materialName" : "Copper", - "recycledContent" : 40, + "recycledContent" : 31, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -127659,32 +126941,32 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "catenaXId" : "urn:uuid:11cb3621-2f78-4d24-8e25-b77abe0fc480", "childItems" : [ { - "catenaXId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "catenaXId" : "urn:uuid:cc8806a6-c288-43e5-8a1d-21ba9f6a8948", "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2014 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "catenaXId" : "urn:uuid:ea5938bf-98c9-43d0-9573-29efdd61ca0c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "catenaXId" : "urn:uuid:7c2fe69d-36eb-4874-8cc7-a40f2b77b519", "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2341 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AZQP", @@ -127692,35 +126974,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "catenaXId" : "urn:uuid:11cb3621-2f78-4d24-8e25-b77abe0fc480", "bpnl" : "BPNL00000003B2OM", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "785054", + "orderNumber" : "64315", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "4763", + "referencedStandard" : "IS", + "referencedStandardID" : "5605", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -127732,11 +127014,11 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -127746,13 +127028,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -127767,7 +127049,7 @@ "value" : "42555H1-52", "key" : "manufacturerPartId" }, { - "value" : "NO-297862023737110452281832", + "value" : "NO-318663460450330470472394", "key" : "partInstanceId" }, { "value" : "Company 2", @@ -127784,7 +127066,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "catenaXId" : "urn:uuid:11cb3621-2f78-4d24-8e25-b77abe0fc480", "partTypeInformation" : { "manufacturerPartId" : "42555H1-52", "customerPartId" : "42555H1-52", @@ -127799,26 +127081,26 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "assetId" : "urn:uuid:11cb3621-2f78-4d24-8e25-b77abe0fc480", "manufacturerId" : "BPNL00000003B2OM", "childItems" : [ { "item" : [ { "itemClassification" : [ { - "value" : "Engineering Plastics", + "value" : "Mirror left", "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4704d750-a40f-4331-a8c5-174d71599841", + "ownerItemId" : "urn:uuid:e85f9bd5-d50a-4203-9836-a8437fe6badb", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "childassetId" : "urn:uuid:cc8806a6-c288-43e5-8a1d-21ba9f6a8948", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -127827,17 +127109,17 @@ "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8f716038-19c3-4db9-9cea-040c6ba48f0f", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:e42cde0a-cc3b-41a0-9107-3f15ba6896bf", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "childassetId" : "urn:uuid:ea5938bf-98c9-43d0-9573-29efdd61ca0c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -127846,17 +127128,17 @@ "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1d4ee559-402d-4274-99d5-4ad3c13b72d2", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:6ddcadf2-e9e5-4ca9-b1c5-adc38d1c6b5e", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "childassetId" : "urn:uuid:7c2fe69d-36eb-4874-8cc7-a40f2b77b519", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -127869,24 +127151,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", - "partTypeInformation" : { - "ownerPartId" : "42555H1-52", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "Transmission", - "partClassification" : [ { - "value" : "Transmission", - "key" : "BPNL00000003B2OM:PartFamily" - } ], - "nameAtOwner" : "Transmission" - } - } ], "urn:samm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { "productSpecificParameters" : { "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], @@ -127928,10 +127192,10 @@ "documentTitle" : "Title A" } ] }, - "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "catenaXId" : "urn:uuid:11cb3621-2f78-4d24-8e25-b77abe0fc480", "identification" : { "localIdentifiers" : [ { - "value" : "NO-297862023737110452281832", + "value" : "NO-318663460450330470472394", "key" : "PartInstanceID" } ], "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", @@ -127997,22 +127261,38 @@ "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:11cb3621-2f78-4d24-8e25-b77abe0fc480", + "partTypeInformation" : { + "ownerPartId" : "42555H1-52", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Transmission", + "partClassification" : [ { + "value" : "Transmission", + "key" : "BPNL00000003B2OM:PartFamily" } ], + "nameAtOwner" : "Transmission" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:11cb3621-2f78-4d24-8e25-b77abe0fc480", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B2OM" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -128020,7 +127300,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 49, + "recycledContent" : 79, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -128030,7 +127310,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 44, + "recycledContent" : 60, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -128040,25 +127320,25 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "catenaXId" : "urn:uuid:cc8806a6-c288-43e5-8a1d-21ba9f6a8948", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "909034", + "orderNumber" : "482451", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -128067,8 +127347,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "1177", + "referencedStandard" : "JIS", + "referencedStandardID" : "3246", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -128077,30 +127357,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -128108,7 +127388,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "assetId" : "urn:uuid:cc8806a6-c288-43e5-8a1d-21ba9f6a8948", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -128125,24 +127405,24 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "catenaXId" : "urn:uuid:cc8806a6-c288-43e5-8a1d-21ba9f6a8948", "partTypeInformation" : { - "manufacturerPartId" : "WZ-57", + "manufacturerPartId" : "RD-68", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "Engineering Plastics" + "nameAtManufacturer" : "Mirror left" }, "itemVersion" : "02" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "catenaXId" : "urn:uuid:cc8806a6-c288-43e5-8a1d-21ba9f6a8948", "partTypeInformation" : { "ownerPartId" : "", "partVersion" : "02", @@ -128155,31 +127435,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cc8806a6-c288-43e5-8a1d-21ba9f6a8948", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11cb3621-2f78-4d24-8e25-b77abe0fc480", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "catenaXId" : "urn:uuid:ea5938bf-98c9-43d0-9573-29efdd61ca0c", "childItems" : [ { - "catenaXId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "catenaXId" : "urn:uuid:aef754c9-7a93-4cbd-ad18-9cdf1e9804e1", "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.1908 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -128187,10 +127465,10 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "catenaXId" : "urn:uuid:ea5938bf-98c9-43d0-9573-29efdd61ca0c", "bpnl" : "BPNL00000003B3NX", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "675120", + "orderNumber" : "521737", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -128199,23 +127477,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "4961", + "referencedStandard" : "ASME", + "referencedStandardID" : "2071", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -128226,18 +127504,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -128247,7 +127525,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -128259,10 +127537,10 @@ "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "20713L6-02", + "value" : "58808R3-04", "key" : "manufacturerPartId" }, { - "value" : "NO-599077453926031454448409", + "value" : "NO-277255157969174594907803", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -128273,10 +127551,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "catenaXId" : "urn:uuid:ea5938bf-98c9-43d0-9573-29efdd61ca0c", "partTypeInformation" : { - "manufacturerPartId" : "20713L6-02", - "customerPartId" : "20713L6-02", + "manufacturerPartId" : "58808R3-04", + "customerPartId" : "58808R3-04", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -128285,10 +127563,10 @@ "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "assetId" : "urn:uuid:ea5938bf-98c9-43d0-9573-29efdd61ca0c", "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { "item" : [ { @@ -128297,29 +127575,29 @@ "key" : "BPNL00000003B3NX:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d85fce44-58aa-4a49-967b-534ffa3e0ab8", + "ownerItemId" : "urn:uuid:8b3a0a08-8bea-4cc0-87ae-4989b3a3bb2e", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "childassetId" : "urn:uuid:aef754c9-7a93-4cbd-ad18-9cdf1e9804e1", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "catenaXId" : "urn:uuid:ea5938bf-98c9-43d0-9573-29efdd61ca0c", "partTypeInformation" : { - "ownerPartId" : "20713L6-02", - "partVersion" : "01", + "ownerPartId" : "58808R3-04", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Sensor", "partClassification" : [ { @@ -128329,22 +127607,20 @@ "nameAtOwner" : "Sensor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ea5938bf-98c9-43d0-9573-29efdd61ca0c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11cb3621-2f78-4d24-8e25-b77abe0fc480", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B3NX" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -128352,7 +127628,7 @@ "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 32, + "recycledContent" : 23, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -128362,7 +127638,7 @@ "materialAbbreviation" : "" }, { "materialName" : "Other", - "recycledContent" : 66, + "recycledContent" : 22, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -128372,25 +127648,25 @@ "materialAbbreviation" : "" } ] } ], - "catenaXId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "catenaXId" : "urn:uuid:aef754c9-7a93-4cbd-ad18-9cdf1e9804e1", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "576400", + "orderNumber" : "853254", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -128399,8 +127675,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "4682", + "referencedStandard" : "DIN", + "referencedStandardID" : "6113", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -128409,10 +127685,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -128422,17 +127698,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -128440,7 +127716,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "assetId" : "urn:uuid:aef754c9-7a93-4cbd-ad18-9cdf1e9804e1", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -128457,9 +127733,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "catenaXId" : "urn:uuid:aef754c9-7a93-4cbd-ad18-9cdf1e9804e1", "partTypeInformation" : { - "manufacturerPartId" : "WN-36", + "manufacturerPartId" : "SQ-07", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -128469,12 +127745,12 @@ }, "itemVersion" : "04" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "catenaXId" : "urn:uuid:aef754c9-7a93-4cbd-ad18-9cdf1e9804e1", "partTypeInformation" : { "ownerPartId" : "", "partVersion" : "04", @@ -128487,26 +127763,24 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:aef754c9-7a93-4cbd-ad18-9cdf1e9804e1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea5938bf-98c9-43d0-9573-29efdd61ca0c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "catenaXId" : "urn:uuid:7c2fe69d-36eb-4874-8cc7-a40f2b77b519", "childItems" : [ ] } ], "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -128521,35 +127795,35 @@ "materialAbbreviation" : "GL338" } ] } ], - "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "catenaXId" : "urn:uuid:7c2fe69d-36eb-4874-8cc7-a40f2b77b519", "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "330135", + "orderNumber" : "653234", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "4981", + "referencedStandard" : "EN", + "referencedStandardID" : "7770", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -128558,30 +127832,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -128589,7 +127863,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "assetId" : "urn:uuid:7c2fe69d-36eb-4874-8cc7-a40f2b77b519", "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] } ], @@ -128606,9 +127880,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "catenaXId" : "urn:uuid:7c2fe69d-36eb-4874-8cc7-a40f2b77b519", "partTypeInformation" : { - "manufacturerPartId" : "IH-58", + "manufacturerPartId" : "SD-59", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -128616,17 +127890,17 @@ } ], "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "catenaXId" : "urn:uuid:7c2fe69d-36eb-4874-8cc7-a40f2b77b519", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "05", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -128636,28 +127910,26 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7c2fe69d-36eb-4874-8cc7-a40f2b77b519", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11cb3621-2f78-4d24-8e25-b77abe0fc480", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Glue", - "recycledContent" : 4, + "recycledContent" : 55, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -128668,32 +127940,32 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "catenaXId" : "urn:uuid:295ea608-eafc-4984-a377-4d7ce088194f", "childItems" : [ { - "catenaXId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "catenaXId" : "urn:uuid:16d6e7e8-613d-4ea7-bbb5-76eec5cecc20", "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.3301 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "catenaXId" : "urn:uuid:50c54c3b-2b93-4819-881e-0ae3851a419c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "catenaXId" : "urn:uuid:1115f72f-be7c-45d2-9b41-e49b5a6af9d4", "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2001 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -128701,35 +127973,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "catenaXId" : "urn:uuid:295ea608-eafc-4984-a377-4d7ce088194f", "bpnl" : "BPNL00000003B5MJ", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "614008", + "orderNumber" : "204437", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "7710", + "referencedStandard" : "AISI", + "referencedStandardID" : "2378", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -128738,30 +128010,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -128773,10 +128045,10 @@ "value" : "BPNL00000003B5MJ", "key" : "manufacturerId" }, { - "value" : "93096K5-94", + "value" : "87424V8-68", "key" : "manufacturerPartId" }, { - "value" : "NO-059518126168909770052269", + "value" : "NO-073819087625528106236311", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -128787,10 +128059,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "catenaXId" : "urn:uuid:295ea608-eafc-4984-a377-4d7ce088194f", "partTypeInformation" : { - "manufacturerPartId" : "93096K5-94", - "customerPartId" : "93096K5-94", + "manufacturerPartId" : "87424V8-68", + "customerPartId" : "87424V8-68", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -128799,10 +128071,10 @@ "nameAtManufacturer" : "ECU", "nameAtCustomer" : "ECU" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "assetId" : "urn:uuid:295ea608-eafc-4984-a377-4d7ce088194f", "manufacturerId" : "BPNL00000003B5MJ", "childItems" : [ { "item" : [ { @@ -128811,17 +128083,17 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:aa89581e-15e5-4672-ba57-ce2902df6b4c", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:3482be72-a50b-4285-80a3-e813e4ba507a", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "childassetId" : "urn:uuid:16d6e7e8-613d-4ea7-bbb5-76eec5cecc20", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -128830,17 +128102,17 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2133329a-1931-4197-927a-07d2672252e5", + "ownerItemId" : "urn:uuid:ba61a6a1-0a63-4c69-bb42-472f99ea8b5d", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "childassetId" : "urn:uuid:50c54c3b-2b93-4819-881e-0ae3851a419c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -128849,29 +128121,29 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:83990e87-ed0d-4ebe-9bf8-33523d57bad6", + "ownerItemId" : "urn:uuid:bcfebf48-373b-419b-9a23-a3d636789c39", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "childassetId" : "urn:uuid:1115f72f-be7c-45d2-9b41-e49b5a6af9d4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "catenaXId" : "urn:uuid:295ea608-eafc-4984-a377-4d7ce088194f", "partTypeInformation" : { - "ownerPartId" : "93096K5-94", - "partVersion" : "01", + "ownerPartId" : "87424V8-68", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "ECU", "partClassification" : [ { @@ -128881,22 +128153,20 @@ "nameAtOwner" : "ECU" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:295ea608-eafc-4984-a377-4d7ce088194f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B5MJ" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -128904,7 +128174,7 @@ "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 48, + "recycledContent" : 25, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -128914,7 +128184,7 @@ "materialAbbreviation" : "AL7" }, { "materialName" : "Other", - "recycledContent" : 68, + "recycledContent" : 65, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -128924,23 +128194,23 @@ "materialAbbreviation" : "" } ] } ], - "catenaXId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "catenaXId" : "urn:uuid:16d6e7e8-613d-4ea7-bbb5-76eec5cecc20", "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "767035", + "orderNumber" : "489123", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -128951,8 +128221,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "9969", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "3144", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -128961,14 +128231,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -128978,13 +128248,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -128992,7 +128262,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "assetId" : "urn:uuid:16d6e7e8-613d-4ea7-bbb5-76eec5cecc20", "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] } ], @@ -129009,9 +128279,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "catenaXId" : "urn:uuid:16d6e7e8-613d-4ea7-bbb5-76eec5cecc20", "partTypeInformation" : { - "manufacturerPartId" : "IJ-97", + "manufacturerPartId" : "YY-49", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -129019,17 +128289,17 @@ } ], "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "catenaXId" : "urn:uuid:16d6e7e8-613d-4ea7-bbb5-76eec5cecc20", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "04", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -129039,31 +128309,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:16d6e7e8-613d-4ea7-bbb5-76eec5cecc20", + "parentItems" : [ { + "catenaXId" : "urn:uuid:295ea608-eafc-4984-a377-4d7ce088194f", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "catenaXId" : "urn:uuid:50c54c3b-2b93-4819-881e-0ae3851a419c", "childItems" : [ { - "catenaXId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "catenaXId" : "urn:uuid:d03bf9cf-47a6-4147-86c1-295ae14c3528", "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.1908 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -129071,35 +128339,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "catenaXId" : "urn:uuid:50c54c3b-2b93-4819-881e-0ae3851a419c", "bpnl" : "BPNL00000003B3NX", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "36903", + "orderNumber" : "648806", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "5182", + "referencedStandard" : "ISO", + "referencedStandardID" : "8851", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -129110,12 +128378,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -129125,13 +128393,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -129143,10 +128411,10 @@ "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "21461W2-49", + "value" : "43992K6-63", "key" : "manufacturerPartId" }, { - "value" : "NO-639962420336668821218916", + "value" : "NO-893527191749220349140050", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -129157,10 +128425,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "catenaXId" : "urn:uuid:50c54c3b-2b93-4819-881e-0ae3851a419c", "partTypeInformation" : { - "manufacturerPartId" : "21461W2-49", - "customerPartId" : "21461W2-49", + "manufacturerPartId" : "43992K6-63", + "customerPartId" : "43992K6-63", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -129172,37 +128440,37 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "assetId" : "urn:uuid:50c54c3b-2b93-4819-881e-0ae3851a419c", "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { "item" : [ { "itemClassification" : [ { - "value" : "Engineering Plastics", + "value" : "Mirror left", "key" : "BPNL00000003B3NX:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:cae41ef3-ec33-4ae6-bbf9-a8a7d81dc504", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:a73585c3-3afb-4a41-8297-5426c25e8a9e", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "childassetId" : "urn:uuid:d03bf9cf-47a6-4147-86c1-295ae14c3528", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "catenaXId" : "urn:uuid:50c54c3b-2b93-4819-881e-0ae3851a419c", "partTypeInformation" : { - "ownerPartId" : "21461W2-49", + "ownerPartId" : "43992K6-63", "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Sensor", @@ -129213,22 +128481,20 @@ "nameAtOwner" : "Sensor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:50c54c3b-2b93-4819-881e-0ae3851a419c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:295ea608-eafc-4984-a377-4d7ce088194f", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B3NX" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -129236,7 +128502,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 70, + "recycledContent" : 10, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -129246,7 +128512,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 87, + "recycledContent" : 57, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -129256,35 +128522,35 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "catenaXId" : "urn:uuid:d03bf9cf-47a6-4147-86c1-295ae14c3528", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "484665", + "orderNumber" : "959249", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "6810", + "referencedStandard" : "JASO", + "referencedStandardID" : "8097", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -129295,28 +128561,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -129324,7 +128590,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "assetId" : "urn:uuid:d03bf9cf-47a6-4147-86c1-295ae14c3528", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -129341,27 +128607,27 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "catenaXId" : "urn:uuid:d03bf9cf-47a6-4147-86c1-295ae14c3528", "partTypeInformation" : { - "manufacturerPartId" : "PR-60", + "manufacturerPartId" : "GH-60", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "Engineering Plastics" + "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "catenaXId" : "urn:uuid:d03bf9cf-47a6-4147-86c1-295ae14c3528", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -129371,22 +128637,20 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d03bf9cf-47a6-4147-86c1-295ae14c3528", + "parentItems" : [ { + "catenaXId" : "urn:uuid:50c54c3b-2b93-4819-881e-0ae3851a419c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -129394,7 +128658,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 63, + "recycledContent" : 78, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -129404,7 +128668,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 61, + "recycledContent" : 76, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -129414,35 +128678,35 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "catenaXId" : "urn:uuid:1115f72f-be7c-45d2-9b41-e49b5a6af9d4", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "156108", + "orderNumber" : "794045", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "7857", + "referencedStandard" : "ASME", + "referencedStandardID" : "2903", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -129453,18 +128717,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -129474,7 +128738,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -129486,24 +128750,24 @@ "value" : "BPNL00000003B0Q0", "key" : "manufacturerId" }, { - "value" : "56931M6-58", + "value" : "35290I8-61", "key" : "manufacturerPartId" }, { - "value" : "NO-184597319146186417552311", + "value" : "NO-730880564404733288466942", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", "country" : "DEU", "sites" : [ { - "catenaXsiteId" : "BPNS00000003B0Q0", + "catenaXsiteId" : "BPNS00000003B5MJ", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "catenaXId" : "urn:uuid:1115f72f-be7c-45d2-9b41-e49b5a6af9d4", "partTypeInformation" : { - "manufacturerPartId" : "56931M6-58", - "customerPartId" : "56931M6-58", + "manufacturerPartId" : "35290I8-61", + "customerPartId" : "35290I8-61", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -129515,18 +128779,18 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "assetId" : "urn:uuid:1115f72f-be7c-45d2-9b41-e49b5a6af9d4", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "catenaXId" : "urn:uuid:1115f72f-be7c-45d2-9b41-e49b5a6af9d4", "partTypeInformation" : { - "ownerPartId" : "56931M6-58", + "ownerPartId" : "35290I8-61", "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Engineering Plastics", @@ -129537,25 +128801,87 @@ "nameAtOwner" : "Engineering Plastics" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1115f72f-be7c-45d2-9b41-e49b5a6af9d4", + "parentItems" : [ { + "catenaXId" : "urn:uuid:295ea608-eafc-4984-a377-4d7ce088194f", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", + "childItems" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { @@ -129565,7 +128891,7 @@ "value" : "38049661-08", "key" : "manufacturerPartId" }, { - "value" : "NO-524017634554899551071911", + "value" : "NO-396609437206965622860492", "key" : "partInstanceId" }, { "value" : "Company 1", @@ -129582,7 +128908,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", "partTypeInformation" : { "manufacturerPartId" : "38049661-08", "customerPartId" : "38049661-08", @@ -129594,7 +128920,7 @@ "nameAtManufacturer" : "Battery", "nameAtCustomer" : "Battery" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { "incoterms" : "DAP (Delivered at Place)", @@ -129633,7 +128959,7 @@ "key" : "JxkyvRnL" } ], "productLink" : "https://123", - "oeNumber" : "NO-524017634554899551071911", + "oeNumber" : "NO-396609437206965622860492", "category" : { "subCategory" : [ "Battery" ], "mainCategory" : [ "Audio, video, navigation" ] @@ -129646,7 +128972,7 @@ "mileage" : 120000.06 } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "assetId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -129655,17 +128981,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5bbdd5c0-382a-4124-9bbc-a5cd70d09215", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:fe41d9da-c32a-428c-beef-70c318d26d01", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "childassetId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -129674,17 +129000,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:555ec19c-b017-4061-b2eb-5f5f92d9ca5a", + "ownerItemId" : "urn:uuid:7170d4ff-3132-46d1-90b9-d7bca4d7630d", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "childassetId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -129693,17 +129019,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:11be7ff3-50a2-4695-8e21-27185b6ad879", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:37da01c4-4d85-4b2e-8f76-894544b9590e", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "childassetId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -129712,17 +129038,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:bdd3a663-f213-4ae8-b627-dc9bbb5d970a", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:57292449-b30a-4e84-8d12-60eccc9c79bf", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "childassetId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -129731,17 +129057,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f5708bd6-b73b-490d-ad27-cc5bd7e90a59", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:32d0d55f-838b-4f4c-a5ea-f975058b0397", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "childassetId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -129750,17 +129076,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5dae8822-faed-4f36-8ebf-82eff0d50d36", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:62829c45-1df7-4625-a97f-ed4fc708aed9", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "childassetId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -129795,36 +129121,36 @@ "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, - "issueDate" : "2023-08-05", - "version" : 2.5, - "status" : "Approved" + "issueDate" : "2023-03-05", + "version" : 1.4, + "status" : "Draft" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 1074.0808, - "width" : 1074, - "length" : 2410, - "weight" : 511, - "height" : 275 + "diameter" : 1545.0873, + "width" : 1545, + "length" : 2597, + "weight" : 618, + "height" : 281 }, "lifespan" : { "unit" : "unit:year", - "value" : 19 + "value" : 17 } }, "commercial" : { - "placedOnMarket" : "2020-08-27", + "placedOnMarket" : "2022-11-15", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-524017634554899551071911", + "value" : "NO-396609437206965622860492", "key" : "PartInstanceID" } ], - "gtin" : " 16830141", + "gtin" : " 67714880", "additionalCode" : [ { "name" : "TARIC", - "value" : "714927210" + "value" : "593212680" } ] }, "sources" : { @@ -129846,7 +129172,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Passport", + "category" : "SubstanceOfConcer", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -129875,12 +129201,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-02-12", + "date" : "2023-08-31", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : true, + "reusablePackaging" : false, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -129891,9 +129217,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 0.8403 ] + "left" : [ 1.717 ] }, - "id" : "FD7625" + "id" : "ZL7204" } ] }, "additionalData" : [ { @@ -129919,7 +129245,7 @@ "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Manganese" + "name" : "Steel" } ], "critical" : [ "Nickel" ], "carbonFootprint" : { @@ -129931,39 +129257,40 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 117 + "carbonContentTotal" : 108 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AYRE", + "importer" : "BPNL00000003B3NX", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003B3NX", "manufacturerId" : "BPNL00000003AYRE" } } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", + "partTypeInformation" : { + "ownerPartId" : "38049661-08", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Battery", + "partClassification" : [ { + "value" : "Battery", + "key" : "BPNL00000003AYRE:PartFamily" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + "nameAtOwner" : "Battery" + } } ], "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 33, + "recycledContent" : 24, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -129973,7 +129300,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 73, + "recycledContent" : 15, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -129983,7 +129310,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 87, + "recycledContent" : 17, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -129993,85 +129320,21 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", - "childItems" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "654735", + "orderNumber" : "813645", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -130082,8 +129345,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "8671", + "referencedStandard" : "ISO", + "referencedStandardID" : "4799", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -130094,22 +129357,22 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -130122,24 +129385,6 @@ } } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", - "partTypeInformation" : { - "ownerPartId" : "38049661-08", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "Battery", - "partClassification" : [ { - "value" : "Battery", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "Battery" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -130365,7 +129610,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-524017634554899551071911", + "batteryIDDMCCode" : "NO-396609437206965622860492", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -130384,6 +129629,21 @@ } ], "productType" : "pack" } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "customers" : [ "BPNL00000003AYRE" ] + } ], "urn:samm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { "productConditions" : "at least 1990 model", "desiredPrice" : { @@ -130399,7 +129659,7 @@ "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 25, + "recycledContent" : 54, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -130409,7 +129669,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 50, + "recycledContent" : 38, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -130419,7 +129679,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 29, + "recycledContent" : 31, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -130430,112 +129690,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "catenaXId" : "urn:uuid:aaaf2711-d8d9-45c9-a7ed-dce8146dbaa8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "catenaXId" : "urn:uuid:7756181a-69be-42fb-9b98-39a9033f6a14", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "catenaXId" : "urn:uuid:e2344a5f-6e47-481f-a54f-8441a4db4c6e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "catenaXId" : "urn:uuid:fd7f8451-f07e-43a4-99fc-68a15d4c0348", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "catenaXId" : "urn:uuid:b14a8bbc-471b-42a5-ac31-d65e527cb894", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "catenaXId" : "urn:uuid:1f52374a-db84-4e36-86f5-7bf31322bf35", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "catenaXId" : "urn:uuid:06be74e5-b240-4993-968a-ced4b98154ce", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "catenaXId" : "urn:uuid:88c29cd0-50b0-4b4a-b123-e7437b2a2890", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "catenaXId" : "urn:uuid:b068c467-00ea-4ec8-a83f-0f6355b7b8a7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "catenaXId" : "urn:uuid:26d4e130-6c90-44e9-b0b0-9f54d72c282a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -130543,35 +129803,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "273206", + "orderNumber" : "218291", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "1736", + "referencedStandard" : "AISI", + "referencedStandardID" : "6736", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -130580,14 +129840,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -130597,13 +129857,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -130618,7 +129878,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-437222166318482402504580", + "value" : "NO-861507098247135201326269", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -130629,7 +129889,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -130641,10 +129901,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "assetId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -130653,17 +129913,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3999547f-2b94-4ab5-b447-cdec7625c2ca", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:537aba27-77b6-453f-9ff7-9c217b5d0a8b", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -130672,17 +129932,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:37f760aa-779e-40fe-b240-91ae810af92f", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:4efa24e1-54f3-4b14-84f0-10b61d8c1c53", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "childassetId" : "urn:uuid:aaaf2711-d8d9-45c9-a7ed-dce8146dbaa8", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -130691,17 +129951,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b42557ad-3bb3-44db-b36d-e1f63798edfc", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:944fd3bd-7a32-42a8-a35d-779878e67403", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "childassetId" : "urn:uuid:7756181a-69be-42fb-9b98-39a9033f6a14", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -130710,17 +129970,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c2710673-d671-42d6-8d0e-c935c011fb64", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:c1578f4e-a319-4b54-8e06-792bdab0da29", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "childassetId" : "urn:uuid:e2344a5f-6e47-481f-a54f-8441a4db4c6e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -130729,17 +129989,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e3db81f2-6ba7-4363-a4b9-872ba74e29e8", + "ownerItemId" : "urn:uuid:635c101f-faa7-46cf-823f-e85e833e6f35", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "childassetId" : "urn:uuid:fd7f8451-f07e-43a4-99fc-68a15d4c0348", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -130748,17 +130008,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:206d3b69-3eb2-4659-830b-05379b8a124a", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:c631290c-0dc7-42b0-bce8-971089b30523", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "childassetId" : "urn:uuid:b14a8bbc-471b-42a5-ac31-d65e527cb894", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -130767,17 +130027,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:cde33f9a-77b0-4ed7-b8ec-4fe8206eaf5c", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:628d5653-48f4-4c9e-89df-aff9cd211009", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "childassetId" : "urn:uuid:1f52374a-db84-4e36-86f5-7bf31322bf35", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -130786,17 +130046,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3cb725ba-086b-4c7e-a9fb-2fa3aabd6a93", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:f9311878-0c19-40d8-874e-ede702a83116", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "childassetId" : "urn:uuid:06be74e5-b240-4993-968a-ced4b98154ce", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -130805,17 +130065,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a07e4be6-1cf7-4d67-b944-49b6657053f9", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:2e963ca9-04c8-42bd-97a6-2ac7e20b4ce3", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "childassetId" : "urn:uuid:88c29cd0-50b0-4b4a-b123-e7437b2a2890", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -130824,17 +130084,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:fd8e93c6-6843-4bee-8336-31a1058f7113", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:d1124561-bd1b-4642-9882-a1088c5ff102", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "childassetId" : "urn:uuid:b068c467-00ea-4ec8-a83f-0f6355b7b8a7", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -130843,38 +130103,20 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1f027e83-d4df-4b07-b886-d21cbf8efa89", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:4b00cea2-582e-4c34-a0c9-30c57024710a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "childassetId" : "urn:uuid:26d4e130-6c90-44e9-b0b0-9f54d72c282a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -131100,7 +130342,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-437222166318482402504580", + "batteryIDDMCCode" : "NO-861507098247135201326269", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -131142,13 +130384,13 @@ "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, - "issueDate" : "2024-02-29", - "version" : 1, + "issueDate" : "2023-02-27", + "version" : 2, "status" : "Draft" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.642, + "diameter" : 229.6598, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -131160,18 +130402,18 @@ } }, "commercial" : { - "placedOnMarket" : "2023-09-13", + "placedOnMarket" : "2021-12-25", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-437222166318482402504580", + "value" : "NO-861507098247135201326269", "key" : "PartInstanceID" } ], - "gtin" : " 66301870", + "gtin" : " 88631961", "additionalCode" : [ { "name" : "TARIC", - "value" : "829467178" + "value" : "485635879" } ] }, "sources" : { @@ -131193,7 +130435,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Passport", + "category" : "SubstanceOfConcern", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -131222,12 +130464,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-03-05", + "date" : "2023-10-30", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : true, + "reusablePackaging" : false, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -131238,9 +130480,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 1.0243 ] + "left" : [ 3.8806 ] }, - "id" : "WD4510" + "id" : "MI8397" } ] }, "additionalData" : [ { @@ -131266,9 +130508,9 @@ "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Insulator" + "name" : "Manganese" } ], - "critical" : [ "Manganese" ], + "critical" : [ "Graphite" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -131278,14 +130520,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 118 + "carbonContentTotal" : 101 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003AXS3", "manufacturer" : { - "facilityId" : "BPNL00000003AYRE", + "facilityId" : "BPNL00000003B3NX", "manufacturerId" : "BPNL00000003AYRE" } } @@ -131298,31 +130540,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "catenaXId" : "urn:uuid:aaaf2711-d8d9-45c9-a7ed-dce8146dbaa8", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -131337,11 +130595,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-09-06", + "currentStateOfHealthTimestamp" : "2021-08-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthTimestamp" : "2024-03-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -131351,35 +130609,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "catenaXId" : "urn:uuid:aaaf2711-d8d9-45c9-a7ed-dce8146dbaa8", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "161005", + "orderNumber" : "186323", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "5583", + "referencedStandard" : "EN", + "referencedStandardID" : "4318", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -131388,30 +130646,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -131426,7 +130684,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-695649331867836258032978", + "value" : "NO-045687080273213632469255", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -131437,7 +130695,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "catenaXId" : "urn:uuid:aaaf2711-d8d9-45c9-a7ed-dce8146dbaa8", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -131449,10 +130707,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "assetId" : "urn:uuid:aaaf2711-d8d9-45c9-a7ed-dce8146dbaa8", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -131461,17 +130719,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e548a9c0-ee1c-4c82-917a-2ea906651ea8", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:a46d5d30-d25d-4086-a85a-246ac6afcdde", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -131484,24 +130742,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -131727,7 +130967,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-695649331867836258032978", + "batteryIDDMCCode" : "NO-045687080273213632469255", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -131746,31 +130986,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:aaaf2711-d8d9-45c9-a7ed-dce8146dbaa8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:aaaf2711-d8d9-45c9-a7ed-dce8146dbaa8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "catenaXId" : "urn:uuid:7756181a-69be-42fb-9b98-39a9033f6a14", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -131785,11 +131041,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-01", + "currentStateOfHealthTimestamp" : "2018-08-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -131799,25 +131055,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "catenaXId" : "urn:uuid:7756181a-69be-42fb-9b98-39a9033f6a14", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "564849", + "orderNumber" : "952895", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -131826,8 +131082,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "7058", + "referencedStandard" : "JASO", + "referencedStandardID" : "4792", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -131839,7 +131095,7 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -131853,7 +131109,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -131874,7 +131130,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-888132613663078235630423", + "value" : "NO-238795120033147590800901", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -131885,7 +131141,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "catenaXId" : "urn:uuid:7756181a-69be-42fb-9b98-39a9033f6a14", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -131897,10 +131153,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "assetId" : "urn:uuid:7756181a-69be-42fb-9b98-39a9033f6a14", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -131909,17 +131165,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f5c10410-07d6-48de-8bc1-1cf602e5b355", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:36949b13-2e49-4028-ba79-75da13e51f39", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -131932,24 +131188,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -132175,7 +131413,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-888132613663078235630423", + "batteryIDDMCCode" : "NO-238795120033147590800901", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -132194,31 +131432,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7756181a-69be-42fb-9b98-39a9033f6a14", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7756181a-69be-42fb-9b98-39a9033f6a14", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "catenaXId" : "urn:uuid:e2344a5f-6e47-481f-a54f-8441a4db4c6e", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -132233,11 +131487,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-01-14", + "currentStateOfHealthTimestamp" : "2021-06-15", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-05", + "currentStateOfHealthTimestamp" : "2024-03-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -132247,19 +131501,19 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "catenaXId" : "urn:uuid:e2344a5f-6e47-481f-a54f-8441a4db4c6e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "656638", + "orderNumber" : "29146", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -132270,12 +131524,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "7771", + "referencedStandard" : "JIS", + "referencedStandardID" : "7149", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -132284,24 +131538,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -132322,7 +131576,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-969570155601910380830420", + "value" : "NO-136752824476347417416968", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -132333,7 +131587,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "catenaXId" : "urn:uuid:e2344a5f-6e47-481f-a54f-8441a4db4c6e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -132345,10 +131599,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "assetId" : "urn:uuid:e2344a5f-6e47-481f-a54f-8441a4db4c6e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -132357,17 +131611,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8bfd8b50-f2eb-4a44-b714-dc5428d27848", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:5a067839-e725-4185-bdf1-859bd8873e58", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -132380,24 +131634,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -132623,7 +131859,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-969570155601910380830420", + "batteryIDDMCCode" : "NO-136752824476347417416968", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -132642,31 +131878,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e2344a5f-6e47-481f-a54f-8441a4db4c6e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e2344a5f-6e47-481f-a54f-8441a4db4c6e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "catenaXId" : "urn:uuid:fd7f8451-f07e-43a4-99fc-68a15d4c0348", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -132681,11 +131933,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-04-17", + "currentStateOfHealthTimestamp" : "2017-01-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-03-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -132695,19 +131947,19 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "catenaXId" : "urn:uuid:fd7f8451-f07e-43a4-99fc-68a15d4c0348", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "285930", + "orderNumber" : "824966", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -132718,12 +131970,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "6866", + "referencedStandard" : "EN", + "referencedStandardID" : "4776", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -132732,30 +131984,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -132770,7 +132022,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-565760403114294608440766", + "value" : "NO-496228919958328322723796", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -132781,7 +132033,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "catenaXId" : "urn:uuid:fd7f8451-f07e-43a4-99fc-68a15d4c0348", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -132796,7 +132048,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "assetId" : "urn:uuid:fd7f8451-f07e-43a4-99fc-68a15d4c0348", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -132805,17 +132057,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c6397c41-3dc2-4daf-b3e4-58a709b0d2c4", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:efe827f9-0a46-4938-ba3a-47b51c687048", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -132828,24 +132080,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -133071,7 +132305,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-565760403114294608440766", + "batteryIDDMCCode" : "NO-496228919958328322723796", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -133090,31 +132324,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fd7f8451-f07e-43a4-99fc-68a15d4c0348", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fd7f8451-f07e-43a4-99fc-68a15d4c0348", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "catenaXId" : "urn:uuid:b14a8bbc-471b-42a5-ac31-d65e527cb894", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -133129,11 +132379,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-09-18", + "currentStateOfHealthTimestamp" : "2022-04-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -133143,35 +132393,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "catenaXId" : "urn:uuid:b14a8bbc-471b-42a5-ac31-d65e527cb894", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "339013", + "orderNumber" : "202813", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "8019", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "4951", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -133183,11 +132433,11 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -133197,13 +132447,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -133218,7 +132468,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-549662913585943094603411", + "value" : "NO-093033786558024834039405", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -133229,7 +132479,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "catenaXId" : "urn:uuid:b14a8bbc-471b-42a5-ac31-d65e527cb894", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -133241,10 +132491,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "assetId" : "urn:uuid:b14a8bbc-471b-42a5-ac31-d65e527cb894", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -133253,17 +132503,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:595e3365-624b-4ea1-9fca-7503bc7022d3", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:dbd558d4-ed82-4c77-9b42-f68fed45b53f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -133276,24 +132526,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -133519,7 +132751,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-549662913585943094603411", + "batteryIDDMCCode" : "NO-093033786558024834039405", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -133538,31 +132770,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b14a8bbc-471b-42a5-ac31-d65e527cb894", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b14a8bbc-471b-42a5-ac31-d65e527cb894", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "catenaXId" : "urn:uuid:1f52374a-db84-4e36-86f5-7bf31322bf35", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -133577,11 +132825,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-10-05", + "currentStateOfHealthTimestamp" : "2020-10-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-04-01", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -133591,35 +132839,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "catenaXId" : "urn:uuid:1f52374a-db84-4e36-86f5-7bf31322bf35", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "809420", + "orderNumber" : "931320", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "1978", + "referencedStandard" : "JIS", + "referencedStandardID" : "4061", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -133628,30 +132876,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -133666,7 +132914,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-221883872424118254324385", + "value" : "NO-350017826715088566619919", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -133677,7 +132925,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "catenaXId" : "urn:uuid:1f52374a-db84-4e36-86f5-7bf31322bf35", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -133689,10 +132937,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "assetId" : "urn:uuid:1f52374a-db84-4e36-86f5-7bf31322bf35", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -133701,17 +132949,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c680e92a-0fb5-49ca-9f84-3917493662e6", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:4d4efc01-f9cf-483c-b3eb-bc79c0aa9ad7", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -133724,24 +132972,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -133967,7 +133197,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-221883872424118254324385", + "batteryIDDMCCode" : "NO-350017826715088566619919", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -133986,31 +133216,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1f52374a-db84-4e36-86f5-7bf31322bf35", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1f52374a-db84-4e36-86f5-7bf31322bf35", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "catenaXId" : "urn:uuid:06be74e5-b240-4993-968a-ced4b98154ce", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -134025,11 +133271,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-09-07", + "currentStateOfHealthTimestamp" : "2014-05-29", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-09", + "currentStateOfHealthTimestamp" : "2024-03-31", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -134039,14 +133285,14 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "catenaXId" : "urn:uuid:06be74e5-b240-4993-968a-ced4b98154ce", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "586045", + "orderNumber" : "635092", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { @@ -134055,9 +133301,9 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -134066,8 +133312,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "2179", + "referencedStandard" : "JASO", + "referencedStandardID" : "1707", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -134078,12 +133324,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -134093,13 +133339,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -134114,7 +133360,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-361394052163820362674142", + "value" : "NO-477192556802942593241896", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -134125,7 +133371,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "catenaXId" : "urn:uuid:06be74e5-b240-4993-968a-ced4b98154ce", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -134137,10 +133383,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "assetId" : "urn:uuid:06be74e5-b240-4993-968a-ced4b98154ce", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -134149,17 +133395,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f28b5152-b3d9-4510-90fe-080a4ce5ceb7", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:1aea16c7-45c4-44fd-a3d3-91e86923c18b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -134172,24 +133418,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -134415,7 +133643,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-361394052163820362674142", + "batteryIDDMCCode" : "NO-477192556802942593241896", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -134434,31 +133662,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:06be74e5-b240-4993-968a-ced4b98154ce", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:06be74e5-b240-4993-968a-ced4b98154ce", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "catenaXId" : "urn:uuid:88c29cd0-50b0-4b4a-b123-e7437b2a2890", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -134473,11 +133717,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-08-29", + "currentStateOfHealthTimestamp" : "2024-02-13", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthTimestamp" : "2024-03-31", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -134487,35 +133731,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "catenaXId" : "urn:uuid:88c29cd0-50b0-4b4a-b123-e7437b2a2890", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "45934", + "orderNumber" : "533617", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "3486", + "referencedStandard" : "DIN", + "referencedStandardID" : "9684", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -134524,30 +133768,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -134562,7 +133806,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-405115524948461037888275", + "value" : "NO-063922441827556669651970", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -134573,7 +133817,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "catenaXId" : "urn:uuid:88c29cd0-50b0-4b4a-b123-e7437b2a2890", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -134585,10 +133829,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "assetId" : "urn:uuid:88c29cd0-50b0-4b4a-b123-e7437b2a2890", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -134597,17 +133841,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9ec2fa8e-68ab-4d8a-9861-d6ae75494c06", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:42a07987-c479-4bb1-8486-77d646454b3b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -134620,24 +133864,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -134863,7 +134089,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-405115524948461037888275", + "batteryIDDMCCode" : "NO-063922441827556669651970", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -134882,31 +134108,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:88c29cd0-50b0-4b4a-b123-e7437b2a2890", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:88c29cd0-50b0-4b4a-b123-e7437b2a2890", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "catenaXId" : "urn:uuid:b068c467-00ea-4ec8-a83f-0f6355b7b8a7", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -134921,11 +134163,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-08-27", + "currentStateOfHealthTimestamp" : "2020-02-13", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -134935,35 +134177,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "catenaXId" : "urn:uuid:b068c467-00ea-4ec8-a83f-0f6355b7b8a7", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "690236", + "orderNumber" : "179211", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "DIN EN", - "referencedStandardID" : "9327", + "referencedStandardID" : "5444", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -134974,28 +134216,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -135010,7 +134252,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-687245070682008690060213", + "value" : "NO-911510362787579559079286", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -135021,7 +134263,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "catenaXId" : "urn:uuid:b068c467-00ea-4ec8-a83f-0f6355b7b8a7", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -135033,10 +134275,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "assetId" : "urn:uuid:b068c467-00ea-4ec8-a83f-0f6355b7b8a7", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -135045,17 +134287,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f36d1321-7174-413b-a8b4-e7d77755c39e", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:184fa6a0-a5b2-44b6-a703-8bbd0ee289c7", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -135068,24 +134310,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -135311,7 +134535,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-687245070682008690060213", + "batteryIDDMCCode" : "NO-911510362787579559079286", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -135330,31 +134554,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b068c467-00ea-4ec8-a83f-0f6355b7b8a7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b068c467-00ea-4ec8-a83f-0f6355b7b8a7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "catenaXId" : "urn:uuid:26d4e130-6c90-44e9-b0b0-9f54d72c282a", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -135369,11 +134609,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-02-20", + "currentStateOfHealthTimestamp" : "2017-10-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-09", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -135383,35 +134623,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "catenaXId" : "urn:uuid:26d4e130-6c90-44e9-b0b0-9f54d72c282a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "281167", + "orderNumber" : "119145", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "6658", + "referencedStandard" : "GB", + "referencedStandardID" : "9426", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -135423,7 +134663,7 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -135433,17 +134673,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -135458,7 +134698,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-153305463722086790275389", + "value" : "NO-154463244007109507380049", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -135469,7 +134709,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "catenaXId" : "urn:uuid:26d4e130-6c90-44e9-b0b0-9f54d72c282a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -135481,10 +134721,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "assetId" : "urn:uuid:26d4e130-6c90-44e9-b0b0-9f54d72c282a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -135493,17 +134733,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:af2d2529-42b6-41d5-acaa-84b57eb40235", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:5a0b2dbf-5ba3-46c9-8f21-092ec918eb4a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -135516,24 +134756,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -135759,7 +134981,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-153305463722086790275389", + "batteryIDDMCCode" : "NO-154463244007109507380049", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -135778,28 +135000,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:26d4e130-6c90-44e9-b0b0-9f54d72c282a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:26d4e130-6c90-44e9-b0b0-9f54d72c282a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 67, + "recycledContent" : 78, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -135809,7 +135047,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 25, + "recycledContent" : 2, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -135819,7 +135057,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 52, + "recycledContent" : 16, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -135830,112 +135068,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "catenaXId" : "urn:uuid:8f86d47f-3e4c-4f79-949c-14f77acbd086", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "catenaXId" : "urn:uuid:9be06c64-fb59-4815-9942-70459a58583f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "catenaXId" : "urn:uuid:c6cd4e08-cab6-422b-9031-d683c341646b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "catenaXId" : "urn:uuid:10fbfcc2-09d0-4243-93d6-25660b4dac4d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "catenaXId" : "urn:uuid:548fbabe-1e7b-4b08-a917-36782d4a5b15", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "catenaXId" : "urn:uuid:c657a87d-d2e2-4641-9ef6-a14501b766e6", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "catenaXId" : "urn:uuid:5724ca7d-8bdd-4051-b7aa-8797c9dacbe7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "catenaXId" : "urn:uuid:fca6bc5d-af4d-424a-a7cc-1a400d6b4153", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "catenaXId" : "urn:uuid:6b6cffee-9566-44d3-9424-341e65df404c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "catenaXId" : "urn:uuid:9b7d04c2-94db-4acf-85c3-707fb486d6f8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -135943,35 +135181,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "50016", + "orderNumber" : "903441", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "2244", + "referencedStandard" : "ISO", + "referencedStandardID" : "8732", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -135983,11 +135221,11 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -135997,13 +135235,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -136018,7 +135256,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-973954279957624820638186", + "value" : "NO-572372710040873558705452", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -136029,7 +135267,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -136044,7 +135282,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "assetId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -136053,17 +135291,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1678866b-7393-4244-8b51-de9a08dc2f80", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:ff94687a-1418-476a-bd4b-11bcafffb6d5", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -136072,17 +135310,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9d75d3ce-c3ec-4244-87f0-019b0c06a5ce", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:9ff6fde6-d24f-4c79-bd06-513f8034a650", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "childassetId" : "urn:uuid:8f86d47f-3e4c-4f79-949c-14f77acbd086", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -136091,17 +135329,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8103a66c-3e8e-4df3-b7e9-fd1ee82f538b", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:404d30f1-f126-4dae-80e4-302a0e1798d6", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "childassetId" : "urn:uuid:9be06c64-fb59-4815-9942-70459a58583f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -136110,17 +135348,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:38967ae6-bdaa-4e04-ade3-a6cd43cc650f", + "ownerItemId" : "urn:uuid:d14c7363-5c3e-4536-a45a-b104a5bc64ef", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "childassetId" : "urn:uuid:c6cd4e08-cab6-422b-9031-d683c341646b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -136129,17 +135367,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:69d13cd3-847b-4c1b-be63-6c58e96f201c", + "ownerItemId" : "urn:uuid:08fcfe3e-080b-4428-b74c-aa3b20f73cdd", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "childassetId" : "urn:uuid:10fbfcc2-09d0-4243-93d6-25660b4dac4d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -136148,17 +135386,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0b2aeb67-2cf1-4420-9274-79c04c22fdf0", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:114df359-9728-4a35-b6c6-379a7f658355", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "childassetId" : "urn:uuid:548fbabe-1e7b-4b08-a917-36782d4a5b15", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -136167,17 +135405,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7611fea4-7121-4d4c-a6df-ea1a42551d72", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:8f85f1fe-64e2-4fa2-ae4d-97029d6f6e2e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "childassetId" : "urn:uuid:c657a87d-d2e2-4641-9ef6-a14501b766e6", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -136186,17 +135424,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:cb034949-ec53-47ea-ad08-52150fedbdf0", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:54b1b2cc-1943-4c58-9f3e-cbd7faa92096", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "childassetId" : "urn:uuid:5724ca7d-8bdd-4051-b7aa-8797c9dacbe7", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -136205,17 +135443,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:02f01928-7865-4497-9c0e-0dda7c851f2d", + "ownerItemId" : "urn:uuid:37ed351b-c881-4b91-a8d4-38fdbdc95047", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "childassetId" : "urn:uuid:fca6bc5d-af4d-424a-a7cc-1a400d6b4153", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -136224,17 +135462,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ce248ff3-dd7c-49ee-ae10-a20474aa3758", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:df149bc7-bb78-46c9-b980-888130869804", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "childassetId" : "urn:uuid:6b6cffee-9566-44d3-9424-341e65df404c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -136243,38 +135481,20 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:08db6c8d-c7c7-435a-8bac-229ad5ace3a3", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:58383027-1107-4748-810e-e81a1fa44ede", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "childassetId" : "urn:uuid:9b7d04c2-94db-4acf-85c3-707fb486d6f8", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -136500,7 +135720,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-973954279957624820638186", + "batteryIDDMCCode" : "NO-572372710040873558705452", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -136542,13 +135762,13 @@ "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, - "issueDate" : "2021-04-25", - "version" : 1.5, - "status" : "Expired" + "issueDate" : "2022-06-06", + "version" : 1.2, + "status" : "Draft" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6918, + "diameter" : 229.628, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -136556,22 +135776,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 16 + "value" : 18 } }, "commercial" : { - "placedOnMarket" : "2021-03-29", + "placedOnMarket" : "2021-04-11", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-973954279957624820638186", + "value" : "NO-572372710040873558705452", "key" : "PartInstanceID" } ], - "gtin" : " 24293609", + "gtin" : " 38708173", "additionalCode" : [ { "name" : "TARIC", - "value" : "532048433" + "value" : "914038656" } ] }, "sources" : { @@ -136593,7 +135813,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", + "category" : "Passport", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -136622,12 +135842,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2022-10-06", + "date" : "2022-06-25", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : false, + "reusablePackaging" : true, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -136638,9 +135858,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 7.1058 ] + "left" : [ 6.6738 ] }, - "id" : "WX3550" + "id" : "VM1276" } ] }, "additionalData" : [ { @@ -136666,9 +135886,9 @@ "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Copper" + "name" : "Cobalt" } ], - "critical" : [ "Nickel" ], + "critical" : [ "Manganese" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -136678,14 +135898,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 118 + "carbonContentTotal" : 116 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AYRE", + "importer" : "BPNL00000003B2OM", "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", + "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AYRE" } } @@ -136698,31 +135918,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "catenaXId" : "urn:uuid:8f86d47f-3e4c-4f79-949c-14f77acbd086", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -136737,11 +135973,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-02-22", + "currentStateOfHealthTimestamp" : "2015-12-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-03-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -136751,35 +135987,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "catenaXId" : "urn:uuid:8f86d47f-3e4c-4f79-949c-14f77acbd086", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "951213", + "orderNumber" : "285061", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "9847", + "referencedStandard" : "JASO", + "referencedStandardID" : "1342", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -136788,30 +136024,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -136826,7 +136062,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-992195203154788914340114", + "value" : "NO-203671166348709875780872", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -136837,7 +136073,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "catenaXId" : "urn:uuid:8f86d47f-3e4c-4f79-949c-14f77acbd086", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -136849,10 +136085,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "assetId" : "urn:uuid:8f86d47f-3e4c-4f79-949c-14f77acbd086", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -136861,17 +136097,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ee06ec61-d892-4f5e-9dbe-5c420fc45df5", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:1f1240ae-6c79-459f-9511-8525109d0d9c", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -136884,24 +136120,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -137127,7 +136345,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-992195203154788914340114", + "batteryIDDMCCode" : "NO-203671166348709875780872", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -137146,31 +136364,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8f86d47f-3e4c-4f79-949c-14f77acbd086", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8f86d47f-3e4c-4f79-949c-14f77acbd086", + "parentItems" : [ { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "catenaXId" : "urn:uuid:9be06c64-fb59-4815-9942-70459a58583f", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -137185,11 +136419,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-07-24", + "currentStateOfHealthTimestamp" : "2015-09-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthTimestamp" : "2024-03-18", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -137199,35 +136433,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "catenaXId" : "urn:uuid:9be06c64-fb59-4815-9942-70459a58583f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "310623", + "orderNumber" : "996777", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "5436", + "referencedStandard" : "ISO", + "referencedStandardID" : "8987", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -137236,20 +136470,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -137274,7 +136508,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-347677125419085124787924", + "value" : "NO-931937961024578613536361", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -137285,7 +136519,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "catenaXId" : "urn:uuid:9be06c64-fb59-4815-9942-70459a58583f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -137297,10 +136531,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "assetId" : "urn:uuid:9be06c64-fb59-4815-9942-70459a58583f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -137309,17 +136543,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ab0b6060-309c-47a6-9fa1-d012c1a1aace", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:2bd93ea6-f614-472e-b5af-a421869d6937", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -137332,24 +136566,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -137575,7 +136791,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-347677125419085124787924", + "batteryIDDMCCode" : "NO-931937961024578613536361", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -137594,31 +136810,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9be06c64-fb59-4815-9942-70459a58583f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9be06c64-fb59-4815-9942-70459a58583f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "catenaXId" : "urn:uuid:c6cd4e08-cab6-422b-9031-d683c341646b", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -137633,11 +136865,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-06-12", + "currentStateOfHealthTimestamp" : "2021-06-22", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthTimestamp" : "2024-03-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -137647,10 +136879,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "catenaXId" : "urn:uuid:c6cd4e08-cab6-422b-9031-d683c341646b", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "890064", + "orderNumber" : "39612", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -137663,7 +136895,7 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -137674,8 +136906,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "1846", + "referencedStandard" : "ASME", + "referencedStandardID" : "7630", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -137687,21 +136919,21 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -137722,7 +136954,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-758372629663542271212580", + "value" : "NO-680434833839072796102873", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -137733,7 +136965,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "catenaXId" : "urn:uuid:c6cd4e08-cab6-422b-9031-d683c341646b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -137748,7 +136980,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "assetId" : "urn:uuid:c6cd4e08-cab6-422b-9031-d683c341646b", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -137757,17 +136989,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:41d8fcb1-775d-4d41-b181-2bb7070835d2", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:08d48088-fe4a-4345-8202-d8a5d44fe1dc", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -137780,24 +137012,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -138023,7 +137237,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-758372629663542271212580", + "batteryIDDMCCode" : "NO-680434833839072796102873", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -138042,31 +137256,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c6cd4e08-cab6-422b-9031-d683c341646b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c6cd4e08-cab6-422b-9031-d683c341646b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "catenaXId" : "urn:uuid:10fbfcc2-09d0-4243-93d6-25660b4dac4d", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -138081,11 +137311,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-07-18", + "currentStateOfHealthTimestamp" : "2018-10-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-03-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -138095,35 +137325,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "catenaXId" : "urn:uuid:10fbfcc2-09d0-4243-93d6-25660b4dac4d", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "616887", + "orderNumber" : "444445", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "6569", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6783", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -138132,14 +137362,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -138149,7 +137379,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -138170,7 +137400,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-235749068781688754853632", + "value" : "NO-475960552493004844235088", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -138181,7 +137411,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "catenaXId" : "urn:uuid:10fbfcc2-09d0-4243-93d6-25660b4dac4d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -138196,7 +137426,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "assetId" : "urn:uuid:10fbfcc2-09d0-4243-93d6-25660b4dac4d", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -138205,17 +137435,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:66cb1026-6c8a-42fa-998c-b5d777f2dd98", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:877c48ac-be8c-4c6b-9978-bd4b1efb54bd", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -138228,24 +137458,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -138471,7 +137683,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-235749068781688754853632", + "batteryIDDMCCode" : "NO-475960552493004844235088", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -138490,31 +137702,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:10fbfcc2-09d0-4243-93d6-25660b4dac4d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:10fbfcc2-09d0-4243-93d6-25660b4dac4d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "catenaXId" : "urn:uuid:548fbabe-1e7b-4b08-a917-36782d4a5b15", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -138529,11 +137757,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-08-12", + "currentStateOfHealthTimestamp" : "2022-03-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-04", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -138543,10 +137771,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "catenaXId" : "urn:uuid:548fbabe-1e7b-4b08-a917-36782d4a5b15", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "880788", + "orderNumber" : "136854", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -138555,23 +137783,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "8878", + "referencedStandard" : "ASME", + "referencedStandardID" : "4314", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -138580,30 +137808,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -138618,7 +137846,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-637522255197238915757394", + "value" : "NO-882877641360870571303386", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -138629,7 +137857,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "catenaXId" : "urn:uuid:548fbabe-1e7b-4b08-a917-36782d4a5b15", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -138641,10 +137869,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "assetId" : "urn:uuid:548fbabe-1e7b-4b08-a917-36782d4a5b15", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -138653,17 +137881,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:47f03566-7c54-4ace-968d-8b3580ed8a41", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:edda4b9c-5749-4b25-9851-2bcd794aa74e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -138676,24 +137904,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -138919,7 +138129,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-637522255197238915757394", + "batteryIDDMCCode" : "NO-882877641360870571303386", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -138938,31 +138148,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:548fbabe-1e7b-4b08-a917-36782d4a5b15", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:548fbabe-1e7b-4b08-a917-36782d4a5b15", + "parentItems" : [ { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "catenaXId" : "urn:uuid:c657a87d-d2e2-4641-9ef6-a14501b766e6", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -138977,11 +138203,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-02-24", + "currentStateOfHealthTimestamp" : "2020-11-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-15", + "currentStateOfHealthTimestamp" : "2024-03-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -138991,35 +138217,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "catenaXId" : "urn:uuid:c657a87d-d2e2-4641-9ef6-a14501b766e6", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "459310", + "orderNumber" : "503404", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "GB", - "referencedStandardID" : "9876", + "referencedStandardID" : "2545", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -139031,21 +138257,21 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -139066,7 +138292,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-013538992992080944605829", + "value" : "NO-297888230884067807374076", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -139077,7 +138303,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "catenaXId" : "urn:uuid:c657a87d-d2e2-4641-9ef6-a14501b766e6", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -139089,10 +138315,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "assetId" : "urn:uuid:c657a87d-d2e2-4641-9ef6-a14501b766e6", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -139101,17 +138327,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:26d4a0c1-dfb8-4c72-a987-f1f189af44bd", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:3d9645f8-8fc9-4c6e-93e4-97794c8ec5ba", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -139124,24 +138350,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -139367,7 +138575,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-013538992992080944605829", + "batteryIDDMCCode" : "NO-297888230884067807374076", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -139386,31 +138594,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c657a87d-d2e2-4641-9ef6-a14501b766e6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c657a87d-d2e2-4641-9ef6-a14501b766e6", + "parentItems" : [ { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "catenaXId" : "urn:uuid:5724ca7d-8bdd-4051-b7aa-8797c9dacbe7", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -139425,11 +138649,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-06-10", + "currentStateOfHealthTimestamp" : "2023-11-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-25", + "currentStateOfHealthTimestamp" : "2024-03-28", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -139439,35 +138663,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "catenaXId" : "urn:uuid:5724ca7d-8bdd-4051-b7aa-8797c9dacbe7", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "800341", + "orderNumber" : "767225", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "6894", + "referencedStandard" : "AISI", + "referencedStandardID" : "1628", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -139479,27 +138703,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -139514,7 +138738,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-642680594659421069431919", + "value" : "NO-853195758402311021260255", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -139525,7 +138749,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "catenaXId" : "urn:uuid:5724ca7d-8bdd-4051-b7aa-8797c9dacbe7", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -139537,10 +138761,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "assetId" : "urn:uuid:5724ca7d-8bdd-4051-b7aa-8797c9dacbe7", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -139549,17 +138773,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a9d5cb5b-3789-4848-a789-4c2867767a16", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:5bf69641-2f2d-44f0-97b2-568383e364ff", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -139572,24 +138796,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -139815,7 +139021,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-642680594659421069431919", + "batteryIDDMCCode" : "NO-853195758402311021260255", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -139834,31 +139040,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5724ca7d-8bdd-4051-b7aa-8797c9dacbe7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5724ca7d-8bdd-4051-b7aa-8797c9dacbe7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "catenaXId" : "urn:uuid:fca6bc5d-af4d-424a-a7cc-1a400d6b4153", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -139873,11 +139095,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-08-18", + "currentStateOfHealthTimestamp" : "2014-10-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthTimestamp" : "2024-03-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -139887,35 +139109,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "catenaXId" : "urn:uuid:fca6bc5d-af4d-424a-a7cc-1a400d6b4153", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "550091", + "orderNumber" : "843057", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "6258", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6807", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -139924,30 +139146,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -139962,7 +139184,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-827788544499292219780017", + "value" : "NO-260332478775863502688771", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -139973,7 +139195,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "catenaXId" : "urn:uuid:fca6bc5d-af4d-424a-a7cc-1a400d6b4153", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -139988,7 +139210,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "assetId" : "urn:uuid:fca6bc5d-af4d-424a-a7cc-1a400d6b4153", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -139997,17 +139219,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:53d01b82-7d7d-40db-b4fb-787bd6d7696a", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:3ab2783b-3b8d-4bee-bda7-0fc34c6a7352", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -140020,24 +139242,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -140263,7 +139467,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-827788544499292219780017", + "batteryIDDMCCode" : "NO-260332478775863502688771", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -140282,31 +139486,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fca6bc5d-af4d-424a-a7cc-1a400d6b4153", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fca6bc5d-af4d-424a-a7cc-1a400d6b4153", + "parentItems" : [ { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "catenaXId" : "urn:uuid:6b6cffee-9566-44d3-9424-341e65df404c", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -140321,11 +139541,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-02-01", + "currentStateOfHealthTimestamp" : "2019-04-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -140335,25 +139555,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "catenaXId" : "urn:uuid:6b6cffee-9566-44d3-9424-341e65df404c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "360508", + "orderNumber" : "271998", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 24 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -140362,8 +139582,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "1156", + "referencedStandard" : "ASME", + "referencedStandardID" : "4703", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -140372,14 +139592,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -140389,13 +139609,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -140410,7 +139630,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-051211648132031036055007", + "value" : "NO-519038155525589438619631", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -140421,7 +139641,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "catenaXId" : "urn:uuid:6b6cffee-9566-44d3-9424-341e65df404c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -140433,10 +139653,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "assetId" : "urn:uuid:6b6cffee-9566-44d3-9424-341e65df404c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -140445,17 +139665,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9f463c75-5ea6-4f5b-89c8-1d3783be1a54", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:c4166d4f-6cd5-4fa6-973d-4491fedbf961", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -140468,24 +139688,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -140711,7 +139913,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-051211648132031036055007", + "batteryIDDMCCode" : "NO-519038155525589438619631", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -140730,31 +139932,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6b6cffee-9566-44d3-9424-341e65df404c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6b6cffee-9566-44d3-9424-341e65df404c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "catenaXId" : "urn:uuid:9b7d04c2-94db-4acf-85c3-707fb486d6f8", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -140769,11 +139987,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-11-19", + "currentStateOfHealthTimestamp" : "2017-05-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-03-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -140783,10 +140001,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "catenaXId" : "urn:uuid:9b7d04c2-94db-4acf-85c3-707fb486d6f8", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "501372", + "orderNumber" : "426388", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -140795,23 +140013,23 @@ "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "8190", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7104", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -140820,30 +140038,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -140858,7 +140076,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-274639447767522987739067", + "value" : "NO-992573505811578278902838", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -140869,7 +140087,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "catenaXId" : "urn:uuid:9b7d04c2-94db-4acf-85c3-707fb486d6f8", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -140881,10 +140099,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "assetId" : "urn:uuid:9b7d04c2-94db-4acf-85c3-707fb486d6f8", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -140893,17 +140111,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:429ccd5f-2019-41d4-ae7b-20aacb54238a", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:1e1b3153-f470-47c3-9a90-30c5e4d9fa3d", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -140916,24 +140134,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -141159,7 +140359,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-274639447767522987739067", + "batteryIDDMCCode" : "NO-992573505811578278902838", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -141178,28 +140378,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9b7d04c2-94db-4acf-85c3-707fb486d6f8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9b7d04c2-94db-4acf-85c3-707fb486d6f8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 53, + "recycledContent" : 16, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -141209,7 +140425,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 54, + "recycledContent" : 58, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -141219,7 +140435,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 59, + "recycledContent" : 60, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -141230,112 +140446,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "catenaXId" : "urn:uuid:175b6480-ba68-4c4c-aae4-0c1db21e7789", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "catenaXId" : "urn:uuid:84cb61d6-450c-4551-aa05-4940692de5fb", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "catenaXId" : "urn:uuid:8ebcd460-79a1-439a-a38a-18316553e7e7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "catenaXId" : "urn:uuid:485aca52-3268-4ea4-bd4e-100b9b64c3d1", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "catenaXId" : "urn:uuid:caeffac4-63af-4773-8bc6-0d4ec3dc5c29", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "catenaXId" : "urn:uuid:6bcdb3b5-a613-4205-834d-4237ecffc8f9", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "catenaXId" : "urn:uuid:b5b38ae4-2eb0-4760-bec0-a755b90ea981", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "catenaXId" : "urn:uuid:fa2a6ffb-8582-4ef0-9e5f-1660ac70d671", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "catenaXId" : "urn:uuid:68002a94-6979-4c74-8806-3fee2e69335f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "catenaXId" : "urn:uuid:b423dcba-606d-477a-8d42-2f4f2293539e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -141343,25 +140559,25 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "446905", + "orderNumber" : "294830", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -141370,8 +140586,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "1337", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1431", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -141380,30 +140596,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -141418,7 +140634,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-866219940925227686334114", + "value" : "NO-969960797989408938117141", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -141429,7 +140645,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -141441,10 +140657,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "assetId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -141453,17 +140669,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3a22d8ba-a7be-4a60-bb38-f04cb3ab487e", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:590bfaf9-1900-4130-86a7-862ae93e1e01", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -141472,17 +140688,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:bc792b88-9b63-4a83-b291-e3753ce78079", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:a27a1b70-7f76-41e5-9621-d2cff64dcf5e", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "childassetId" : "urn:uuid:175b6480-ba68-4c4c-aae4-0c1db21e7789", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -141491,17 +140707,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:766ac4da-face-4c72-ad81-0ff2d8454d60", + "ownerItemId" : "urn:uuid:77f4ba6b-ced7-430e-8083-53a3e9f55234", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "childassetId" : "urn:uuid:84cb61d6-450c-4551-aa05-4940692de5fb", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -141510,17 +140726,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8b5c1cc1-8da2-4043-8454-a4fd263639a7", + "ownerItemId" : "urn:uuid:87d98e01-5dd8-402c-8309-92e286f09e7b", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "childassetId" : "urn:uuid:8ebcd460-79a1-439a-a38a-18316553e7e7", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -141529,17 +140745,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:17e49d1a-b12d-465f-988f-f60722b5de24", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:e8d5afb0-508e-4321-96ee-806db55c3143", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "childassetId" : "urn:uuid:485aca52-3268-4ea4-bd4e-100b9b64c3d1", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -141548,17 +140764,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:38bf8a9a-c7a0-474b-a7de-5e9e6217997d", + "ownerItemId" : "urn:uuid:18fadaf3-40fc-4b0e-a084-d2178a3a02cb", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "childassetId" : "urn:uuid:caeffac4-63af-4773-8bc6-0d4ec3dc5c29", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -141567,17 +140783,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:80dacd9f-01ae-45e2-8fff-faf462043825", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:32b93592-3e9f-4808-9e59-5ca1971acad7", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "childassetId" : "urn:uuid:6bcdb3b5-a613-4205-834d-4237ecffc8f9", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -141586,17 +140802,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:487fd997-6f52-4de3-8256-56a5e3e8d572", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:04ae6cea-45c8-464f-8001-d4dd4fcd246a", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "childassetId" : "urn:uuid:b5b38ae4-2eb0-4760-bec0-a755b90ea981", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -141605,17 +140821,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d688d80f-388f-430a-b99a-afb8e785c2d9", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:657fa211-3a15-4cf4-9d30-0dfa50581f36", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "childassetId" : "urn:uuid:fa2a6ffb-8582-4ef0-9e5f-1660ac70d671", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -141624,17 +140840,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7d159ee5-594a-4922-a4c6-16e178bfaeaa", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:75d988b1-8cb8-40c6-bd5f-a54e40f32c1e", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "childassetId" : "urn:uuid:68002a94-6979-4c74-8806-3fee2e69335f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -141643,38 +140859,20 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:35adc373-22a3-4322-af7f-88f98d763e20", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:6dc38c9f-ccf2-47e7-adbb-ae9fb4ee8b5b", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "childassetId" : "urn:uuid:b423dcba-606d-477a-8d42-2f4f2293539e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -141900,7 +141098,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-866219940925227686334114", + "batteryIDDMCCode" : "NO-969960797989408938117141", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -141942,13 +141140,13 @@ "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, - "issueDate" : "2023-07-27", - "version" : 2.4, - "status" : "Expired" + "issueDate" : "2024-01-08", + "version" : 1.9, + "status" : "Invalid" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6521, + "diameter" : 229.62879999999998, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -141956,22 +141154,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 19 + "value" : 15 } }, "commercial" : { - "placedOnMarket" : "2023-03-28", + "placedOnMarket" : "2023-12-02", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-866219940925227686334114", + "value" : "NO-969960797989408938117141", "key" : "PartInstanceID" } ], - "gtin" : " 19599333", + "gtin" : " 28084015", "additionalCode" : [ { "name" : "TARIC", - "value" : "857042567" + "value" : "787569704" } ] }, "sources" : { @@ -141993,7 +141191,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Sustainability", + "category" : "SubstanceOfConcern", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -142022,7 +141220,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-01-03", + "date" : "2024-02-05", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -142038,9 +141236,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 1.8125 ] + "left" : [ 2.6735 ] }, - "id" : "WS5730" + "id" : "SH8613" } ] }, "additionalData" : [ { @@ -142066,7 +141264,7 @@ "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Insulator" + "name" : "Nickel" } ], "critical" : [ "Manganese" ], "carbonFootprint" : { @@ -142078,12 +141276,12 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 106 + "carbonContentTotal" : 109 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B2OM", + "importer" : "BPNL00000003AYRE", "manufacturer" : { "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AYRE" @@ -142098,31 +141296,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "catenaXId" : "urn:uuid:175b6480-ba68-4c4c-aae4-0c1db21e7789", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -142137,11 +141351,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-11-17", + "currentStateOfHealthTimestamp" : "2020-11-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthTimestamp" : "2024-03-28", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -142151,25 +141365,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "catenaXId" : "urn:uuid:175b6480-ba68-4c4c-aae4-0c1db21e7789", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "593779", + "orderNumber" : "226053", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -142179,7 +141393,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "AISI", - "referencedStandardID" : "6516", + "referencedStandardID" : "3867", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -142190,7 +141404,7 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { @@ -142201,11 +141415,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -142226,7 +141440,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-372384834342259220312175", + "value" : "NO-226023691045065437700437", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -142237,7 +141451,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "catenaXId" : "urn:uuid:175b6480-ba68-4c4c-aae4-0c1db21e7789", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -142249,10 +141463,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "assetId" : "urn:uuid:175b6480-ba68-4c4c-aae4-0c1db21e7789", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -142261,17 +141475,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e90a86a6-b620-446e-8d31-3ba294e2e6a2", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:28dcbd46-337b-416a-82f4-153ce80a54e6", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -142284,24 +141498,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -142527,7 +141723,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-372384834342259220312175", + "batteryIDDMCCode" : "NO-226023691045065437700437", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -142546,31 +141742,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:175b6480-ba68-4c4c-aae4-0c1db21e7789", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:175b6480-ba68-4c4c-aae4-0c1db21e7789", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "catenaXId" : "urn:uuid:84cb61d6-450c-4551-aa05-4940692de5fb", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -142585,11 +141797,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-11-15", + "currentStateOfHealthTimestamp" : "2021-02-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -142599,35 +141811,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "catenaXId" : "urn:uuid:84cb61d6-450c-4551-aa05-4940692de5fb", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "810678", + "orderNumber" : "390018", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "JASO", - "referencedStandardID" : "1229", + "referencedStandardID" : "7265", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -142639,21 +141851,21 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { @@ -142674,7 +141886,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-088469934382593208474125", + "value" : "NO-638900391984588996515049", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -142685,7 +141897,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "catenaXId" : "urn:uuid:84cb61d6-450c-4551-aa05-4940692de5fb", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -142700,7 +141912,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "assetId" : "urn:uuid:84cb61d6-450c-4551-aa05-4940692de5fb", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -142709,17 +141921,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4197d8ec-b394-47b6-a0f5-cc6cf0f42944", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:d2248c3d-60e9-49eb-b954-f7a2a29d69cf", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -142732,24 +141944,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -142975,7 +142169,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-088469934382593208474125", + "batteryIDDMCCode" : "NO-638900391984588996515049", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -142994,31 +142188,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:84cb61d6-450c-4551-aa05-4940692de5fb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:84cb61d6-450c-4551-aa05-4940692de5fb", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "catenaXId" : "urn:uuid:8ebcd460-79a1-439a-a38a-18316553e7e7", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -143033,11 +142243,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-10-25", + "currentStateOfHealthTimestamp" : "2019-06-07", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-23", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -143047,35 +142257,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "catenaXId" : "urn:uuid:8ebcd460-79a1-439a-a38a-18316553e7e7", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "670796", + "orderNumber" : "436020", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "2316", + "referencedStandard" : "JASO", + "referencedStandardID" : "7825", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -143087,27 +142297,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -143122,7 +142332,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-767840854500043743649525", + "value" : "NO-057830015270560165419091", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -143133,7 +142343,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "catenaXId" : "urn:uuid:8ebcd460-79a1-439a-a38a-18316553e7e7", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -143148,7 +142358,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "assetId" : "urn:uuid:8ebcd460-79a1-439a-a38a-18316553e7e7", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -143157,17 +142367,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:00005e49-d0e9-44bc-9cf5-e8da99fba448", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:424d9bb2-3926-47cc-8c13-8705a0b0459e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -143180,24 +142390,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -143423,7 +142615,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-767840854500043743649525", + "batteryIDDMCCode" : "NO-057830015270560165419091", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -143442,31 +142634,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8ebcd460-79a1-439a-a38a-18316553e7e7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8ebcd460-79a1-439a-a38a-18316553e7e7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "catenaXId" : "urn:uuid:485aca52-3268-4ea4-bd4e-100b9b64c3d1", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -143481,11 +142689,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-09-14", + "currentStateOfHealthTimestamp" : "2024-01-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -143495,35 +142703,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "catenaXId" : "urn:uuid:485aca52-3268-4ea4-bd4e-100b9b64c3d1", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "945397", + "orderNumber" : "322333", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 22 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "8121", + "referencedStandard" : "GB", + "referencedStandardID" : "3965", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -143539,7 +142747,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -143549,13 +142757,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -143570,7 +142778,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-079329468576037813719169", + "value" : "NO-557472139690957066309926", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -143581,7 +142789,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "catenaXId" : "urn:uuid:485aca52-3268-4ea4-bd4e-100b9b64c3d1", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -143593,10 +142801,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "assetId" : "urn:uuid:485aca52-3268-4ea4-bd4e-100b9b64c3d1", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -143605,17 +142813,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f90e61b6-edf5-4385-b9d0-e6713103ccc9", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:48a5294e-6b0a-40e2-a6c7-564069f3b34b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -143628,24 +142836,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -143871,7 +143061,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-079329468576037813719169", + "batteryIDDMCCode" : "NO-557472139690957066309926", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -143890,31 +143080,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:485aca52-3268-4ea4-bd4e-100b9b64c3d1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:485aca52-3268-4ea4-bd4e-100b9b64c3d1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "catenaXId" : "urn:uuid:caeffac4-63af-4773-8bc6-0d4ec3dc5c29", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -143929,11 +143135,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-12-28", + "currentStateOfHealthTimestamp" : "2020-10-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-01", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -143943,35 +143149,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "catenaXId" : "urn:uuid:caeffac4-63af-4773-8bc6-0d4ec3dc5c29", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "814586", + "orderNumber" : "247258", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "4609", + "referencedStandard" : "ASME", + "referencedStandardID" : "9810", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -143980,14 +143186,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -144003,7 +143209,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -144018,7 +143224,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-860984087418700593268333", + "value" : "NO-105696138826998999306110", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -144029,7 +143235,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "catenaXId" : "urn:uuid:caeffac4-63af-4773-8bc6-0d4ec3dc5c29", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -144044,7 +143250,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "assetId" : "urn:uuid:caeffac4-63af-4773-8bc6-0d4ec3dc5c29", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -144053,17 +143259,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0b9d3361-1e9f-47ec-be20-1713fa59ec31", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:71fbb941-bc6d-4703-81a8-a612d60f3307", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -144076,24 +143282,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -144319,7 +143507,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-860984087418700593268333", + "batteryIDDMCCode" : "NO-105696138826998999306110", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -144338,31 +143526,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:caeffac4-63af-4773-8bc6-0d4ec3dc5c29", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:caeffac4-63af-4773-8bc6-0d4ec3dc5c29", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "catenaXId" : "urn:uuid:6bcdb3b5-a613-4205-834d-4237ecffc8f9", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -144377,11 +143581,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-07-20", + "currentStateOfHealthTimestamp" : "2015-02-22", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -144391,35 +143595,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "catenaXId" : "urn:uuid:6bcdb3b5-a613-4205-834d-4237ecffc8f9", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "47731", + "orderNumber" : "308773", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 25 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "9755", + "referencedStandard" : "AS", + "referencedStandardID" : "5818", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -144431,17 +143635,17 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -144451,7 +143655,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -144466,7 +143670,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-588045754284188865698792", + "value" : "NO-431377886995083541391036", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -144477,7 +143681,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "catenaXId" : "urn:uuid:6bcdb3b5-a613-4205-834d-4237ecffc8f9", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -144489,10 +143693,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "assetId" : "urn:uuid:6bcdb3b5-a613-4205-834d-4237ecffc8f9", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -144501,17 +143705,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f09ff04f-923e-446a-bee2-43d9e1e17e4a", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:d4eee47a-73b3-40ba-ae58-354ab0a8568e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -144524,24 +143728,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -144767,7 +143953,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-588045754284188865698792", + "batteryIDDMCCode" : "NO-431377886995083541391036", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -144786,31 +143972,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6bcdb3b5-a613-4205-834d-4237ecffc8f9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6bcdb3b5-a613-4205-834d-4237ecffc8f9", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "catenaXId" : "urn:uuid:b5b38ae4-2eb0-4760-bec0-a755b90ea981", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -144825,11 +144027,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-08-21", + "currentStateOfHealthTimestamp" : "2015-10-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -144839,35 +144041,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "catenaXId" : "urn:uuid:b5b38ae4-2eb0-4760-bec0-a755b90ea981", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "459658", + "orderNumber" : "285609", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 6 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "2536", + "referencedStandard" : "DIN", + "referencedStandardID" : "9452", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -144876,10 +144078,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -144889,17 +144091,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -144914,7 +144116,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-473896456356548303789394", + "value" : "NO-606201604140904906173351", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -144925,7 +144127,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "catenaXId" : "urn:uuid:b5b38ae4-2eb0-4760-bec0-a755b90ea981", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -144937,10 +144139,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "assetId" : "urn:uuid:b5b38ae4-2eb0-4760-bec0-a755b90ea981", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -144949,17 +144151,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:800e224f-deb1-49ab-9b96-b839f98dcfc6", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:a8fae02a-691a-455a-9c79-b34e16dd0216", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -144972,24 +144174,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -145215,7 +144399,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-473896456356548303789394", + "batteryIDDMCCode" : "NO-606201604140904906173351", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -145234,31 +144418,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b5b38ae4-2eb0-4760-bec0-a755b90ea981", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b5b38ae4-2eb0-4760-bec0-a755b90ea981", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "catenaXId" : "urn:uuid:fa2a6ffb-8582-4ef0-9e5f-1660ac70d671", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -145273,11 +144473,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-04", + "currentStateOfHealthTimestamp" : "2016-01-05", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-14", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -145287,35 +144487,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "catenaXId" : "urn:uuid:fa2a6ffb-8582-4ef0-9e5f-1660ac70d671", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "524027", + "orderNumber" : "108369", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "3450", + "referencedStandard" : "DIN", + "referencedStandardID" : "7246", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -145331,17 +144531,17 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -145362,7 +144562,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-352472143033398477945379", + "value" : "NO-914462774318298044622010", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -145373,7 +144573,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "catenaXId" : "urn:uuid:fa2a6ffb-8582-4ef0-9e5f-1660ac70d671", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -145385,10 +144585,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "assetId" : "urn:uuid:fa2a6ffb-8582-4ef0-9e5f-1660ac70d671", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -145397,17 +144597,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3f12b395-5e31-415e-a84f-2f0a9af0d78c", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:386fe572-fa93-4bbd-b8d4-b55f423c95df", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -145420,24 +144620,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -145663,7 +144845,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-352472143033398477945379", + "batteryIDDMCCode" : "NO-914462774318298044622010", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -145682,31 +144864,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fa2a6ffb-8582-4ef0-9e5f-1660ac70d671", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fa2a6ffb-8582-4ef0-9e5f-1660ac70d671", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "catenaXId" : "urn:uuid:68002a94-6979-4c74-8806-3fee2e69335f", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -145721,11 +144919,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-08", + "currentStateOfHealthTimestamp" : "2018-03-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-15", + "currentStateOfHealthTimestamp" : "2024-03-28", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -145735,35 +144933,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "catenaXId" : "urn:uuid:68002a94-6979-4c74-8806-3fee2e69335f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "320239", + "orderNumber" : "157027", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "DIN", - "referencedStandardID" : "4640", + "referencedStandardID" : "8200", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -145774,28 +144972,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -145810,7 +145008,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-536814342114624374891194", + "value" : "NO-195859396927351391264231", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -145821,7 +145019,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "catenaXId" : "urn:uuid:68002a94-6979-4c74-8806-3fee2e69335f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -145833,10 +145031,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "assetId" : "urn:uuid:68002a94-6979-4c74-8806-3fee2e69335f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -145845,17 +145043,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:aef1b00c-7fa1-415d-b7bc-553eedd82fb6", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:c34e2f2b-d042-4c2d-b008-e2c6efc14b8a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -145868,24 +145066,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -146111,7 +145291,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-536814342114624374891194", + "batteryIDDMCCode" : "NO-195859396927351391264231", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -146130,31 +145310,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:68002a94-6979-4c74-8806-3fee2e69335f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:68002a94-6979-4c74-8806-3fee2e69335f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "catenaXId" : "urn:uuid:b423dcba-606d-477a-8d42-2f4f2293539e", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -146169,11 +145365,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-02-12", + "currentStateOfHealthTimestamp" : "2022-09-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthTimestamp" : "2024-03-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -146183,35 +145379,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "catenaXId" : "urn:uuid:b423dcba-606d-477a-8d42-2f4f2293539e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "992855", + "orderNumber" : "664071", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "4053", + "referencedStandard" : "GB", + "referencedStandardID" : "2207", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -146222,18 +145418,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -146243,7 +145439,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -146258,7 +145454,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-535040345656499211042489", + "value" : "NO-889687688845816961721724", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -146269,7 +145465,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "catenaXId" : "urn:uuid:b423dcba-606d-477a-8d42-2f4f2293539e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -146281,10 +145477,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "assetId" : "urn:uuid:b423dcba-606d-477a-8d42-2f4f2293539e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -146293,17 +145489,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7f8ce7da-bd67-4909-862c-17f574d7f2fc", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:064bc648-d35d-49e4-824a-c2c304a1bb28", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -146316,24 +145512,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -146559,7 +145737,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-535040345656499211042489", + "batteryIDDMCCode" : "NO-889687688845816961721724", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -146578,28 +145756,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b423dcba-606d-477a-8d42-2f4f2293539e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b423dcba-606d-477a-8d42-2f4f2293539e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 6, + "recycledContent" : 51, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -146609,7 +145803,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 84, + "recycledContent" : 68, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -146619,7 +145813,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 17, + "recycledContent" : 21, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -146630,112 +145824,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "catenaXId" : "urn:uuid:9b9bad6c-b892-4080-bc9f-db7dd40abc1b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "catenaXId" : "urn:uuid:47e47445-87d1-4ece-b49a-fd871d01e0fa", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "catenaXId" : "urn:uuid:0538ccd1-2ac1-4e62-bd59-828e8c85a21c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "catenaXId" : "urn:uuid:fbda5f20-df4e-4277-b903-2fa43b12f6e2", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "catenaXId" : "urn:uuid:f08af5c6-de86-4637-bdb3-d3ae01da0d0e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "catenaXId" : "urn:uuid:53c85bb3-461b-44ac-9dfb-dd1fca026f03", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "catenaXId" : "urn:uuid:a5a378b5-758f-40ec-ba92-7665a13281ce", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "catenaXId" : "urn:uuid:938c252c-a08a-4175-a9ff-c8df922bf87c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "catenaXId" : "urn:uuid:267fbdda-e0a6-45b1-a9ed-9d0bf85d66dc", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "catenaXId" : "urn:uuid:b2376252-9c11-4892-a52e-5ea49d8750ef", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -146743,35 +145937,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "461716", + "orderNumber" : "805627", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 7 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "2220", + "referencedStandard" : "IS", + "referencedStandardID" : "2452", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -146782,28 +145976,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -146818,7 +146012,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-770181704086780547564889", + "value" : "NO-857631194932419190104530", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -146829,7 +146023,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -146841,10 +146035,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "assetId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -146853,17 +146047,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0f205c69-39ca-43af-b148-d51cd1e45ed6", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:fdbd717a-02c6-47c5-8701-dc2f07d8909a", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -146872,17 +146066,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a6f9d394-aee1-4d52-9fee-de07a68edd6f", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:ac15a4cd-46ca-4c81-85e9-6fb8c561ffc1", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "childassetId" : "urn:uuid:9b9bad6c-b892-4080-bc9f-db7dd40abc1b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -146891,17 +146085,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e57b2b4c-0859-4bb1-a1e1-69565716e8f4", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:011543b1-cfd9-47a3-bb32-ff8090b1e455", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "childassetId" : "urn:uuid:47e47445-87d1-4ece-b49a-fd871d01e0fa", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -146910,17 +146104,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:311b83f6-d424-4de7-ae16-8bb8d307e71b", + "ownerItemId" : "urn:uuid:2966040a-cfde-4e83-b8c0-f4ebb325b0f4", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "childassetId" : "urn:uuid:0538ccd1-2ac1-4e62-bd59-828e8c85a21c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -146929,17 +146123,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1d868cd3-c65f-403c-af92-e95e90a61b4b", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:044c4b17-ff63-4899-8a37-23ea72fd1c57", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "childassetId" : "urn:uuid:fbda5f20-df4e-4277-b903-2fa43b12f6e2", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -146948,17 +146142,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a61387e4-1f80-4757-b73a-66e5a8186725", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:fda2808a-2930-463a-9b98-dd2e818e4995", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "childassetId" : "urn:uuid:f08af5c6-de86-4637-bdb3-d3ae01da0d0e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -146967,17 +146161,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4b8b2fcb-52f1-4639-98e0-16e8169e38f0", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:74d8e2e0-5b94-420a-843c-7ffbb18a96c6", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "childassetId" : "urn:uuid:53c85bb3-461b-44ac-9dfb-dd1fca026f03", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -146986,17 +146180,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b5fd97e1-0d5c-4b56-adea-2145c7ffd167", + "ownerItemId" : "urn:uuid:e5e4f4ab-a974-4fe7-ae47-b26071fe075b", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "childassetId" : "urn:uuid:a5a378b5-758f-40ec-ba92-7665a13281ce", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -147005,17 +146199,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ad2d63d7-6a30-461b-8bbe-a2cd06448f81", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:eead4648-172e-44f6-830d-c06bafd68e08", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "childassetId" : "urn:uuid:938c252c-a08a-4175-a9ff-c8df922bf87c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -147024,17 +146218,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b99634df-2aa0-4fce-866e-e7222add942d", + "ownerItemId" : "urn:uuid:4f9b4ac0-d791-4de9-b257-d48fbad1254f", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "childassetId" : "urn:uuid:267fbdda-e0a6-45b1-a9ed-9d0bf85d66dc", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -147043,38 +146237,20 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a7ef4402-9df8-4c4d-b9cd-790bcdb482b9", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:0ddbd000-da57-4570-aae7-c83bc652e2de", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "childassetId" : "urn:uuid:b2376252-9c11-4892-a52e-5ea49d8750ef", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -147300,7 +146476,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-770181704086780547564889", + "batteryIDDMCCode" : "NO-857631194932419190104530", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -147342,13 +146518,13 @@ "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, - "issueDate" : "2023-06-19", + "issueDate" : "2022-12-19", "version" : 2, - "status" : "Approved" + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6676, + "diameter" : 229.6423, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -147356,22 +146532,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 16 + "value" : 18 } }, "commercial" : { - "placedOnMarket" : "2023-02-05", + "placedOnMarket" : "2022-01-25", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-770181704086780547564889", + "value" : "NO-857631194932419190104530", "key" : "PartInstanceID" } ], - "gtin" : " 86400073", + "gtin" : " 52934163", "additionalCode" : [ { "name" : "TARIC", - "value" : "421133551" + "value" : "631567863" } ] }, "sources" : { @@ -147422,7 +146598,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2023-08-30", + "date" : "2022-12-25", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -147438,9 +146614,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 6.1438 ] + "left" : [ 6.6997 ] }, - "id" : "GR3626" + "id" : "SN7990" } ] }, "additionalData" : [ { @@ -147463,12 +146639,12 @@ } ], "sustainability" : { "material" : [ { - "recycled" : false, + "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Sealant" + "name" : "Aluminium" } ], - "critical" : [ "Manganese" ], + "critical" : [ "Cobalt" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -147478,14 +146654,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 116 + "carbonContentTotal" : 106 }, "state" : "first life" }, "operation" : { "importer" : "BPNL00000003AXS3", "manufacturer" : { - "facilityId" : "BPNL00000003AYRE", + "facilityId" : "BPNL00000003AXS3", "manufacturerId" : "BPNL00000003AYRE" } } @@ -147498,31 +146674,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "catenaXId" : "urn:uuid:9b9bad6c-b892-4080-bc9f-db7dd40abc1b", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -147537,11 +146729,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-02-26", + "currentStateOfHealthTimestamp" : "2020-12-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthTimestamp" : "2024-03-16", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -147551,35 +146743,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "catenaXId" : "urn:uuid:9b9bad6c-b892-4080-bc9f-db7dd40abc1b", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "46035", + "orderNumber" : "509062", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 24 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "5621", + "referencedStandard" : "AS", + "referencedStandardID" : "1877", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -147591,7 +146783,7 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -147601,17 +146793,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -147626,7 +146818,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-576353883553719482494985", + "value" : "NO-033187291802612240488116", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -147637,7 +146829,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "catenaXId" : "urn:uuid:9b9bad6c-b892-4080-bc9f-db7dd40abc1b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -147649,10 +146841,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "assetId" : "urn:uuid:9b9bad6c-b892-4080-bc9f-db7dd40abc1b", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -147661,17 +146853,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:20fb0219-2f09-4ace-8ac8-6190b4eaf8e8", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:cc39df75-1cb7-42a6-9e38-6c38509439e5", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -147684,24 +146876,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -147927,7 +147101,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-576353883553719482494985", + "batteryIDDMCCode" : "NO-033187291802612240488116", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -147946,31 +147120,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9b9bad6c-b892-4080-bc9f-db7dd40abc1b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9b9bad6c-b892-4080-bc9f-db7dd40abc1b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "catenaXId" : "urn:uuid:47e47445-87d1-4ece-b49a-fd871d01e0fa", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -147985,11 +147175,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-06-22", + "currentStateOfHealthTimestamp" : "2020-09-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-14", + "currentStateOfHealthTimestamp" : "2024-03-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -147999,35 +147189,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "catenaXId" : "urn:uuid:47e47445-87d1-4ece-b49a-fd871d01e0fa", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "939508", + "orderNumber" : "138481", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "1305", + "referencedStandard" : "ISO", + "referencedStandardID" : "9337", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -148036,20 +147226,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -148059,7 +147249,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -148074,7 +147264,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-314815112889745255848637", + "value" : "NO-763258057586760595189315", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -148085,7 +147275,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "catenaXId" : "urn:uuid:47e47445-87d1-4ece-b49a-fd871d01e0fa", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -148097,10 +147287,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "assetId" : "urn:uuid:47e47445-87d1-4ece-b49a-fd871d01e0fa", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -148109,17 +147299,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:418dae1c-9e55-4334-92e4-37696a809049", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:0788b75f-7f06-40cf-b4f0-318ef9b18dfa", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -148132,24 +147322,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -148375,7 +147547,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-314815112889745255848637", + "batteryIDDMCCode" : "NO-763258057586760595189315", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -148394,31 +147566,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:47e47445-87d1-4ece-b49a-fd871d01e0fa", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:47e47445-87d1-4ece-b49a-fd871d01e0fa", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "catenaXId" : "urn:uuid:0538ccd1-2ac1-4e62-bd59-828e8c85a21c", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -148433,11 +147621,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-12-25", + "currentStateOfHealthTimestamp" : "2015-10-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -148447,35 +147635,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "catenaXId" : "urn:uuid:0538ccd1-2ac1-4e62-bd59-828e8c85a21c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "503315", + "orderNumber" : "470213", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "3063", + "referencedStandard" : "AS", + "referencedStandardID" : "5128", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -148484,30 +147672,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -148522,7 +147710,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-053115580491418530649598", + "value" : "NO-807719426538390909952668", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -148533,7 +147721,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "catenaXId" : "urn:uuid:0538ccd1-2ac1-4e62-bd59-828e8c85a21c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -148548,7 +147736,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "assetId" : "urn:uuid:0538ccd1-2ac1-4e62-bd59-828e8c85a21c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -148557,17 +147745,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:72bf08bc-b2d5-4bc5-9288-78c02792b85e", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:e14c0a52-161e-41ca-a7e8-f13f93a32b5b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -148580,24 +147768,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -148823,7 +147993,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-053115580491418530649598", + "batteryIDDMCCode" : "NO-807719426538390909952668", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -148842,31 +148012,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0538ccd1-2ac1-4e62-bd59-828e8c85a21c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0538ccd1-2ac1-4e62-bd59-828e8c85a21c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "catenaXId" : "urn:uuid:fbda5f20-df4e-4277-b903-2fa43b12f6e2", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -148881,11 +148067,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-01-29", + "currentStateOfHealthTimestamp" : "2014-12-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-27", + "currentStateOfHealthTimestamp" : "2024-03-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -148895,16 +148081,16 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "catenaXId" : "urn:uuid:fbda5f20-df4e-4277-b903-2fa43b12f6e2", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "91565", + "orderNumber" : "906131", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 12 @@ -148913,7 +148099,7 @@ "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -148922,8 +148108,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "1441", + "referencedStandard" : "JIS", + "referencedStandardID" : "8766", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -148932,30 +148118,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -148970,7 +148156,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-254757851873936956103930", + "value" : "NO-124938441622083380062715", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -148981,7 +148167,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "catenaXId" : "urn:uuid:fbda5f20-df4e-4277-b903-2fa43b12f6e2", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -148993,10 +148179,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "assetId" : "urn:uuid:fbda5f20-df4e-4277-b903-2fa43b12f6e2", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -149005,17 +148191,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0eaef2be-8da2-45b9-8760-803608eaf870", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:99bf36b0-f6c4-4d5f-a37c-75856843966f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -149028,24 +148214,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -149271,7 +148439,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-254757851873936956103930", + "batteryIDDMCCode" : "NO-124938441622083380062715", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -149290,31 +148458,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fbda5f20-df4e-4277-b903-2fa43b12f6e2", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fbda5f20-df4e-4277-b903-2fa43b12f6e2", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "catenaXId" : "urn:uuid:f08af5c6-de86-4637-bdb3-d3ae01da0d0e", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -149329,11 +148513,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-01-20", + "currentStateOfHealthTimestamp" : "2019-06-07", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-01", + "currentStateOfHealthTimestamp" : "2024-03-18", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -149343,25 +148527,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "catenaXId" : "urn:uuid:f08af5c6-de86-4637-bdb3-d3ae01da0d0e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "850720", + "orderNumber" : "605459", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -149371,7 +148555,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "EN", - "referencedStandardID" : "2230", + "referencedStandardID" : "2294", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -149380,20 +148564,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -149403,7 +148587,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -149418,7 +148602,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-316542918139942968601736", + "value" : "NO-253736684644667524930063", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -149429,7 +148613,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "catenaXId" : "urn:uuid:f08af5c6-de86-4637-bdb3-d3ae01da0d0e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -149441,10 +148625,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "assetId" : "urn:uuid:f08af5c6-de86-4637-bdb3-d3ae01da0d0e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -149453,17 +148637,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:287ee7a7-9af3-4416-afbd-27b90f68d150", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:e74670e7-671f-402a-bc33-227c96896ec4", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -149476,24 +148660,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -149719,7 +148885,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-316542918139942968601736", + "batteryIDDMCCode" : "NO-253736684644667524930063", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -149738,31 +148904,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f08af5c6-de86-4637-bdb3-d3ae01da0d0e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f08af5c6-de86-4637-bdb3-d3ae01da0d0e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "catenaXId" : "urn:uuid:53c85bb3-461b-44ac-9dfb-dd1fca026f03", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -149777,11 +148959,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2024-01-22", + "currentStateOfHealthTimestamp" : "2020-09-23", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthTimestamp" : "2024-03-27", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -149791,35 +148973,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "catenaXId" : "urn:uuid:53c85bb3-461b-44ac-9dfb-dd1fca026f03", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "180324", + "orderNumber" : "532771", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "4767", + "referencedStandard" : "EN", + "referencedStandardID" : "9865", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -149828,10 +149010,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -149841,7 +149023,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -149866,7 +149048,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-145334258560133215613931", + "value" : "NO-931077905564998045847086", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -149877,7 +149059,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "catenaXId" : "urn:uuid:53c85bb3-461b-44ac-9dfb-dd1fca026f03", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -149889,10 +149071,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "assetId" : "urn:uuid:53c85bb3-461b-44ac-9dfb-dd1fca026f03", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -149901,17 +149083,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6b356ed3-6029-4a66-9cc3-020505e70d73", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:c81d3d56-ddaa-45f0-b0db-06f18ff1f828", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -149924,24 +149106,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -150167,7 +149331,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-145334258560133215613931", + "batteryIDDMCCode" : "NO-931077905564998045847086", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -150186,31 +149350,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:53c85bb3-461b-44ac-9dfb-dd1fca026f03", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:53c85bb3-461b-44ac-9dfb-dd1fca026f03", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "catenaXId" : "urn:uuid:a5a378b5-758f-40ec-ba92-7665a13281ce", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -150225,11 +149405,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-04-11", + "currentStateOfHealthTimestamp" : "2015-01-23", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-14", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -150239,35 +149419,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "catenaXId" : "urn:uuid:a5a378b5-758f-40ec-ba92-7665a13281ce", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "199207", + "orderNumber" : "644156", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "3283", + "referencedStandard" : "IS", + "referencedStandardID" : "1355", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -150278,8 +149458,8 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -150289,17 +149469,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -150314,7 +149494,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-190658911471063410526864", + "value" : "NO-642827238001626781850767", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -150325,7 +149505,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "catenaXId" : "urn:uuid:a5a378b5-758f-40ec-ba92-7665a13281ce", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -150340,7 +149520,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "assetId" : "urn:uuid:a5a378b5-758f-40ec-ba92-7665a13281ce", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -150349,17 +149529,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9e79a5b3-9dca-4d40-a1b3-5843bbb318b2", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:7a4b076b-4de0-4a28-8d9f-943836e128b1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -150372,24 +149552,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -150615,7 +149777,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-190658911471063410526864", + "batteryIDDMCCode" : "NO-642827238001626781850767", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -150634,31 +149796,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a5a378b5-758f-40ec-ba92-7665a13281ce", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a5a378b5-758f-40ec-ba92-7665a13281ce", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "catenaXId" : "urn:uuid:938c252c-a08a-4175-a9ff-c8df922bf87c", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -150673,11 +149851,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-07-30", + "currentStateOfHealthTimestamp" : "2017-04-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthTimestamp" : "2024-03-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -150687,10 +149865,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "catenaXId" : "urn:uuid:938c252c-a08a-4175-a9ff-c8df922bf87c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "523247", + "orderNumber" : "545633", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -150699,23 +149877,23 @@ "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "4993", + "referencedStandard" : "DIN", + "referencedStandardID" : "9073", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -150726,28 +149904,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -150762,7 +149940,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-063455783697007035630988", + "value" : "NO-834387545083124280128719", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -150773,7 +149951,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "catenaXId" : "urn:uuid:938c252c-a08a-4175-a9ff-c8df922bf87c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -150785,10 +149963,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "assetId" : "urn:uuid:938c252c-a08a-4175-a9ff-c8df922bf87c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -150797,17 +149975,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b4d1e3bf-9c07-47b3-9393-544c11c653df", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:70ea1a7b-1fce-4191-9137-4f667bbe3539", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -150820,24 +149998,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -151063,7 +150223,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-063455783697007035630988", + "batteryIDDMCCode" : "NO-834387545083124280128719", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -151082,31 +150242,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:938c252c-a08a-4175-a9ff-c8df922bf87c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:938c252c-a08a-4175-a9ff-c8df922bf87c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "catenaXId" : "urn:uuid:267fbdda-e0a6-45b1-a9ed-9d0bf85d66dc", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -151121,11 +150297,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-05-14", + "currentStateOfHealthTimestamp" : "2017-05-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-02", + "currentStateOfHealthTimestamp" : "2024-03-06", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -151135,35 +150311,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "catenaXId" : "urn:uuid:267fbdda-e0a6-45b1-a9ed-9d0bf85d66dc", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "530781", + "orderNumber" : "557534", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "2939", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "4208", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -151174,8 +150350,8 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -151185,17 +150361,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -151210,7 +150386,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-359826011078845138239347", + "value" : "NO-948855500012008612886590", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -151221,7 +150397,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "catenaXId" : "urn:uuid:267fbdda-e0a6-45b1-a9ed-9d0bf85d66dc", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -151236,7 +150412,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "assetId" : "urn:uuid:267fbdda-e0a6-45b1-a9ed-9d0bf85d66dc", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -151245,17 +150421,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:831f684d-6617-4538-b73a-1db77bc3c92e", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:840ac1e5-450e-462f-8076-4acbdda56162", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -151268,24 +150444,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -151511,7 +150669,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-359826011078845138239347", + "batteryIDDMCCode" : "NO-948855500012008612886590", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -151530,31 +150688,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:267fbdda-e0a6-45b1-a9ed-9d0bf85d66dc", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:267fbdda-e0a6-45b1-a9ed-9d0bf85d66dc", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "catenaXId" : "urn:uuid:b2376252-9c11-4892-a52e-5ea49d8750ef", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -151569,11 +150743,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-04-07", + "currentStateOfHealthTimestamp" : "2014-06-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -151583,35 +150757,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "catenaXId" : "urn:uuid:b2376252-9c11-4892-a52e-5ea49d8750ef", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "761973", + "orderNumber" : "905034", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "7989", + "referencedStandard" : "JASO", + "referencedStandardID" : "1667", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -151622,7 +150796,7 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { @@ -151633,11 +150807,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -151658,7 +150832,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-242290872237139567707577", + "value" : "NO-457871180464872997622197", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -151669,7 +150843,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "catenaXId" : "urn:uuid:b2376252-9c11-4892-a52e-5ea49d8750ef", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -151681,10 +150855,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "assetId" : "urn:uuid:b2376252-9c11-4892-a52e-5ea49d8750ef", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -151693,17 +150867,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:eaedbf9a-fed7-4a2f-bd24-d4dd0d5641a5", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:8baf5cbd-f718-4f55-bdc1-37e7dc562189", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -151716,24 +150890,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -151959,7 +151115,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-242290872237139567707577", + "batteryIDDMCCode" : "NO-457871180464872997622197", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -151978,28 +151134,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b2376252-9c11-4892-a52e-5ea49d8750ef", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b2376252-9c11-4892-a52e-5ea49d8750ef", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 6, + "recycledContent" : 57, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -152009,7 +151181,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 59, + "recycledContent" : 69, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -152019,7 +151191,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 61, + "recycledContent" : 62, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -152030,112 +151202,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "catenaXId" : "urn:uuid:251412a7-e3df-4145-abe1-23289af12c10", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "catenaXId" : "urn:uuid:b1a85200-1c03-42de-95dd-fa6f67c03738", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "catenaXId" : "urn:uuid:cd7c9923-d8da-4599-9e5e-e0a1c740a142", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "catenaXId" : "urn:uuid:29270e6d-b49a-42cb-aa2f-96399d344425", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "catenaXId" : "urn:uuid:c0c6c675-1630-4642-977d-64537e850d61", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "catenaXId" : "urn:uuid:31c7f98e-7129-44cf-a6fb-8d52f011092b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "catenaXId" : "urn:uuid:be634a30-5cfd-4dd4-adbc-54fc48ae0ea0", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "catenaXId" : "urn:uuid:efc038c6-0a0f-4f55-a5b8-fb171b12413c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "catenaXId" : "urn:uuid:dc337b7a-b7bc-4048-9dab-5ffb81dd939c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "catenaXId" : "urn:uuid:db8bf7b8-fbfe-4d6a-8e3a-b30b98f9f33f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -152143,35 +151315,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "926754", + "orderNumber" : "91574", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "1822", + "referencedStandard" : "ASME", + "referencedStandardID" : "1821", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -152180,14 +151352,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -152197,13 +151369,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -152218,7 +151390,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-961586982769257604561524", + "value" : "NO-261702803650729736821892", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -152229,7 +151401,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -152241,10 +151413,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "assetId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -152253,17 +151425,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:674b71f2-c1e4-40dc-8e8f-24a851e456fd", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:682b0748-d7e8-4503-adc5-4d6ad49a63b4", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -152272,17 +151444,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4728cc86-deb0-4f50-aab8-a28b7dbd87e2", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:feaf404b-8167-4222-b46c-b9498462662c", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "childassetId" : "urn:uuid:251412a7-e3df-4145-abe1-23289af12c10", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -152291,17 +151463,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6960ba04-3f36-46dc-9692-9f2735d14536", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:2655f293-12fd-4212-b36b-07f44c98c4ec", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "childassetId" : "urn:uuid:b1a85200-1c03-42de-95dd-fa6f67c03738", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -152310,17 +151482,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:18778815-6f53-4901-ae8b-058b3814701e", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:637aa87b-36fd-48c0-b800-0d301cfe0b78", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "childassetId" : "urn:uuid:cd7c9923-d8da-4599-9e5e-e0a1c740a142", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -152329,17 +151501,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:48a99965-934b-4b52-a8a3-56880b18a006", + "ownerItemId" : "urn:uuid:6c534a20-72fd-4e51-bbab-f9b03024f425", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "childassetId" : "urn:uuid:29270e6d-b49a-42cb-aa2f-96399d344425", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -152348,17 +151520,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:83f815b7-a78b-40c8-adcc-c3ff6f2341e2", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:fc52416e-ad06-4337-a6fa-b36acee8f051", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "childassetId" : "urn:uuid:c0c6c675-1630-4642-977d-64537e850d61", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -152367,17 +151539,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:64aa51bc-f88b-403a-98a7-1a6a3540d6ec", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:595ad90e-f879-4eb3-baff-eaa91b1f5725", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "childassetId" : "urn:uuid:31c7f98e-7129-44cf-a6fb-8d52f011092b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -152386,17 +151558,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2feec351-a5ba-40ce-83fe-ff8fdad9fad1", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:3b0fb168-83c4-486e-a94e-be8230fc3dc7", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "childassetId" : "urn:uuid:be634a30-5cfd-4dd4-adbc-54fc48ae0ea0", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -152405,17 +151577,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5b32e660-90aa-4d32-91de-141c3e532e96", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:7d96f610-8389-4430-92e0-0e564de86c25", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "childassetId" : "urn:uuid:efc038c6-0a0f-4f55-a5b8-fb171b12413c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -152424,17 +151596,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a71aea01-86f3-4cc3-a269-9d2d66416c7b", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:82fb7bac-0aae-4d9e-8104-8312cdb886ae", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "childassetId" : "urn:uuid:dc337b7a-b7bc-4048-9dab-5ffb81dd939c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -152443,38 +151615,20 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:10d2d3d4-fdc4-4b9e-b76a-fd5a13e1ea00", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:c2359693-2ed3-4e4a-a732-5ae3f08d10de", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "childassetId" : "urn:uuid:db8bf7b8-fbfe-4d6a-8e3a-b30b98f9f33f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -152700,7 +151854,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-961586982769257604561524", + "batteryIDDMCCode" : "NO-261702803650729736821892", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -152742,13 +151896,13 @@ "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, - "issueDate" : "2021-09-25", - "version" : 2.1, - "status" : "Approved" + "issueDate" : "2023-11-05", + "version" : 2.5, + "status" : "Draft" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6393, + "diameter" : 229.6781, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -152756,22 +151910,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 17 + "value" : 19 } }, "commercial" : { - "placedOnMarket" : "2020-07-08", + "placedOnMarket" : "2023-07-25", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-961586982769257604561524", + "value" : "NO-261702803650729736821892", "key" : "PartInstanceID" } ], - "gtin" : " 60297435", + "gtin" : " 92503437", "additionalCode" : [ { "name" : "TARIC", - "value" : "383428586" + "value" : "383126300" } ] }, "sources" : { @@ -152793,7 +151947,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", + "category" : "SubstanceOfConcern", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -152822,12 +151976,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-02-10", + "date" : "2024-01-21", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : false, + "reusablePackaging" : true, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -152838,9 +151992,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 8.556 ] + "left" : [ 3.4651 ] }, - "id" : "UZ5630" + "id" : "CW2372" } ] }, "additionalData" : [ { @@ -152863,12 +152017,12 @@ } ], "sustainability" : { "material" : [ { - "recycled" : true, + "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Manganese" + "name" : "Lithium" } ], - "critical" : [ "Nickel" ], + "critical" : [ "Lithium" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -152878,14 +152032,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 101 + "carbonContentTotal" : 110 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AXS3", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AYRE" } } @@ -152898,31 +152052,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "catenaXId" : "urn:uuid:251412a7-e3df-4145-abe1-23289af12c10", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -152937,11 +152107,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-07-25", + "currentStateOfHealthTimestamp" : "2021-05-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -152951,35 +152121,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "catenaXId" : "urn:uuid:251412a7-e3df-4145-abe1-23289af12c10", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "985570", + "orderNumber" : "751641", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "7618", + "referencedStandard" : "DIN", + "referencedStandardID" : "4474", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -153005,7 +152175,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -153026,7 +152196,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-888312493038162373043992", + "value" : "NO-099203349826075528663112", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -153037,7 +152207,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "catenaXId" : "urn:uuid:251412a7-e3df-4145-abe1-23289af12c10", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -153049,10 +152219,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "assetId" : "urn:uuid:251412a7-e3df-4145-abe1-23289af12c10", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -153061,17 +152231,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:cbc13776-f61f-4fd1-91bb-1efb638dcdc9", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:6deef8a2-51f8-4f1f-8766-837bc1426061", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -153084,24 +152254,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -153327,7 +152479,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-888312493038162373043992", + "batteryIDDMCCode" : "NO-099203349826075528663112", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -153346,31 +152498,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:251412a7-e3df-4145-abe1-23289af12c10", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:251412a7-e3df-4145-abe1-23289af12c10", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "catenaXId" : "urn:uuid:b1a85200-1c03-42de-95dd-fa6f67c03738", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -153385,11 +152553,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-01-01", + "currentStateOfHealthTimestamp" : "2015-09-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -153399,35 +152567,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "catenaXId" : "urn:uuid:b1a85200-1c03-42de-95dd-fa6f67c03738", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "541645", + "orderNumber" : "604953", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "DIN", - "referencedStandardID" : "1540", + "referencedStandardID" : "7319", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -153436,30 +152604,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -153474,7 +152642,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-114670847427380311843029", + "value" : "NO-090719935490896015082395", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -153485,7 +152653,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "catenaXId" : "urn:uuid:b1a85200-1c03-42de-95dd-fa6f67c03738", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -153497,10 +152665,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "assetId" : "urn:uuid:b1a85200-1c03-42de-95dd-fa6f67c03738", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -153509,17 +152677,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ea5c00d9-d225-4ef6-8f04-894dd714f606", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:c7369bd9-f29b-4d42-b709-e325156cd5ad", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -153532,24 +152700,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -153775,7 +152925,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-114670847427380311843029", + "batteryIDDMCCode" : "NO-090719935490896015082395", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -153794,31 +152944,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b1a85200-1c03-42de-95dd-fa6f67c03738", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b1a85200-1c03-42de-95dd-fa6f67c03738", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "catenaXId" : "urn:uuid:cd7c9923-d8da-4599-9e5e-e0a1c740a142", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -153833,11 +152999,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-11-01", + "currentStateOfHealthTimestamp" : "2016-07-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -153847,35 +153013,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "catenaXId" : "urn:uuid:cd7c9923-d8da-4599-9e5e-e0a1c740a142", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "105441", + "orderNumber" : "555963", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "8071", + "referencedStandard" : "GB", + "referencedStandardID" : "6847", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -153886,18 +153052,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -153907,7 +153073,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -153922,7 +153088,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-042328502545500094738731", + "value" : "NO-188187379165642236616963", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -153933,7 +153099,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "catenaXId" : "urn:uuid:cd7c9923-d8da-4599-9e5e-e0a1c740a142", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -153945,10 +153111,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "assetId" : "urn:uuid:cd7c9923-d8da-4599-9e5e-e0a1c740a142", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -153957,17 +153123,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c75a3e14-3de1-4175-aa60-36ad003ae549", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:8f323fcf-4ea2-41da-8f64-101de2790a51", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -153980,24 +153146,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -154223,7 +153371,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-042328502545500094738731", + "batteryIDDMCCode" : "NO-188187379165642236616963", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -154242,31 +153390,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:cd7c9923-d8da-4599-9e5e-e0a1c740a142", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cd7c9923-d8da-4599-9e5e-e0a1c740a142", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "catenaXId" : "urn:uuid:29270e6d-b49a-42cb-aa2f-96399d344425", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -154281,11 +153445,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-10-19", + "currentStateOfHealthTimestamp" : "2017-07-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -154295,35 +153459,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "catenaXId" : "urn:uuid:29270e6d-b49a-42cb-aa2f-96399d344425", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "43845", + "orderNumber" : "153677", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "1294", + "referencedStandard" : "EN", + "referencedStandardID" : "7150", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -154332,20 +153496,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -154355,7 +153519,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -154370,7 +153534,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-077606097660377021193127", + "value" : "NO-845315176520240409814819", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -154381,7 +153545,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "catenaXId" : "urn:uuid:29270e6d-b49a-42cb-aa2f-96399d344425", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -154396,7 +153560,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "assetId" : "urn:uuid:29270e6d-b49a-42cb-aa2f-96399d344425", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -154405,17 +153569,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5ae146b2-2596-4f20-b4c4-95179b7fef8c", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:9f798d38-3c71-484c-be4d-6cb0305a65fd", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -154428,24 +153592,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -154671,7 +153817,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-077606097660377021193127", + "batteryIDDMCCode" : "NO-845315176520240409814819", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -154690,31 +153836,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:29270e6d-b49a-42cb-aa2f-96399d344425", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:29270e6d-b49a-42cb-aa2f-96399d344425", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "catenaXId" : "urn:uuid:c0c6c675-1630-4642-977d-64537e850d61", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -154729,11 +153891,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-12-28", + "currentStateOfHealthTimestamp" : "2020-09-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -154743,35 +153905,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "catenaXId" : "urn:uuid:c0c6c675-1630-4642-977d-64537e850d61", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "412406", + "orderNumber" : "351193", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "5611", + "referencedStandard" : "AISI", + "referencedStandardID" : "9350", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -154780,30 +153942,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -154818,7 +153980,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-808477872124908084381017", + "value" : "NO-146223815260009523712436", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -154829,7 +153991,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "catenaXId" : "urn:uuid:c0c6c675-1630-4642-977d-64537e850d61", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -154841,10 +154003,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "assetId" : "urn:uuid:c0c6c675-1630-4642-977d-64537e850d61", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -154853,17 +154015,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b3f85dd0-6289-4a0f-b412-e2df2bb4c1d2", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:b81b50a8-33fa-4eac-babe-03a43fe55a6a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -154876,24 +154038,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -155119,7 +154263,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-808477872124908084381017", + "batteryIDDMCCode" : "NO-146223815260009523712436", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -155138,31 +154282,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c0c6c675-1630-4642-977d-64537e850d61", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c0c6c675-1630-4642-977d-64537e850d61", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "catenaXId" : "urn:uuid:31c7f98e-7129-44cf-a6fb-8d52f011092b", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -155177,11 +154337,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-12-17", + "currentStateOfHealthTimestamp" : "2018-03-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-23", + "currentStateOfHealthTimestamp" : "2024-03-27", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -155191,35 +154351,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "catenaXId" : "urn:uuid:31c7f98e-7129-44cf-a6fb-8d52f011092b", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "906104", + "orderNumber" : "417122", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "5705", + "referencedStandard" : "GB", + "referencedStandardID" : "6137", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -155241,7 +154401,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -155251,7 +154411,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -155266,7 +154426,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-656125482639453250677361", + "value" : "NO-833206370828295257523454", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -155277,7 +154437,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "catenaXId" : "urn:uuid:31c7f98e-7129-44cf-a6fb-8d52f011092b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -155289,10 +154449,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "assetId" : "urn:uuid:31c7f98e-7129-44cf-a6fb-8d52f011092b", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -155301,17 +154461,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b7139c96-2bbd-4793-a8ee-968e35ea078f", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:2c8a32de-60fe-4eac-aca7-753a8941a9fc", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -155324,24 +154484,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -155567,7 +154709,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-656125482639453250677361", + "batteryIDDMCCode" : "NO-833206370828295257523454", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -155586,31 +154728,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:31c7f98e-7129-44cf-a6fb-8d52f011092b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:31c7f98e-7129-44cf-a6fb-8d52f011092b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "catenaXId" : "urn:uuid:be634a30-5cfd-4dd4-adbc-54fc48ae0ea0", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -155625,11 +154783,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-08-01", + "currentStateOfHealthTimestamp" : "2018-09-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-02", + "currentStateOfHealthTimestamp" : "2024-03-27", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -155639,35 +154797,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "catenaXId" : "urn:uuid:be634a30-5cfd-4dd4-adbc-54fc48ae0ea0", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "992623", + "orderNumber" : "306603", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "DIN", - "referencedStandardID" : "9700", + "referencedStandardID" : "3024", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -155679,27 +154837,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -155714,7 +154872,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-153177385520734383337939", + "value" : "NO-394260612845106565418776", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -155725,7 +154883,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "catenaXId" : "urn:uuid:be634a30-5cfd-4dd4-adbc-54fc48ae0ea0", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -155737,10 +154895,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "assetId" : "urn:uuid:be634a30-5cfd-4dd4-adbc-54fc48ae0ea0", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -155749,17 +154907,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:89592ff2-5288-4106-85bc-eab16481d484", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:3a0fdc55-b6db-4906-8f86-2dfef7db8197", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -155772,24 +154930,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -156015,7 +155155,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-153177385520734383337939", + "batteryIDDMCCode" : "NO-394260612845106565418776", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -156034,31 +155174,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:be634a30-5cfd-4dd4-adbc-54fc48ae0ea0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:be634a30-5cfd-4dd4-adbc-54fc48ae0ea0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "catenaXId" : "urn:uuid:efc038c6-0a0f-4f55-a5b8-fb171b12413c", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -156073,11 +155229,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-11-15", + "currentStateOfHealthTimestamp" : "2023-08-05", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -156087,35 +155243,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "catenaXId" : "urn:uuid:efc038c6-0a0f-4f55-a5b8-fb171b12413c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "824750", + "orderNumber" : "621093", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "5909", + "referencedStandard" : "IS", + "referencedStandardID" : "6843", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -156124,30 +155280,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -156162,7 +155318,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-804050053485016238437303", + "value" : "NO-263841937177235283682631", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -156173,7 +155329,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "catenaXId" : "urn:uuid:efc038c6-0a0f-4f55-a5b8-fb171b12413c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -156185,10 +155341,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "assetId" : "urn:uuid:efc038c6-0a0f-4f55-a5b8-fb171b12413c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -156197,17 +155353,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:67db5dbe-af19-427e-9147-5b4fab771b17", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:9bb56a6c-2659-47fc-86b9-c8217181071b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -156220,24 +155376,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -156463,7 +155601,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-804050053485016238437303", + "batteryIDDMCCode" : "NO-263841937177235283682631", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -156482,31 +155620,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:efc038c6-0a0f-4f55-a5b8-fb171b12413c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:efc038c6-0a0f-4f55-a5b8-fb171b12413c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "catenaXId" : "urn:uuid:dc337b7a-b7bc-4048-9dab-5ffb81dd939c", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -156521,11 +155675,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-01-24", + "currentStateOfHealthTimestamp" : "2014-04-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthTimestamp" : "2024-03-31", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -156535,35 +155689,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "catenaXId" : "urn:uuid:dc337b7a-b7bc-4048-9dab-5ffb81dd939c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "605859", + "orderNumber" : "171329", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "6122", + "referencedStandard" : "GB", + "referencedStandardID" : "1937", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -156572,14 +155726,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -156589,13 +155743,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -156610,7 +155764,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-960618439422934171911338", + "value" : "NO-153209568741166125868697", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -156621,7 +155775,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "catenaXId" : "urn:uuid:dc337b7a-b7bc-4048-9dab-5ffb81dd939c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -156633,10 +155787,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "assetId" : "urn:uuid:dc337b7a-b7bc-4048-9dab-5ffb81dd939c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -156645,17 +155799,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2da60b18-4bdd-4734-ba77-07ae5ca4c45f", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:de35e270-c1ee-4aa4-a167-3f3b8c458753", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -156668,24 +155822,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -156911,7 +156047,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-960618439422934171911338", + "batteryIDDMCCode" : "NO-153209568741166125868697", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -156930,31 +156066,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:dc337b7a-b7bc-4048-9dab-5ffb81dd939c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:dc337b7a-b7bc-4048-9dab-5ffb81dd939c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "catenaXId" : "urn:uuid:db8bf7b8-fbfe-4d6a-8e3a-b30b98f9f33f", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -156969,11 +156121,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-07-02", + "currentStateOfHealthTimestamp" : "2018-12-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-14", + "currentStateOfHealthTimestamp" : "2024-03-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -156983,35 +156135,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "catenaXId" : "urn:uuid:db8bf7b8-fbfe-4d6a-8e3a-b30b98f9f33f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "907412", + "orderNumber" : "734702", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "3571", + "referencedStandard" : "JIS", + "referencedStandardID" : "4447", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -157022,28 +156174,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -157058,7 +156210,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-525934761064530276316729", + "value" : "NO-608558517614927714755745", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -157069,7 +156221,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "catenaXId" : "urn:uuid:db8bf7b8-fbfe-4d6a-8e3a-b30b98f9f33f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -157081,10 +156233,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "assetId" : "urn:uuid:db8bf7b8-fbfe-4d6a-8e3a-b30b98f9f33f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -157093,17 +156245,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7f3e32b8-985b-4e87-97b5-e531485457f4", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:71486117-37cc-4a6f-867d-2b89e4589538", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -157116,24 +156268,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -157359,7 +156493,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-525934761064530276316729", + "batteryIDDMCCode" : "NO-608558517614927714755745", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -157378,28 +156512,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:db8bf7b8-fbfe-4d6a-8e3a-b30b98f9f33f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:db8bf7b8-fbfe-4d6a-8e3a-b30b98f9f33f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 33, + "recycledContent" : 34, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -157409,7 +156559,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 34, + "recycledContent" : 63, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -157419,7 +156569,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 62, + "recycledContent" : 43, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -157430,112 +156580,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "catenaXId" : "urn:uuid:31e43add-1a29-4bc6-b43d-64713adda0a2", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "catenaXId" : "urn:uuid:5cacab02-85ca-404a-a0de-14a663b2ffe3", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "catenaXId" : "urn:uuid:61f0f3cd-327b-4728-acb1-0e2277c6801d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "catenaXId" : "urn:uuid:d8959031-e6ae-49fa-988d-5b9b1c005630", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "catenaXId" : "urn:uuid:9fc02110-1594-4a3e-ad6a-0cac502b6ed2", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "catenaXId" : "urn:uuid:6df76a8c-acb7-4b33-9b92-04dfc3914bb8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "catenaXId" : "urn:uuid:16c93a0c-997c-44b7-822f-7952e4c73369", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "catenaXId" : "urn:uuid:8a6d1acc-6144-466e-b7b9-aaa843ea0c3a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "catenaXId" : "urn:uuid:1afa88d0-886c-43a0-a921-62c5a44a06f6", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "catenaXId" : "urn:uuid:1f0da6dd-1e5b-42f5-a593-1893bfff1515", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -157543,25 +156693,25 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "110423", + "orderNumber" : "911453", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 22 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -157570,8 +156720,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "7708", + "referencedStandard" : "AISI", + "referencedStandardID" : "2363", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -157580,10 +156730,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -157593,11 +156743,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -157618,7 +156768,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-793352892420425441608700", + "value" : "NO-027592507924474738071852", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -157629,7 +156779,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -157641,10 +156791,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "assetId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -157653,36 +156803,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:914b8c53-dabe-4312-9a36-a07e0581ad2a", - "itemVersion" : "02", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:86b55ae5-8561-42bb-8977-6c3a1028901f", + "ownerItemId" : "urn:uuid:4ec68863-189c-4d97-8b7f-1aadcd101b20", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -157691,17 +156822,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:458c4d07-09fc-4af7-b6b0-b862bfedb6eb", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:f0faac36-06f4-4ab3-ae4e-697d5eeb8af4", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "childassetId" : "urn:uuid:31e43add-1a29-4bc6-b43d-64713adda0a2", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -157710,36 +156841,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:55ba3ac6-fde0-439a-be81-0e2cdad631cc", + "ownerItemId" : "urn:uuid:483d5d24-686b-45e2-8ee1-aa3d9cec7bce", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:8e106643-a959-4467-86df-56908888f54d", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "childassetId" : "urn:uuid:5cacab02-85ca-404a-a0de-14a663b2ffe3", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -157748,17 +156860,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8fee7515-113d-49c8-909c-092acb903933", + "ownerItemId" : "urn:uuid:4694e9c7-24a9-4e1a-9e2c-9105d8560d47", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "childassetId" : "urn:uuid:61f0f3cd-327b-4728-acb1-0e2277c6801d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -157767,17 +156879,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a1801c9e-4163-478c-9559-41cfec7061a6", + "ownerItemId" : "urn:uuid:13fd09f5-2e60-4b35-98ed-8e2bc24a3612", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "childassetId" : "urn:uuid:d8959031-e6ae-49fa-988d-5b9b1c005630", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -157786,17 +156898,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9250e1a9-3c30-4ee7-916b-0c92bc466de4", + "ownerItemId" : "urn:uuid:c7d2914b-96a4-4b9d-82b8-f060512e0a5c", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "childassetId" : "urn:uuid:9fc02110-1594-4a3e-ad6a-0cac502b6ed2", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -157805,17 +156917,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9ad8a564-90e4-4f66-b0d7-8bab3c9790ca", + "ownerItemId" : "urn:uuid:03dbcdcb-1861-497f-b8b3-79e0be3d5e91", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "childassetId" : "urn:uuid:6df76a8c-acb7-4b33-9b92-04dfc3914bb8", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -157824,17 +156936,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b4d58852-494e-4011-ab36-be8d1e428636", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:1a24a5e5-c7bf-4846-adb5-3e9db307b07f", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "childassetId" : "urn:uuid:16c93a0c-997c-44b7-822f-7952e4c73369", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -157843,37 +156955,57 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7525d075-2592-4446-8f2c-fcd88c4cec10", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:bdb6431f-12bc-4711-8d14-4573638ab6ec", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "childassetId" : "urn:uuid:8a6d1acc-6144-466e-b7b9-aaa843ea0c3a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" + }, + "ownerItemId" : "urn:uuid:b4dceb62-dea2-409b-90b4-be7870649867", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "nameAtOwner" : "HV MODUL" - } + "childassetId" : "urn:uuid:1afa88d0-886c-43a0-a921-62c5a44a06f6", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" + }, + "ownerItemId" : "urn:uuid:7563b9df-bf27-486f-833d-503509a0b2c7", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:1f0da6dd-1e5b-42f5-a593-1893bfff1515", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { @@ -158100,7 +157232,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-793352892420425441608700", + "batteryIDDMCCode" : "NO-027592507924474738071852", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -158142,13 +157274,13 @@ "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, - "issueDate" : "2024-02-26", - "version" : 1.5, - "status" : "Invalid" + "issueDate" : "2024-03-22", + "version" : 1.8, + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6291, + "diameter" : 229.6746, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -158156,22 +157288,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 16 + "value" : 17 } }, "commercial" : { - "placedOnMarket" : "2024-02-22", + "placedOnMarket" : "2024-01-02", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-793352892420425441608700", + "value" : "NO-027592507924474738071852", "key" : "PartInstanceID" } ], - "gtin" : " 55998351", + "gtin" : " 48954683", "additionalCode" : [ { "name" : "TARIC", - "value" : "186201518" + "value" : "241924595" } ] }, "sources" : { @@ -158193,7 +157325,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Sustainability", + "category" : "Compliance", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -158222,7 +157354,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-03-11", + "date" : "2024-03-27", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -158238,9 +157370,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 7.4429 ] + "left" : [ 1.0148 ] }, - "id" : "KH1887" + "id" : "DA3539" } ] }, "additionalData" : [ { @@ -158263,12 +157395,12 @@ } ], "sustainability" : { "material" : [ { - "recycled" : true, + "recycled" : false, "renewable" : false, "percentage" : 5, "name" : "Steel" } ], - "critical" : [ "Nickel" ], + "critical" : [ "Graphite" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -158278,14 +157410,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 115 + "carbonContentTotal" : 117 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003AXS3", "manufacturer" : { - "facilityId" : "BPNL00000003AYRE", + "facilityId" : "BPNL00000003B2OM", "manufacturerId" : "BPNL00000003AYRE" } } @@ -158298,31 +157430,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "catenaXId" : "urn:uuid:31e43add-1a29-4bc6-b43d-64713adda0a2", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -158337,11 +157485,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-08-30", + "currentStateOfHealthTimestamp" : "2020-08-16", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthTimestamp" : "2024-03-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -158351,35 +157499,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "catenaXId" : "urn:uuid:31e43add-1a29-4bc6-b43d-64713adda0a2", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "528527", + "orderNumber" : "876000", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "5292", + "referencedStandard" : "GB", + "referencedStandardID" : "6251", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -158388,30 +157536,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -158426,7 +157574,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-216391419426668087358748", + "value" : "NO-106892024730314547507922", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -158437,7 +157585,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "catenaXId" : "urn:uuid:31e43add-1a29-4bc6-b43d-64713adda0a2", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -158449,10 +157597,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "assetId" : "urn:uuid:31e43add-1a29-4bc6-b43d-64713adda0a2", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -158461,17 +157609,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:04ef9794-5054-4671-adef-340ce03f7a7d", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:a7d6aa55-a590-4ffd-942d-682b14043b0b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -158484,24 +157632,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -158727,7 +157857,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-216391419426668087358748", + "batteryIDDMCCode" : "NO-106892024730314547507922", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -158746,31 +157876,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:31e43add-1a29-4bc6-b43d-64713adda0a2", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:31e43add-1a29-4bc6-b43d-64713adda0a2", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "catenaXId" : "urn:uuid:5cacab02-85ca-404a-a0de-14a663b2ffe3", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -158785,11 +157931,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-09-11", + "currentStateOfHealthTimestamp" : "2018-08-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-13", + "currentStateOfHealthTimestamp" : "2024-03-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -158799,16 +157945,16 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "catenaXId" : "urn:uuid:5cacab02-85ca-404a-a0de-14a663b2ffe3", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "533136", + "orderNumber" : "323680", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 16 @@ -158817,17 +157963,17 @@ "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "DIN", - "referencedStandardID" : "1275", + "referencedStandardID" : "8780", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -158839,11 +157985,11 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -158859,7 +158005,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -158874,7 +158020,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-070573056146020140114258", + "value" : "NO-631011693710128610783939", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -158885,7 +158031,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "catenaXId" : "urn:uuid:5cacab02-85ca-404a-a0de-14a663b2ffe3", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -158897,10 +158043,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "assetId" : "urn:uuid:5cacab02-85ca-404a-a0de-14a663b2ffe3", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -158909,17 +158055,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a29b9359-bf3f-4ee6-82a9-7fda6c96043f", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:4bdab07b-c3bd-4e7e-8621-e10c1a9b2aa0", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -158932,24 +158078,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -159175,7 +158303,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-070573056146020140114258", + "batteryIDDMCCode" : "NO-631011693710128610783939", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -159194,31 +158322,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5cacab02-85ca-404a-a0de-14a663b2ffe3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5cacab02-85ca-404a-a0de-14a663b2ffe3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "catenaXId" : "urn:uuid:61f0f3cd-327b-4728-acb1-0e2277c6801d", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -159233,11 +158377,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-09-25", + "currentStateOfHealthTimestamp" : "2016-04-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-09", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -159247,23 +158391,23 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "catenaXId" : "urn:uuid:61f0f3cd-327b-4728-acb1-0e2277c6801d", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "480742", + "orderNumber" : "395355", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -159275,7 +158419,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "JIS", - "referencedStandardID" : "4908", + "referencedStandardID" : "3488", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -159287,7 +158431,7 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -159301,13 +158445,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -159322,7 +158466,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-998470145454027100913530", + "value" : "NO-384564807221739331766071", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -159333,7 +158477,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "catenaXId" : "urn:uuid:61f0f3cd-327b-4728-acb1-0e2277c6801d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -159348,7 +158492,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "assetId" : "urn:uuid:61f0f3cd-327b-4728-acb1-0e2277c6801d", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -159357,17 +158501,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3aa721af-7321-4c44-b9fe-02b29bdaed36", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:a2811870-fb9a-4364-9e1b-beb1785a6f10", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -159380,24 +158524,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -159623,7 +158749,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-998470145454027100913530", + "batteryIDDMCCode" : "NO-384564807221739331766071", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -159642,31 +158768,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:61f0f3cd-327b-4728-acb1-0e2277c6801d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:61f0f3cd-327b-4728-acb1-0e2277c6801d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "catenaXId" : "urn:uuid:d8959031-e6ae-49fa-988d-5b9b1c005630", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -159681,11 +158823,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-09-05", + "currentStateOfHealthTimestamp" : "2022-05-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthTimestamp" : "2024-03-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -159695,35 +158837,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "catenaXId" : "urn:uuid:d8959031-e6ae-49fa-988d-5b9b1c005630", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "729044", + "orderNumber" : "642569", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "2690", + "referencedStandard" : "JIS", + "referencedStandardID" : "2625", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -159732,14 +158874,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -159749,13 +158891,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -159770,7 +158912,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-553870064722951756380389", + "value" : "NO-021961286068030704179273", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -159781,7 +158923,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "catenaXId" : "urn:uuid:d8959031-e6ae-49fa-988d-5b9b1c005630", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -159793,10 +158935,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "assetId" : "urn:uuid:d8959031-e6ae-49fa-988d-5b9b1c005630", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -159805,17 +158947,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:276f5550-a09f-41e2-bf05-3c69bc1175be", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:6acdbfc6-7882-4168-8297-d1af0a619c09", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -159828,24 +158970,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -160071,7 +159195,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-553870064722951756380389", + "batteryIDDMCCode" : "NO-021961286068030704179273", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -160090,31 +159214,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d8959031-e6ae-49fa-988d-5b9b1c005630", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d8959031-e6ae-49fa-988d-5b9b1c005630", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "catenaXId" : "urn:uuid:9fc02110-1594-4a3e-ad6a-0cac502b6ed2", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -160129,11 +159269,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-10-01", + "currentStateOfHealthTimestamp" : "2021-11-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-23", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -160143,25 +159283,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "catenaXId" : "urn:uuid:9fc02110-1594-4a3e-ad6a-0cac502b6ed2", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "462035", + "orderNumber" : "681943", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -160171,7 +159311,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "ASME", - "referencedStandardID" : "8159", + "referencedStandardID" : "9678", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -160182,22 +159322,22 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -160218,7 +159358,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-770755434441842670470708", + "value" : "NO-189091928059980735726425", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -160229,7 +159369,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "catenaXId" : "urn:uuid:9fc02110-1594-4a3e-ad6a-0cac502b6ed2", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -160241,10 +159381,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "assetId" : "urn:uuid:9fc02110-1594-4a3e-ad6a-0cac502b6ed2", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -160253,17 +159393,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:32356d8d-4ce9-4b15-af23-c816b7066f76", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:30757d85-b160-429a-b261-f70eec22554f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -160276,24 +159416,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -160519,7 +159641,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-770755434441842670470708", + "batteryIDDMCCode" : "NO-189091928059980735726425", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -160538,31 +159660,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9fc02110-1594-4a3e-ad6a-0cac502b6ed2", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9fc02110-1594-4a3e-ad6a-0cac502b6ed2", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "catenaXId" : "urn:uuid:6df76a8c-acb7-4b33-9b92-04dfc3914bb8", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -160577,7 +159715,7 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-04-03", + "currentStateOfHealthTimestamp" : "2022-12-05", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { @@ -160591,35 +159729,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "catenaXId" : "urn:uuid:6df76a8c-acb7-4b33-9b92-04dfc3914bb8", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "708923", + "orderNumber" : "92569", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "8210", + "referencedStandard" : "EN", + "referencedStandardID" : "9923", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -160630,8 +159768,8 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -160641,17 +159779,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -160666,7 +159804,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-795780647921641316860975", + "value" : "NO-941343107717238854755561", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -160677,7 +159815,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "catenaXId" : "urn:uuid:6df76a8c-acb7-4b33-9b92-04dfc3914bb8", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -160692,7 +159830,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "assetId" : "urn:uuid:6df76a8c-acb7-4b33-9b92-04dfc3914bb8", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -160701,17 +159839,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0267052f-b1a9-4ca4-90d2-40360bf31a49", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:014612b1-cc57-418f-9f75-dc6b68e3b6d1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -160724,24 +159862,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -160967,7 +160087,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-795780647921641316860975", + "batteryIDDMCCode" : "NO-941343107717238854755561", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -160986,31 +160106,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6df76a8c-acb7-4b33-9b92-04dfc3914bb8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6df76a8c-acb7-4b33-9b92-04dfc3914bb8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "catenaXId" : "urn:uuid:16c93a0c-997c-44b7-822f-7952e4c73369", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -161025,11 +160161,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-06-13", + "currentStateOfHealthTimestamp" : "2018-11-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -161039,35 +160175,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "catenaXId" : "urn:uuid:16c93a0c-997c-44b7-822f-7952e4c73369", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "706727", + "orderNumber" : "975685", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "5671", + "referencedStandard" : "DIN", + "referencedStandardID" : "1399", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -161083,23 +160219,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -161114,7 +160250,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-651190678479839520199228", + "value" : "NO-443753552801791993980233", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -161125,7 +160261,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "catenaXId" : "urn:uuid:16c93a0c-997c-44b7-822f-7952e4c73369", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -161137,10 +160273,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "assetId" : "urn:uuid:16c93a0c-997c-44b7-822f-7952e4c73369", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -161149,17 +160285,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:419941ea-191a-4b77-901e-f438a859ecd6", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:9ee1616a-4c95-40db-9c0d-3859bbf1c07a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -161172,24 +160308,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -161415,7 +160533,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-651190678479839520199228", + "batteryIDDMCCode" : "NO-443753552801791993980233", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -161434,31 +160552,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:16c93a0c-997c-44b7-822f-7952e4c73369", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:16c93a0c-997c-44b7-822f-7952e4c73369", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "catenaXId" : "urn:uuid:8a6d1acc-6144-466e-b7b9-aaa843ea0c3a", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -161473,11 +160607,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-12-27", + "currentStateOfHealthTimestamp" : "2014-04-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-14", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -161487,35 +160621,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "catenaXId" : "urn:uuid:8a6d1acc-6144-466e-b7b9-aaa843ea0c3a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "349925", + "orderNumber" : "173100", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "7656", + "referencedStandard" : "EN", + "referencedStandardID" : "2302", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -161524,20 +160658,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -161547,7 +160681,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -161562,7 +160696,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-428045788323091672467060", + "value" : "NO-641688372626415359636594", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -161573,7 +160707,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "catenaXId" : "urn:uuid:8a6d1acc-6144-466e-b7b9-aaa843ea0c3a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -161585,10 +160719,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "assetId" : "urn:uuid:8a6d1acc-6144-466e-b7b9-aaa843ea0c3a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -161597,17 +160731,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4eff8d49-ad1b-420c-8162-9eb9fc370238", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:49746072-f90a-4a51-aac1-f4fe3934317e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -161620,24 +160754,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -161863,7 +160979,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-428045788323091672467060", + "batteryIDDMCCode" : "NO-641688372626415359636594", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -161882,31 +160998,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8a6d1acc-6144-466e-b7b9-aaa843ea0c3a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8a6d1acc-6144-466e-b7b9-aaa843ea0c3a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "catenaXId" : "urn:uuid:1afa88d0-886c-43a0-a921-62c5a44a06f6", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -161921,11 +161053,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-07-14", + "currentStateOfHealthTimestamp" : "2018-12-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-05", + "currentStateOfHealthTimestamp" : "2024-03-27", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -161935,35 +161067,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "catenaXId" : "urn:uuid:1afa88d0-886c-43a0-a921-62c5a44a06f6", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "47812", + "orderNumber" : "71508", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "7304", + "referencedStandard" : "AS", + "referencedStandardID" : "2298", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -161972,30 +161104,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -162010,7 +161142,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-759557059617093989385682", + "value" : "NO-528976416624234587910741", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -162021,7 +161153,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "catenaXId" : "urn:uuid:1afa88d0-886c-43a0-a921-62c5a44a06f6", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -162033,10 +161165,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "assetId" : "urn:uuid:1afa88d0-886c-43a0-a921-62c5a44a06f6", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -162045,17 +161177,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:85ac2def-32fc-4d72-9a32-ca53570392aa", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:695c906a-f7ab-4289-827a-5c4320278f0b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -162068,24 +161200,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -162311,7 +161425,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-759557059617093989385682", + "batteryIDDMCCode" : "NO-528976416624234587910741", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -162330,31 +161444,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1afa88d0-886c-43a0-a921-62c5a44a06f6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1afa88d0-886c-43a0-a921-62c5a44a06f6", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "catenaXId" : "urn:uuid:1f0da6dd-1e5b-42f5-a593-1893bfff1515", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -162369,11 +161499,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-09-17", + "currentStateOfHealthTimestamp" : "2018-04-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-09", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -162383,35 +161513,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "catenaXId" : "urn:uuid:1f0da6dd-1e5b-42f5-a593-1893bfff1515", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "396934", + "orderNumber" : "52292", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "IS", - "referencedStandardID" : "1290", + "referencedStandardID" : "8474", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -162422,28 +161552,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -162458,7 +161588,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-066639614700637985131228", + "value" : "NO-600811642696073800844376", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -162469,7 +161599,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "catenaXId" : "urn:uuid:1f0da6dd-1e5b-42f5-a593-1893bfff1515", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -162481,10 +161611,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "assetId" : "urn:uuid:1f0da6dd-1e5b-42f5-a593-1893bfff1515", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -162493,17 +161623,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:676db28d-c7e3-4ad1-8ebb-d94c8fd8b770", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:9d4cfdc7-a023-4ade-a638-bb58bbd8f69a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -162516,24 +161646,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -162759,7 +161871,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-066639614700637985131228", + "batteryIDDMCCode" : "NO-600811642696073800844376", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -162778,28 +161890,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1f0da6dd-1e5b-42f5-a593-1893bfff1515", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1f0da6dd-1e5b-42f5-a593-1893bfff1515", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Iron", - "recycledContent" : 40, + "recycledContent" : 51, "materialClass" : "1.1", "quantity" : { "unit" : "unit:kilogram", @@ -162809,7 +161937,7 @@ "materialAbbreviation" : "IR334" }, { "materialName" : "Polyethylen", - "recycledContent" : 87, + "recycledContent" : 28, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -162819,7 +161947,7 @@ "materialAbbreviation" : "PE221" }, { "materialName" : "Polyamid6", - "recycledContent" : 32, + "recycledContent" : 58, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -162829,7 +161957,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Aluminium", - "recycledContent" : 62, + "recycledContent" : 23, "materialClass" : "2.1", "quantity" : { "unit" : "unit:kilogram", @@ -162839,7 +161967,7 @@ "materialAbbreviation" : "ALU331" }, { "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", - "recycledContent" : 81, + "recycledContent" : 76, "materialClass" : "0.7", "quantity" : { "unit" : "unit:kilogram", @@ -162849,7 +161977,7 @@ "materialAbbreviation" : "W123" }, { "materialName" : "Glue", - "recycledContent" : 10, + "recycledContent" : 66, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -162859,7 +161987,7 @@ "materialAbbreviation" : "GL338" }, { "materialName" : "Carbon Steel", - "recycledContent" : 74, + "recycledContent" : 20, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -162869,7 +161997,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Cooper", - "recycledContent" : 55, + "recycledContent" : 52, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -162879,7 +162007,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Rubber", - "recycledContent" : 79, + "recycledContent" : 52, "materialClass" : "5.3", "quantity" : { "unit" : "unit:kilogram", @@ -162889,7 +162017,7 @@ "materialAbbreviation" : "R22" }, { "materialName" : "Textiles", - "recycledContent" : 42, + "recycledContent" : 38, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:kilogram", @@ -162900,356 +162028,356 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", "childItems" : [ { - "catenaXId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", + "catenaXId" : "urn:uuid:c1007188-10cf-4de2-b8a3-a32ddabec1e4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "catenaXId" : "urn:uuid:7afe9d00-2bb2-47fd-a5c5-ac582404da38", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "catenaXId" : "urn:uuid:d7e8200a-81e9-4715-bfdf-715151ab986d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", + "catenaXId" : "urn:uuid:ff496cea-68fe-4706-80e7-15b9a2910e5c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", + "catenaXId" : "urn:uuid:f5da3ddd-0fec-4822-81e1-b3e939405032", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", + "catenaXId" : "urn:uuid:44b5e201-c901-4ce2-95fb-2b1a39a2eb3e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", + "catenaXId" : "urn:uuid:5a814969-9136-4cd7-a88d-9786cf0b6e41", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", + "catenaXId" : "urn:uuid:4de18b03-065d-43d9-9a04-4828a56288a5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", + "catenaXId" : "urn:uuid:9db652bc-00a3-4174-befd-57f16e978136", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", + "catenaXId" : "urn:uuid:f34c2452-41b8-4772-820a-14c7e239dbd7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", + "catenaXId" : "urn:uuid:88f8192b-c0ea-4f0f-913a-6647e7724950", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", + "catenaXId" : "urn:uuid:ef6bd396-e606-4243-add5-d3be6fc99224", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", + "catenaXId" : "urn:uuid:738a3601-fb66-4423-a8a3-b80bff3934ee", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", + "catenaXId" : "urn:uuid:47fa74f2-6cb9-4fc6-ba9f-9000ebdce9ca", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", + "catenaXId" : "urn:uuid:b6999c3a-e26c-4513-a689-b9b6890043e1", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", + "catenaXId" : "urn:uuid:f7f5bd0b-093e-48e5-8fff-b63f04ddec1c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", + "catenaXId" : "urn:uuid:4cc3974d-507a-4f45-9efc-0b9257147843", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", + "catenaXId" : "urn:uuid:409a8a52-f502-4d57-97c7-a0b77b87482b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", + "catenaXId" : "urn:uuid:e5ec9e2d-a1ed-4aa6-9806-a4f667fefe31", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", + "catenaXId" : "urn:uuid:089c3fea-4505-491b-a121-006d9f8dc090", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", + "catenaXId" : "urn:uuid:b1709e04-f860-41fd-9f29-d5bc29b37116", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", + "catenaXId" : "urn:uuid:95388da0-cc21-4ef7-aff0-e9f607300f3c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", + "catenaXId" : "urn:uuid:5063b3e5-fff6-4b87-bd2c-44e32548948e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", + "catenaXId" : "urn:uuid:1370f8b7-cd45-4748-b422-a811f29c7348", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", + "catenaXId" : "urn:uuid:87e8c28e-872c-4110-ade8-7d0439e26f1f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", + "catenaXId" : "urn:uuid:24753c7a-bac9-4c3a-8677-98f04d375619", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", + "catenaXId" : "urn:uuid:9ddb6702-48e7-4835-bf5e-b388a445465b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", + "catenaXId" : "urn:uuid:912d62e1-006f-4818-b271-78805088bc54", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", + "catenaXId" : "urn:uuid:6cd6caca-2015-46bf-85ac-abf09e67df94", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "catenaXId" : "urn:uuid:fec10053-0b64-44e9-9f29-c8a2d95f8292", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "catenaXId" : "urn:uuid:d530ccd3-ec55-4c41-b222-ba9046cdb7be", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B5MJ", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", + "catenaXId" : "urn:uuid:7f701f37-8aff-4059-92da-02e8fc4bce35", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { - "value" : "GG-88", + "value" : "ZH-30", "key" : "manufacturerPartId" }, { - "value" : "OMAUTSWWLUZIALLQA", + "value" : "OMBWFRKDADFXIKBGU", "key" : "partInstanceId" }, { - "value" : "OMAUTSWWLUZIALLQA", + "value" : "OMBWFRKDADFXIKBGU", "key" : "van" } ], "manufacturingInformation" : { - "date" : "2013-05-30T05:25:44.000Z", + "date" : "2013-08-19T14:56:23.000Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", "partTypeInformation" : { - "manufacturerPartId" : "GG-88", + "manufacturerPartId" : "ZH-30", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -163257,29 +162385,29 @@ } ], "nameAtManufacturer" : "Vehicle Fully Electric" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "03", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "" } } ], "urn:samm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Van", - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "bodyVariant" : "Mehrzweckfahrzeug", + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", "engine" : { "size" : 2998, "power" : 143 @@ -163289,49 +162417,49 @@ "vehicleModel" : "Vehicle Fully Electric", "productionDateGMT" : "2010-01-01", "equipmentVariants" : [ { - "code" : "S2AVB", - "description" : "adaptive drive", + "code" : "S378B", + "description" : "integrated child seats", "group" : "special equipment" }, { - "code" : "S218A", - "description" : "sport automatic transmission", + "code" : "S388C", + "description" : "security plus", "group" : "special equipment" }, { - "code" : "S378B", - "description" : "integrated child seats", + "code" : "A248B", + "description" : "steering wheel heating", "group" : "special equipment" }, { - "code" : "B298B", - "description" : "keyless entry", + "code" : "S218A", + "description" : "sport automatic transmission", "group" : "special equipment" } ], "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", "mileage" : [ { "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2014-03-24", + "mileageTimestamp" : "2017-07-27", "mileageDistance" : 120000 } ] } ] }, { - "catenaXId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:c1007188-10cf-4de2-b8a3-a32ddabec1e4", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "142050", + "orderNumber" : "488701", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -163340,8 +162468,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "7983", + "referencedStandard" : "JASO", + "referencedStandardID" : "7736", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -163357,23 +162485,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -163382,13 +162510,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "73849201-61", "key" : "manufacturerPartId" }, { - "value" : "NO-897103492718576075219698", + "value" : "NO-948964819995699405884009", "key" : "partInstanceId" }, { "value" : "Company 10", @@ -163405,7 +162533,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", + "catenaXId" : "urn:uuid:c1007188-10cf-4de2-b8a3-a32ddabec1e4", "partTypeInformation" : { "manufacturerPartId" : "73849201-61", "customerPartId" : "73849201-61", @@ -163417,56 +162545,54 @@ "nameAtManufacturer" : "Catalysator", "nameAtCustomer" : "Catalysator" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:c1007188-10cf-4de2-b8a3-a32ddabec1e4", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", + "catenaXId" : "urn:uuid:c1007188-10cf-4de2-b8a3-a32ddabec1e4", "partTypeInformation" : { "ownerPartId" : "73849201-61", - "partVersion" : "02", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Catalysator", "partClassification" : [ { "value" : "Catalysator", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Catalysator" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c1007188-10cf-4de2-b8a3-a32ddabec1e4", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "catenaXId" : "urn:uuid:7afe9d00-2bb2-47fd-a5c5-ac582404da38", "childItems" : [ { - "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "catenaXId" : "urn:uuid:0c55fcdc-074d-4f0e-8f86-c3f9cfab1a5a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000000BJTL", @@ -163474,35 +162600,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "catenaXId" : "urn:uuid:7afe9d00-2bb2-47fd-a5c5-ac582404da38", "bpnl" : "BPNL00000003CSGV", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "335362", + "orderNumber" : "228195", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "2823", + "referencedStandard" : "EN", + "referencedStandardID" : "8356", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -163514,7 +162640,7 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -163534,7 +162660,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -163549,7 +162675,7 @@ "value" : "22782277-50", "key" : "manufacturerPartId" }, { - "value" : "NO-211534666015366566012745", + "value" : "NO-230982514205879884205703", "key" : "partInstanceId" }, { "value" : "Company 3", @@ -163566,7 +162692,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "catenaXId" : "urn:uuid:7afe9d00-2bb2-47fd-a5c5-ac582404da38", "partTypeInformation" : { "manufacturerPartId" : "22782277-50", "customerPartId" : "22782277-50", @@ -163581,7 +162707,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "assetId" : "urn:uuid:7afe9d00-2bb2-47fd-a5c5-ac582404da38", "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { "item" : [ { @@ -163590,26 +162716,26 @@ "key" : "BPNL00000003CSGV:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:26e85232-2b60-47b6-985e-d83772378e0b", + "ownerItemId" : "urn:uuid:651b1d41-9105-4063-b355-2c506643699b", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "childassetId" : "urn:uuid:0c55fcdc-074d-4f0e-8f86-c3f9cfab1a5a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "catenaXId" : "urn:uuid:7afe9d00-2bb2-47fd-a5c5-ac582404da38", "partTypeInformation" : { "ownerPartId" : "22782277-50", "partVersion" : "03", @@ -163622,27 +162748,25 @@ "nameAtOwner" : "Door front-left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7afe9d00-2bb2-47fd-a5c5-ac582404da38", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003CSGV" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "14388717EVX", + "value" : "52981143ZUY", "key" : "jisNumber" } ], "manufacturingInformation" : { @@ -163653,7 +162777,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "catenaXId" : "urn:uuid:0c55fcdc-074d-4f0e-8f86-c3f9cfab1a5a", "partTypeInformation" : { "manufacturerPartId" : "123-0.740-3434-A", "customerPartId" : "PRT-12345", @@ -163666,35 +162790,35 @@ "nameAtCustomer" : "side element A" } } ], - "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "catenaXId" : "urn:uuid:0c55fcdc-074d-4f0e-8f86-c3f9cfab1a5a", "bpnl" : "BPNL00000000BJTL", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "522039", + "orderNumber" : "991145", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 24 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "8589", + "referencedStandard" : "JASO", + "referencedStandardID" : "6935", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -163703,30 +162827,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -163741,7 +162865,7 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-810295075415539190881160", + "value" : "NO-130266291136593933660106", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -163752,7 +162876,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "catenaXId" : "urn:uuid:0c55fcdc-074d-4f0e-8f86-c3f9cfab1a5a", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", @@ -163767,16 +162891,16 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "assetId" : "urn:uuid:0c55fcdc-074d-4f0e-8f86-c3f9cfab1a5a", "manufacturerId" : "BPNL00000000BJTL", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "catenaXId" : "urn:uuid:0c55fcdc-074d-4f0e-8f86-c3f9cfab1a5a", "partTypeInformation" : { "ownerPartId" : "95657762-59", "partVersion" : "05", @@ -163789,31 +162913,29 @@ "nameAtOwner" : "Door Key" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0c55fcdc-074d-4f0e-8f86-c3f9cfab1a5a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7afe9d00-2bb2-47fd-a5c5-ac582404da38", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000000BJTL" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "catenaXId" : "urn:uuid:d7e8200a-81e9-4715-bfdf-715151ab986d", "childItems" : [ { - "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "catenaXId" : "urn:uuid:338dfbf4-ab88-4dab-a544-f6ce6bbafb4d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000000BJTL", @@ -163821,35 +162943,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "catenaXId" : "urn:uuid:d7e8200a-81e9-4715-bfdf-715151ab986d", "bpnl" : "BPNL00000003CSGV", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "252563", + "orderNumber" : "638646", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "8858", + "referencedStandard" : "AISI", + "referencedStandardID" : "3163", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -163860,28 +162982,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -163896,7 +163018,7 @@ "value" : "95657362-64", "key" : "manufacturerPartId" }, { - "value" : "NO-522606169119282135007012", + "value" : "NO-556147563281042718061689", "key" : "partInstanceId" }, { "value" : "Company 4", @@ -163913,7 +163035,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "catenaXId" : "urn:uuid:d7e8200a-81e9-4715-bfdf-715151ab986d", "partTypeInformation" : { "manufacturerPartId" : "33740332-54", "customerPartId" : "33740332-54", @@ -163925,10 +163047,10 @@ "nameAtManufacturer" : "Door f-r", "nameAtCustomer" : "Door front-right" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "assetId" : "urn:uuid:d7e8200a-81e9-4715-bfdf-715151ab986d", "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { "item" : [ { @@ -163937,29 +163059,29 @@ "key" : "BPNL00000003CSGV:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c8bb38b4-1ad6-4176-9766-24222d715c9f", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:f0c5af3b-ce47-43f0-81d4-4b5e65b6f57d", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "childassetId" : "urn:uuid:338dfbf4-ab88-4dab-a544-f6ce6bbafb4d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "catenaXId" : "urn:uuid:d7e8200a-81e9-4715-bfdf-715151ab986d", "partTypeInformation" : { "ownerPartId" : "33740332-54", - "partVersion" : "02", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Door front-right", "partClassification" : [ { @@ -163969,27 +163091,25 @@ "nameAtOwner" : "Door front-right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d7e8200a-81e9-4715-bfdf-715151ab986d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003CSGV" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "73869864QSZ", + "value" : "70354065RFW", "key" : "jisNumber" } ], "manufacturingInformation" : { @@ -164000,7 +163120,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "catenaXId" : "urn:uuid:338dfbf4-ab88-4dab-a544-f6ce6bbafb4d", "partTypeInformation" : { "manufacturerPartId" : "123-0.740-3434-A", "customerPartId" : "PRT-12345", @@ -164013,35 +163133,35 @@ "nameAtCustomer" : "side element A" } } ], - "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "catenaXId" : "urn:uuid:338dfbf4-ab88-4dab-a544-f6ce6bbafb4d", "bpnl" : "BPNL00000000BJTL", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "929989", + "orderNumber" : "622974", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 8 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "2393", + "referencedStandard" : "AS", + "referencedStandardID" : "1475", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -164053,7 +163173,7 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -164063,11 +163183,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -164088,7 +163208,7 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-526060008250250591571360", + "value" : "NO-528220564559373883742673", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -164099,7 +163219,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "catenaXId" : "urn:uuid:338dfbf4-ab88-4dab-a544-f6ce6bbafb4d", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", @@ -164111,22 +163231,22 @@ "nameAtManufacturer" : "Door Key", "nameAtCustomer" : "Door Key" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "assetId" : "urn:uuid:338dfbf4-ab88-4dab-a544-f6ce6bbafb4d", "manufacturerId" : "BPNL00000000BJTL", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "catenaXId" : "urn:uuid:338dfbf4-ab88-4dab-a544-f6ce6bbafb4d", "partTypeInformation" : { "ownerPartId" : "95657762-59", - "partVersion" : "04", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Door Key", "partClassification" : [ { @@ -164136,43 +163256,41 @@ "nameAtOwner" : "Door Key" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:338dfbf4-ab88-4dab-a544-f6ce6bbafb4d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d7e8200a-81e9-4715-bfdf-715151ab986d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000000BJTL" ] } ] }, { - "catenaXId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:ff496cea-68fe-4706-80e7-15b9a2910e5c", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "169179", + "orderNumber" : "326470", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -164181,8 +163299,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "1040", + "referencedStandard" : "ISO", + "referencedStandardID" : "7012", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -164191,30 +163309,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -164223,13 +163341,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "15635759-16", "key" : "manufacturerPartId" }, { - "value" : "NO-112437134579525713767718", + "value" : "NO-084097115656130448089157", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -164240,7 +163358,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", + "catenaXId" : "urn:uuid:ff496cea-68fe-4706-80e7-15b9a2910e5c", "partTypeInformation" : { "manufacturerPartId" : "15635759-16", "customerPartId" : "15635759-16", @@ -164252,53 +163370,51 @@ "nameAtManufacturer" : "Door r-l", "nameAtCustomer" : "Door rear-left" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:ff496cea-68fe-4706-80e7-15b9a2910e5c", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", + "catenaXId" : "urn:uuid:ff496cea-68fe-4706-80e7-15b9a2910e5c", "partTypeInformation" : { "ownerPartId" : "15635759-16", - "partVersion" : "01", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Door rear-left", "partClassification" : [ { "value" : "Door rear-left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Door rear-left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ff496cea-68fe-4706-80e7-15b9a2910e5c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:f5da3ddd-0fec-4822-81e1-b3e939405032", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "158072", + "orderNumber" : "923806", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -164307,13 +163423,13 @@ "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -164322,8 +163438,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "6647", + "referencedStandard" : "JIS", + "referencedStandardID" : "1506", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -164339,17 +163455,17 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -164364,13 +163480,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "28673126-98", "key" : "manufacturerPartId" }, { - "value" : "NO-353669866416007480479809", + "value" : "NO-969324281837325916922383", "key" : "partInstanceId" }, { "value" : "Company 5", @@ -164387,7 +163503,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", + "catenaXId" : "urn:uuid:f5da3ddd-0fec-4822-81e1-b3e939405032", "partTypeInformation" : { "manufacturerPartId" : "28673126-98", "customerPartId" : "28673126-98", @@ -164399,78 +163515,76 @@ "nameAtManufacturer" : "Door r-r", "nameAtCustomer" : "Door rear-right" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:f5da3ddd-0fec-4822-81e1-b3e939405032", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", + "catenaXId" : "urn:uuid:f5da3ddd-0fec-4822-81e1-b3e939405032", "partTypeInformation" : { "ownerPartId" : "28673126-98", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Door rear-right", "partClassification" : [ { "value" : "Door rear-right", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Door rear-right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f5da3ddd-0fec-4822-81e1-b3e939405032", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:44b5e201-c901-4ce2-95fb-2b1a39a2eb3e", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "295231", + "orderNumber" : "889129", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "3221", + "referencedStandard" : "ISO", + "referencedStandardID" : "6365", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -164479,30 +163593,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -164511,13 +163625,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "94421589-82", "key" : "manufacturerPartId" }, { - "value" : "NO-745506815228397423604793", + "value" : "NO-685009777402686436343960", "key" : "partInstanceId" }, { "value" : "Company 6", @@ -164534,7 +163648,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", + "catenaXId" : "urn:uuid:44b5e201-c901-4ce2-95fb-2b1a39a2eb3e", "partTypeInformation" : { "manufacturerPartId" : "94421589-82", "customerPartId" : "94421589-82", @@ -164549,16 +163663,16 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:44b5e201-c901-4ce2-95fb-2b1a39a2eb3e", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", + "catenaXId" : "urn:uuid:44b5e201-c901-4ce2-95fb-2b1a39a2eb3e", "partTypeInformation" : { "ownerPartId" : "94421589-82", "partVersion" : "05", @@ -164566,58 +163680,56 @@ "partDescription" : "Engine hood", "partClassification" : [ { "value" : "Engine hood", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Engine hood" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:44b5e201-c901-4ce2-95fb-2b1a39a2eb3e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:5a814969-9136-4cd7-a88d-9786cf0b6e41", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "780572", + "orderNumber" : "842790", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 9 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "4945", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6914", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -164629,21 +163741,21 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -164658,13 +163770,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "85023955-75", "key" : "manufacturerPartId" }, { - "value" : "NO-111494423758526603085139", + "value" : "NO-974454300561654889409059", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -164675,7 +163787,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", + "catenaXId" : "urn:uuid:5a814969-9136-4cd7-a88d-9786cf0b6e41", "partTypeInformation" : { "manufacturerPartId" : "85023955-75", "customerPartId" : "85023955-75", @@ -164690,16 +163802,16 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:5a814969-9136-4cd7-a88d-9786cf0b6e41", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", + "catenaXId" : "urn:uuid:5a814969-9136-4cd7-a88d-9786cf0b6e41", "partTypeInformation" : { "ownerPartId" : "85023955-75", "partVersion" : "01", @@ -164707,39 +163819,37 @@ "partDescription" : "Tailgate", "partClassification" : [ { "value" : "Tailgate", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Tailgate" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5a814969-9136-4cd7-a88d-9786cf0b6e41", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:4de18b03-065d-43d9-9a04-4828a56288a5", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "283160", + "orderNumber" : "332249", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 14 @@ -164753,12 +163863,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "5283", + "referencedStandard" : "ISO", + "referencedStandardID" : "2149", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -164770,7 +163880,7 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -164780,17 +163890,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -164799,13 +163909,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "13769860-47", "key" : "manufacturerPartId" }, { - "value" : "NO-445614779824118555770555", + "value" : "NO-097467415283383577076394", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -164816,7 +163926,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", + "catenaXId" : "urn:uuid:4de18b03-065d-43d9-9a04-4828a56288a5", "partTypeInformation" : { "manufacturerPartId" : "13769860-47", "customerPartId" : "13769860-47", @@ -164831,16 +163941,16 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:4de18b03-065d-43d9-9a04-4828a56288a5", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", + "catenaXId" : "urn:uuid:4de18b03-065d-43d9-9a04-4828a56288a5", "partTypeInformation" : { "ownerPartId" : "13769860-47", "partVersion" : "02", @@ -164848,58 +163958,56 @@ "partDescription" : "Fender right", "partClassification" : [ { "value" : "Fender right", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Fender right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4de18b03-065d-43d9-9a04-4828a56288a5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:9db652bc-00a3-4174-befd-57f16e978136", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "73515", + "orderNumber" : "872691", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "6978", + "referencedStandard" : "JASO", + "referencedStandardID" : "4318", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -164911,17 +164019,17 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -164931,7 +164039,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -164940,13 +164048,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "36643162-35", "key" : "manufacturerPartId" }, { - "value" : "NO-379402067665339366723185", + "value" : "NO-469042080934096804161465", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -164957,7 +164065,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", + "catenaXId" : "urn:uuid:9db652bc-00a3-4174-befd-57f16e978136", "partTypeInformation" : { "manufacturerPartId" : "36643162-35", "customerPartId" : "36643162-35", @@ -164969,78 +164077,76 @@ "nameAtManufacturer" : "Fender right", "nameAtCustomer" : "Fender right" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:9db652bc-00a3-4174-befd-57f16e978136", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", + "catenaXId" : "urn:uuid:9db652bc-00a3-4174-befd-57f16e978136", "partTypeInformation" : { "ownerPartId" : "36643162-35", - "partVersion" : "01", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Fender right", "partClassification" : [ { "value" : "Fender right", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Fender right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9db652bc-00a3-4174-befd-57f16e978136", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:f34c2452-41b8-4772-820a-14c7e239dbd7", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "880115", + "orderNumber" : "166846", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "5404", + "referencedStandard" : "DIN", + "referencedStandardID" : "3120", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -165049,30 +164155,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -165081,13 +164187,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "54165444-59", "key" : "manufacturerPartId" }, { - "value" : "NO-881090076445243310184722", + "value" : "NO-619204814130822459941944", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -165098,7 +164204,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", + "catenaXId" : "urn:uuid:f34c2452-41b8-4772-820a-14c7e239dbd7", "partTypeInformation" : { "manufacturerPartId" : "54165444-59", "customerPartId" : "54165444-59", @@ -165110,78 +164216,76 @@ "nameAtManufacturer" : "Bumper front", "nameAtCustomer" : "Bumper front" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:f34c2452-41b8-4772-820a-14c7e239dbd7", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", + "catenaXId" : "urn:uuid:f34c2452-41b8-4772-820a-14c7e239dbd7", "partTypeInformation" : { "ownerPartId" : "54165444-59", - "partVersion" : "01", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Bumper front", "partClassification" : [ { "value" : "Bumper front", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Bumper front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f34c2452-41b8-4772-820a-14c7e239dbd7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:88f8192b-c0ea-4f0f-913a-6647e7724950", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "706395", + "orderNumber" : "126324", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "3766", + "referencedStandard" : "JIS", + "referencedStandardID" : "7531", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -165203,11 +164307,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -165222,13 +164326,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "22768257-25", "key" : "manufacturerPartId" }, { - "value" : "NO-523618767337566841620574", + "value" : "NO-847829123372928729703626", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -165239,7 +164343,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", + "catenaXId" : "urn:uuid:88f8192b-c0ea-4f0f-913a-6647e7724950", "partTypeInformation" : { "manufacturerPartId" : "22768257-25", "customerPartId" : "22768257-25", @@ -165251,78 +164355,76 @@ "nameAtManufacturer" : "Bumper rear", "nameAtCustomer" : "Bumper rear" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:88f8192b-c0ea-4f0f-913a-6647e7724950", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", + "catenaXId" : "urn:uuid:88f8192b-c0ea-4f0f-913a-6647e7724950", "partTypeInformation" : { "ownerPartId" : "22768257-25", - "partVersion" : "01", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Bumper rear", "partClassification" : [ { "value" : "Bumper rear", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Bumper rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:88f8192b-c0ea-4f0f-913a-6647e7724950", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:ef6bd396-e606-4243-add5-d3be6fc99224", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "136173", + "orderNumber" : "149217", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "4297", + "referencedStandard" : "EN", + "referencedStandardID" : "3604", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -165331,30 +164433,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -165363,13 +164465,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "65529521-37", "key" : "manufacturerPartId" }, { - "value" : "NO-134972035386407420689973", + "value" : "NO-541984649456838493855012", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -165380,7 +164482,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", + "catenaXId" : "urn:uuid:ef6bd396-e606-4243-add5-d3be6fc99224", "partTypeInformation" : { "manufacturerPartId" : "65529521-37", "customerPartId" : "65529521-37", @@ -165392,78 +164494,76 @@ "nameAtManufacturer" : "Exterior mirror left", "nameAtCustomer" : "Exterior mirror left" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:ef6bd396-e606-4243-add5-d3be6fc99224", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", + "catenaXId" : "urn:uuid:ef6bd396-e606-4243-add5-d3be6fc99224", "partTypeInformation" : { "ownerPartId" : "65529521-37", - "partVersion" : "02", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Exterior mirror left", "partClassification" : [ { "value" : "Exterior mirror left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Exterior mirror left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ef6bd396-e606-4243-add5-d3be6fc99224", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:738a3601-fb66-4423-a8a3-b80bff3934ee", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "964210", + "orderNumber" : "340161", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "4812", + "referencedStandard" : "ASME", + "referencedStandardID" : "7688", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -165475,27 +164575,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -165504,13 +164604,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "58471477-24", "key" : "manufacturerPartId" }, { - "value" : "NO-267889602260734086865808", + "value" : "NO-235532144731369285367922", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -165521,7 +164621,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", + "catenaXId" : "urn:uuid:738a3601-fb66-4423-a8a3-b80bff3934ee", "partTypeInformation" : { "manufacturerPartId" : "58471477-24", "customerPartId" : "58471477-24", @@ -165533,68 +164633,66 @@ "nameAtManufacturer" : "Exterior mirror right", "nameAtCustomer" : "Exterior mirror right" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:738a3601-fb66-4423-a8a3-b80bff3934ee", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", + "catenaXId" : "urn:uuid:738a3601-fb66-4423-a8a3-b80bff3934ee", "partTypeInformation" : { "ownerPartId" : "58471477-24", - "partVersion" : "03", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Exterior mirror right", "partClassification" : [ { "value" : "Exterior mirror right", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Exterior mirror right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:738a3601-fb66-4423-a8a3-b80bff3934ee", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:47fa74f2-6cb9-4fc6-ba9f-9000ebdce9ca", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "326337", + "orderNumber" : "812871", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -165603,8 +164701,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "7271", + "referencedStandard" : "DIN", + "referencedStandardID" : "3708", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -165616,27 +164714,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -165645,13 +164743,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "09002013-68", "key" : "manufacturerPartId" }, { - "value" : "NO-202606871824681721163696", + "value" : "NO-764968564635848033102370", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -165662,7 +164760,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", + "catenaXId" : "urn:uuid:47fa74f2-6cb9-4fc6-ba9f-9000ebdce9ca", "partTypeInformation" : { "manufacturerPartId" : "09002013-68", "customerPartId" : "09002013-68", @@ -165674,78 +164772,76 @@ "nameAtManufacturer" : "Trailer coupling", "nameAtCustomer" : "Tailer coupling" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:47fa74f2-6cb9-4fc6-ba9f-9000ebdce9ca", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", + "catenaXId" : "urn:uuid:47fa74f2-6cb9-4fc6-ba9f-9000ebdce9ca", "partTypeInformation" : { "ownerPartId" : "09002013-68", - "partVersion" : "05", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Tailer coupling", "partClassification" : [ { "value" : "Tailer coupling", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Tailer coupling" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:47fa74f2-6cb9-4fc6-ba9f-9000ebdce9ca", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:b6999c3a-e26c-4513-a689-b9b6890043e1", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "408093", + "orderNumber" : "265008", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "1001", + "referencedStandard" : "IS", + "referencedStandardID" : "1951", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -165754,30 +164850,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -165786,13 +164882,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "43501996-98", "key" : "manufacturerPartId" }, { - "value" : "NO-131978078535616439777638", + "value" : "NO-875672695094071829942132", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -165803,7 +164899,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", + "catenaXId" : "urn:uuid:b6999c3a-e26c-4513-a689-b9b6890043e1", "partTypeInformation" : { "manufacturerPartId" : "43501996-98", "customerPartId" : "43501996-98", @@ -165815,62 +164911,60 @@ "nameAtManufacturer" : "Dashboard", "nameAtCustomer" : "Dashboard" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:b6999c3a-e26c-4513-a689-b9b6890043e1", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", + "catenaXId" : "urn:uuid:b6999c3a-e26c-4513-a689-b9b6890043e1", "partTypeInformation" : { "ownerPartId" : "43501996-98", - "partVersion" : "02", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Dashboard", "partClassification" : [ { "value" : "Dashboard", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Dashboard" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b6999c3a-e26c-4513-a689-b9b6890043e1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:f7f5bd0b-093e-48e5-8fff-b63f04ddec1c", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "223934", + "orderNumber" : "40817", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 22 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -165881,12 +164975,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "1268", + "referencedStandard" : "DIN", + "referencedStandardID" : "4043", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -165897,28 +164991,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -165927,13 +165021,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "77795937-13", "key" : "manufacturerPartId" }, { - "value" : "NO-669032114632615288919023", + "value" : "NO-439378752764749866943526", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -165944,7 +165038,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", + "catenaXId" : "urn:uuid:f7f5bd0b-093e-48e5-8fff-b63f04ddec1c", "partTypeInformation" : { "manufacturerPartId" : "77795937-13", "customerPartId" : "77795937-13", @@ -165956,78 +165050,76 @@ "nameAtManufacturer" : "Steering wheel", "nameAtCustomer" : "Steering wheel" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:f7f5bd0b-093e-48e5-8fff-b63f04ddec1c", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", + "catenaXId" : "urn:uuid:f7f5bd0b-093e-48e5-8fff-b63f04ddec1c", "partTypeInformation" : { "ownerPartId" : "77795937-13", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Steering wheel", "partClassification" : [ { "value" : "Steering wheel", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Steering wheel" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f7f5bd0b-093e-48e5-8fff-b63f04ddec1c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:4cc3974d-507a-4f45-9efc-0b9257147843", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "838606", + "orderNumber" : "102099", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "1139", + "referencedStandard" : "ISO", + "referencedStandardID" : "9266", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -166036,30 +165128,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -166068,13 +165160,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "20125432-59", "key" : "manufacturerPartId" }, { - "value" : "NO-285471949284935640933709", + "value" : "NO-693787369495971897920451", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -166085,7 +165177,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", + "catenaXId" : "urn:uuid:4cc3974d-507a-4f45-9efc-0b9257147843", "partTypeInformation" : { "manufacturerPartId" : "20125432-59", "customerPartId" : "20125432-59", @@ -166097,78 +165189,76 @@ "nameAtManufacturer" : "Indicator left", "nameAtCustomer" : "Indicator left" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:4cc3974d-507a-4f45-9efc-0b9257147843", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", + "catenaXId" : "urn:uuid:4cc3974d-507a-4f45-9efc-0b9257147843", "partTypeInformation" : { "ownerPartId" : "20125432-59", - "partVersion" : "01", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Indicator left", "partClassification" : [ { "value" : "Indicator left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Indicator left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4cc3974d-507a-4f45-9efc-0b9257147843", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:409a8a52-f502-4d57-97c7-a0b77b87482b", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "699453", + "orderNumber" : "713629", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "4108", + "referencedStandard" : "IS", + "referencedStandardID" : "4553", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -166177,10 +165267,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -166194,13 +165284,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -166209,13 +165299,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "19073706-76", "key" : "manufacturerPartId" }, { - "value" : "NO-330957184442058171647578", + "value" : "NO-505208852529131657864901", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -166226,7 +165316,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", + "catenaXId" : "urn:uuid:409a8a52-f502-4d57-97c7-a0b77b87482b", "partTypeInformation" : { "manufacturerPartId" : "19073706-76", "customerPartId" : "19073706-76", @@ -166238,78 +165328,76 @@ "nameAtManufacturer" : "Indicator right", "nameAtCustomer" : "Indicator right" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:409a8a52-f502-4d57-97c7-a0b77b87482b", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", + "catenaXId" : "urn:uuid:409a8a52-f502-4d57-97c7-a0b77b87482b", "partTypeInformation" : { "ownerPartId" : "19073706-76", - "partVersion" : "05", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Indicator right", "partClassification" : [ { "value" : "Indicator right", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Indicator right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:409a8a52-f502-4d57-97c7-a0b77b87482b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:e5ec9e2d-a1ed-4aa6-9806-a4f667fefe31", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "236482", + "orderNumber" : "932584", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "JASO", - "referencedStandardID" : "5981", + "referencedStandardID" : "7232", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -166320,8 +165408,8 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -166331,17 +165419,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -166350,13 +165438,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "45415162-57", "key" : "manufacturerPartId" }, { - "value" : "NO-822796740548188148943670", + "value" : "NO-966970944530588040466745", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -166367,7 +165455,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", + "catenaXId" : "urn:uuid:e5ec9e2d-a1ed-4aa6-9806-a4f667fefe31", "partTypeInformation" : { "manufacturerPartId" : "45415162-57", "customerPartId" : "45415162-57", @@ -166382,16 +165470,16 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:e5ec9e2d-a1ed-4aa6-9806-a4f667fefe31", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", + "catenaXId" : "urn:uuid:e5ec9e2d-a1ed-4aa6-9806-a4f667fefe31", "partTypeInformation" : { "ownerPartId" : "45415162-57", "partVersion" : "05", @@ -166399,46 +165487,44 @@ "partDescription" : "Led headlight", "partClassification" : [ { "value" : "Led headlight", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Led headlight" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e5ec9e2d-a1ed-4aa6-9806-a4f667fefe31", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:089c3fea-4505-491b-a121-006d9f8dc090", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "131404", + "orderNumber" : "62516", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, @@ -166449,8 +165535,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "3300", + "referencedStandard" : "ASME", + "referencedStandardID" : "5519", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -166462,27 +165548,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -166491,13 +165577,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "78141846-87", "key" : "manufacturerPartId" }, { - "value" : "NO-771564318302097683905104", + "value" : "NO-917624356265437189507515", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -166508,7 +165594,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", + "catenaXId" : "urn:uuid:089c3fea-4505-491b-a121-006d9f8dc090", "partTypeInformation" : { "manufacturerPartId" : "78141846-87", "customerPartId" : "78141846-87", @@ -166520,66 +165606,64 @@ "nameAtManufacturer" : "Starter motor", "nameAtCustomer" : "Starter motor" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:089c3fea-4505-491b-a121-006d9f8dc090", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", + "catenaXId" : "urn:uuid:089c3fea-4505-491b-a121-006d9f8dc090", "partTypeInformation" : { "ownerPartId" : "78141846-87", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Starter motor", "partClassification" : [ { "value" : "Starter motor", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Starter motor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:089c3fea-4505-491b-a121-006d9f8dc090", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:b1709e04-f860-41fd-9f29-d5bc29b37116", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "460640", + "orderNumber" : "191193", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -166590,8 +165674,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "2681", + "referencedStandard" : "GB", + "referencedStandardID" : "6916", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -166600,10 +165684,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -166613,7 +165697,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -166632,13 +165716,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "81324139-23", "key" : "manufacturerPartId" }, { - "value" : "NO-239260272543321279088898", + "value" : "NO-493450131978668699100774", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -166649,7 +165733,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", + "catenaXId" : "urn:uuid:b1709e04-f860-41fd-9f29-d5bc29b37116", "partTypeInformation" : { "manufacturerPartId" : "81324139-23", "customerPartId" : "81324139-23", @@ -166661,57 +165745,55 @@ "nameAtManufacturer" : "Alternator", "nameAtCustomer" : "Alternator" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:b1709e04-f860-41fd-9f29-d5bc29b37116", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", + "catenaXId" : "urn:uuid:b1709e04-f860-41fd-9f29-d5bc29b37116", "partTypeInformation" : { "ownerPartId" : "81324139-23", - "partVersion" : "02", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Alternator", "partClassification" : [ { "value" : "Alternator", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Alternator" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b1709e04-f860-41fd-9f29-d5bc29b37116", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:95388da0-cc21-4ef7-aff0-e9f607300f3c", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "125824", + "orderNumber" : "302026", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { @@ -166720,19 +165802,19 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "2923", + "referencedStandard" : "AISI", + "referencedStandardID" : "6223", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -166741,14 +165823,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -166758,13 +165840,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -166773,13 +165855,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "57929013-09", "key" : "manufacturerPartId" }, { - "value" : "NO-306396512245970743345151", + "value" : "NO-650327009718442560260145", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -166790,7 +165872,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", + "catenaXId" : "urn:uuid:95388da0-cc21-4ef7-aff0-e9f607300f3c", "partTypeInformation" : { "manufacturerPartId" : "57929013-09", "customerPartId" : "57929013-09", @@ -166802,78 +165884,76 @@ "nameAtManufacturer" : "AC compressor", "nameAtCustomer" : "Air conditioning compressor" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:95388da0-cc21-4ef7-aff0-e9f607300f3c", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", + "catenaXId" : "urn:uuid:95388da0-cc21-4ef7-aff0-e9f607300f3c", "partTypeInformation" : { "ownerPartId" : "57929013-09", - "partVersion" : "05", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Air conditioning compressor", "partClassification" : [ { "value" : "Air conditioning compressor", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Air conditioning compressor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:95388da0-cc21-4ef7-aff0-e9f607300f3c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:5063b3e5-fff6-4b87-bd2c-44e32548948e", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "969328", + "orderNumber" : "687156", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "4926", + "referencedStandard" : "ASME", + "referencedStandardID" : "5009", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -166884,22 +165964,22 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -166914,13 +165994,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "61184040-23", "key" : "manufacturerPartId" }, { - "value" : "NO-895054980590632690004187", + "value" : "NO-481529331847464441223782", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -166931,7 +166011,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", + "catenaXId" : "urn:uuid:5063b3e5-fff6-4b87-bd2c-44e32548948e", "partTypeInformation" : { "manufacturerPartId" : "61184040-23", "customerPartId" : "61184040-23", @@ -166943,53 +166023,51 @@ "nameAtManufacturer" : "Taillight rear", "nameAtCustomer" : "Taillight rear" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:5063b3e5-fff6-4b87-bd2c-44e32548948e", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", + "catenaXId" : "urn:uuid:5063b3e5-fff6-4b87-bd2c-44e32548948e", "partTypeInformation" : { "ownerPartId" : "61184040-23", - "partVersion" : "04", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Taillight rear", "partClassification" : [ { "value" : "Taillight rear", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Taillight rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5063b3e5-fff6-4b87-bd2c-44e32548948e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:1370f8b7-cd45-4748-b422-a811f29c7348", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "213237", + "orderNumber" : "897161", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -166998,23 +166076,23 @@ "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "8871", + "referencedStandard" : "JASO", + "referencedStandardID" : "2821", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -167025,22 +166103,22 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -167055,13 +166133,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "78744126-74", "key" : "manufacturerPartId" }, { - "value" : "NO-620547476734310789610821", + "value" : "NO-547861897175055713666862", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -167072,7 +166150,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", + "catenaXId" : "urn:uuid:1370f8b7-cd45-4748-b422-a811f29c7348", "partTypeInformation" : { "manufacturerPartId" : "78744126-74", "customerPartId" : "78744126-74", @@ -167084,78 +166162,76 @@ "nameAtManufacturer" : "Taillight front", "nameAtCustomer" : "Taillight front" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:1370f8b7-cd45-4748-b422-a811f29c7348", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", + "catenaXId" : "urn:uuid:1370f8b7-cd45-4748-b422-a811f29c7348", "partTypeInformation" : { "ownerPartId" : "78744126-74", - "partVersion" : "01", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Taillight front", "partClassification" : [ { "value" : "Taillight front", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Taillight front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1370f8b7-cd45-4748-b422-a811f29c7348", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:87e8c28e-872c-4110-ade8-7d0439e26f1f", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "348657", + "orderNumber" : "673599", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "7617", + "referencedStandard" : "EN", + "referencedStandardID" : "3217", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -167166,12 +166242,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -167187,7 +166263,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -167196,13 +166272,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "12093297-03", "key" : "manufacturerPartId" }, { - "value" : "NO-600852313453046969357341", + "value" : "NO-534631261225749200522502", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -167213,7 +166289,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", + "catenaXId" : "urn:uuid:87e8c28e-872c-4110-ade8-7d0439e26f1f", "partTypeInformation" : { "manufacturerPartId" : "12093297-03", "customerPartId" : "12093297-03", @@ -167225,78 +166301,76 @@ "nameAtManufacturer" : "Axle part front", "nameAtCustomer" : "Axle part front" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:87e8c28e-872c-4110-ade8-7d0439e26f1f", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", + "catenaXId" : "urn:uuid:87e8c28e-872c-4110-ade8-7d0439e26f1f", "partTypeInformation" : { "ownerPartId" : "12093297-03", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Axle part front", "partClassification" : [ { "value" : "Axle part front", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Axle part front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:87e8c28e-872c-4110-ade8-7d0439e26f1f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:24753c7a-bac9-4c3a-8677-98f04d375619", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "584409", + "orderNumber" : "446923", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "3210", + "referencedStandard" : "AS", + "referencedStandardID" : "8017", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -167307,28 +166381,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -167337,13 +166411,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "88111709-49", "key" : "manufacturerPartId" }, { - "value" : "NO-552693740323920547409688", + "value" : "NO-815263249267167046145620", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -167354,7 +166428,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", + "catenaXId" : "urn:uuid:24753c7a-bac9-4c3a-8677-98f04d375619", "partTypeInformation" : { "manufacturerPartId" : "88111709-49", "customerPartId" : "88111709-49", @@ -167366,68 +166440,66 @@ "nameAtManufacturer" : "Axle part rear", "nameAtCustomer" : "Axle part rear" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:24753c7a-bac9-4c3a-8677-98f04d375619", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", + "catenaXId" : "urn:uuid:24753c7a-bac9-4c3a-8677-98f04d375619", "partTypeInformation" : { "ownerPartId" : "88111709-49", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Axle part rear", "partClassification" : [ { "value" : "Axle part rear", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Axle part rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:24753c7a-bac9-4c3a-8677-98f04d375619", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:9ddb6702-48e7-4835-bf5e-b388a445465b", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "676051", + "orderNumber" : "364598", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 22 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -167436,8 +166508,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "5707", + "referencedStandard" : "JASO", + "referencedStandardID" : "3882", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -167453,17 +166525,17 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -167478,13 +166550,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "00871379-44", "key" : "manufacturerPartId" }, { - "value" : "NO-647814508944148501691202", + "value" : "NO-004045696137237928488860", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -167495,7 +166567,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", + "catenaXId" : "urn:uuid:9ddb6702-48e7-4835-bf5e-b388a445465b", "partTypeInformation" : { "manufacturerPartId" : "00871379-44", "customerPartId" : "00871379-44", @@ -167507,78 +166579,76 @@ "nameAtManufacturer" : "Chassis", "nameAtCustomer" : "Chassis" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:9ddb6702-48e7-4835-bf5e-b388a445465b", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", + "catenaXId" : "urn:uuid:9ddb6702-48e7-4835-bf5e-b388a445465b", "partTypeInformation" : { "ownerPartId" : "00871379-44", - "partVersion" : "04", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Chassis", "partClassification" : [ { "value" : "Chassis", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Chassis" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9ddb6702-48e7-4835-bf5e-b388a445465b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:912d62e1-006f-4818-b271-78805088bc54", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "26618", + "orderNumber" : "394101", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "8901", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7485", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -167587,30 +166657,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -167619,13 +166689,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "08901347-87", "key" : "manufacturerPartId" }, { - "value" : "NO-248823758665297496645777", + "value" : "NO-372967020898472388852086", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -167636,7 +166706,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", + "catenaXId" : "urn:uuid:912d62e1-006f-4818-b271-78805088bc54", "partTypeInformation" : { "manufacturerPartId" : "08901347-87", "customerPartId" : "08901347-87", @@ -167648,78 +166718,76 @@ "nameAtManufacturer" : "Rims", "nameAtCustomer" : "Rims" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:912d62e1-006f-4818-b271-78805088bc54", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", + "catenaXId" : "urn:uuid:912d62e1-006f-4818-b271-78805088bc54", "partTypeInformation" : { "ownerPartId" : "08901347-87", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Rims", "partClassification" : [ { "value" : "Rims", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Rims" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:912d62e1-006f-4818-b271-78805088bc54", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:6cd6caca-2015-46bf-85ac-abf09e67df94", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "911188", + "orderNumber" : "635682", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "3536", + "referencedStandard" : "ASME", + "referencedStandardID" : "1969", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -167728,20 +166796,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -167751,7 +166819,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -167760,13 +166828,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "45863316-60", "key" : "manufacturerPartId" }, { - "value" : "NO-648856597195950857904627", + "value" : "NO-104341205718762138329374", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -167777,7 +166845,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", + "catenaXId" : "urn:uuid:6cd6caca-2015-46bf-85ac-abf09e67df94", "partTypeInformation" : { "manufacturerPartId" : "45863316-60", "customerPartId" : "45863316-60", @@ -167789,53 +166857,51 @@ "nameAtManufacturer" : "Tires", "nameAtCustomer" : "Tires" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:6cd6caca-2015-46bf-85ac-abf09e67df94", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", + "catenaXId" : "urn:uuid:6cd6caca-2015-46bf-85ac-abf09e67df94", "partTypeInformation" : { "ownerPartId" : "45863316-60", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Tires", "partClassification" : [ { "value" : "Tires", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Tires" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6cd6caca-2015-46bf-85ac-abf09e67df94", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Carbon Steel", - "recycledContent" : 57, + "recycledContent" : 73, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -167845,7 +166911,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Oil", - "recycledContent" : 1, + "recycledContent" : 31, "materialClass" : "9.2", "quantity" : { "unit" : "unit:kilogram", @@ -167855,7 +166921,7 @@ "materialAbbreviation" : "SAE40" }, { "materialName" : "Copper", - "recycledContent" : 43, + "recycledContent" : 39, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -167866,32 +166932,32 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "catenaXId" : "urn:uuid:fec10053-0b64-44e9-9f29-c8a2d95f8292", "childItems" : [ { - "catenaXId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "catenaXId" : "urn:uuid:399e7182-0e5d-40cf-8082-567f2b912483", "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2014 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "catenaXId" : "urn:uuid:bce717e6-375f-4815-ae9d-0e4868314862", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "catenaXId" : "urn:uuid:e97b06d5-eaa4-4397-8890-3ea9db5bf055", "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2341 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AZQP", @@ -167899,35 +166965,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "catenaXId" : "urn:uuid:fec10053-0b64-44e9-9f29-c8a2d95f8292", "bpnl" : "BPNL00000003B2OM", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "836732", + "orderNumber" : "424822", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "8877", + "referencedStandard" : "EN", + "referencedStandardID" : "7403", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -167936,10 +167002,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -167949,17 +167015,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -167974,7 +167040,7 @@ "value" : "42555H1-52", "key" : "manufacturerPartId" }, { - "value" : "NO-969650964344996854382343", + "value" : "NO-651538877044779403448747", "key" : "partInstanceId" }, { "value" : "Company 2", @@ -167991,7 +167057,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "catenaXId" : "urn:uuid:fec10053-0b64-44e9-9f29-c8a2d95f8292", "partTypeInformation" : { "manufacturerPartId" : "42555H1-52", "customerPartId" : "42555H1-52", @@ -168003,29 +167069,29 @@ "nameAtManufacturer" : "Transmission", "nameAtCustomer" : "Transmission" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "assetId" : "urn:uuid:fec10053-0b64-44e9-9f29-c8a2d95f8292", "manufacturerId" : "BPNL00000003B2OM", "childItems" : [ { "item" : [ { "itemClassification" : [ { - "value" : "Engineering Plastics", + "value" : "Mirror left", "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9b4e5ec3-51bb-4ced-b0ab-b26c13b4bbf2", + "ownerItemId" : "urn:uuid:cd9a0c3c-321a-4bc8-b448-88bbc9c85fe9", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "childassetId" : "urn:uuid:399e7182-0e5d-40cf-8082-567f2b912483", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -168034,17 +167100,17 @@ "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:229a00f0-5b01-4e8b-9d7a-95ae3e94aace", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:fd0eb3c9-4ddb-4367-8277-28b5f7c57e5c", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "childassetId" : "urn:uuid:bce717e6-375f-4815-ae9d-0e4868314862", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -168053,17 +167119,17 @@ "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a9148af8-298a-40cf-8fb9-72e7f9d88edd", + "ownerItemId" : "urn:uuid:cb3e7130-4ddb-431e-8b1b-adfea1bf2226", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "childassetId" : "urn:uuid:e97b06d5-eaa4-4397-8890-3ea9db5bf055", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -168076,24 +167142,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", - "partTypeInformation" : { - "ownerPartId" : "42555H1-52", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "Transmission", - "partClassification" : [ { - "value" : "Transmission", - "key" : "BPNL00000003B2OM:PartFamily" - } ], - "nameAtOwner" : "Transmission" - } - } ], "urn:samm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { "productSpecificParameters" : { "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], @@ -168135,10 +167183,10 @@ "documentTitle" : "Title A" } ] }, - "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "catenaXId" : "urn:uuid:fec10053-0b64-44e9-9f29-c8a2d95f8292", "identification" : { "localIdentifiers" : [ { - "value" : "NO-969650964344996854382343", + "value" : "NO-651538877044779403448747", "key" : "PartInstanceID" } ], "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", @@ -168204,22 +167252,38 @@ "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fec10053-0b64-44e9-9f29-c8a2d95f8292", + "partTypeInformation" : { + "ownerPartId" : "42555H1-52", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Transmission", + "partClassification" : [ { + "value" : "Transmission", + "key" : "BPNL00000003B2OM:PartFamily" } ], + "nameAtOwner" : "Transmission" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fec10053-0b64-44e9-9f29-c8a2d95f8292", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B2OM" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -168227,7 +167291,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 61, + "recycledContent" : 47, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -168237,7 +167301,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 69, + "recycledContent" : 13, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -168247,35 +167311,35 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "catenaXId" : "urn:uuid:399e7182-0e5d-40cf-8082-567f2b912483", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "417316", + "orderNumber" : "182662", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "7728", + "referencedStandard" : "DIN", + "referencedStandardID" : "1115", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -168284,30 +167348,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -168315,7 +167379,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "assetId" : "urn:uuid:399e7182-0e5d-40cf-8082-567f2b912483", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -168332,24 +167396,24 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "catenaXId" : "urn:uuid:399e7182-0e5d-40cf-8082-567f2b912483", "partTypeInformation" : { - "manufacturerPartId" : "NY-00", + "manufacturerPartId" : "LK-67", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "Engineering Plastics" + "nameAtManufacturer" : "Mirror left" }, "itemVersion" : "04" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "catenaXId" : "urn:uuid:399e7182-0e5d-40cf-8082-567f2b912483", "partTypeInformation" : { "ownerPartId" : "", "partVersion" : "04", @@ -168362,31 +167426,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:399e7182-0e5d-40cf-8082-567f2b912483", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fec10053-0b64-44e9-9f29-c8a2d95f8292", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "catenaXId" : "urn:uuid:bce717e6-375f-4815-ae9d-0e4868314862", "childItems" : [ { - "catenaXId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "catenaXId" : "urn:uuid:89089424-0c64-4133-8433-0cb4018e7d1f", "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.1908 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -168394,35 +167456,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "catenaXId" : "urn:uuid:bce717e6-375f-4815-ae9d-0e4868314862", "bpnl" : "BPNL00000003B3NX", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "918525", + "orderNumber" : "310525", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "4830", + "referencedStandard" : "ISO", + "referencedStandardID" : "6074", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -168431,30 +167493,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -168466,10 +167528,10 @@ "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "28560P2-12", + "value" : "73919Q9-93", "key" : "manufacturerPartId" }, { - "value" : "NO-067369307894106711566433", + "value" : "NO-162199902527215720219955", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -168480,10 +167542,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "catenaXId" : "urn:uuid:bce717e6-375f-4815-ae9d-0e4868314862", "partTypeInformation" : { - "manufacturerPartId" : "28560P2-12", - "customerPartId" : "28560P2-12", + "manufacturerPartId" : "73919Q9-93", + "customerPartId" : "73919Q9-93", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -168492,10 +167554,10 @@ "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "assetId" : "urn:uuid:bce717e6-375f-4815-ae9d-0e4868314862", "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { "item" : [ { @@ -168504,29 +167566,29 @@ "key" : "BPNL00000003B3NX:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f409347a-97a4-41b8-a0c5-e461fce6ab20", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:4a7f3a16-f5ad-481c-84f3-ef1732e00c38", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "childassetId" : "urn:uuid:89089424-0c64-4133-8433-0cb4018e7d1f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "catenaXId" : "urn:uuid:bce717e6-375f-4815-ae9d-0e4868314862", "partTypeInformation" : { - "ownerPartId" : "28560P2-12", - "partVersion" : "04", + "ownerPartId" : "73919Q9-93", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Sensor", "partClassification" : [ { @@ -168536,22 +167598,20 @@ "nameAtOwner" : "Sensor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bce717e6-375f-4815-ae9d-0e4868314862", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fec10053-0b64-44e9-9f29-c8a2d95f8292", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B3NX" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -168569,7 +167629,7 @@ "materialAbbreviation" : "" }, { "materialName" : "Other", - "recycledContent" : 2, + "recycledContent" : 36, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -168579,25 +167639,25 @@ "materialAbbreviation" : "" } ] } ], - "catenaXId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "catenaXId" : "urn:uuid:89089424-0c64-4133-8433-0cb4018e7d1f", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "457148", + "orderNumber" : "706510", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -168606,8 +167666,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "2088", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9428", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -168616,30 +167676,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -168647,7 +167707,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "assetId" : "urn:uuid:89089424-0c64-4133-8433-0cb4018e7d1f", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -168664,9 +167724,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "catenaXId" : "urn:uuid:89089424-0c64-4133-8433-0cb4018e7d1f", "partTypeInformation" : { - "manufacturerPartId" : "IB-48", + "manufacturerPartId" : "RR-78", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -168674,17 +167734,17 @@ } ], "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "catenaXId" : "urn:uuid:89089424-0c64-4133-8433-0cb4018e7d1f", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "02", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -168694,26 +167754,24 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:89089424-0c64-4133-8433-0cb4018e7d1f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bce717e6-375f-4815-ae9d-0e4868314862", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "catenaXId" : "urn:uuid:e97b06d5-eaa4-4397-8890-3ea9db5bf055", "childItems" : [ ] } ], "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -168728,25 +167786,25 @@ "materialAbbreviation" : "GL338" } ] } ], - "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "catenaXId" : "urn:uuid:e97b06d5-eaa4-4397-8890-3ea9db5bf055", "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "179318", + "orderNumber" : "743284", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -168755,8 +167813,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "5658", + "referencedStandard" : "AS", + "referencedStandardID" : "9673", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -168765,30 +167823,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -168796,7 +167854,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "assetId" : "urn:uuid:e97b06d5-eaa4-4397-8890-3ea9db5bf055", "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] } ], @@ -168813,9 +167871,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "catenaXId" : "urn:uuid:e97b06d5-eaa4-4397-8890-3ea9db5bf055", "partTypeInformation" : { - "manufacturerPartId" : "BJ-61", + "manufacturerPartId" : "CB-81", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -168825,12 +167883,12 @@ }, "itemVersion" : "03" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "catenaXId" : "urn:uuid:e97b06d5-eaa4-4397-8890-3ea9db5bf055", "partTypeInformation" : { "ownerPartId" : "", "partVersion" : "03", @@ -168843,28 +167901,26 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e97b06d5-eaa4-4397-8890-3ea9db5bf055", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fec10053-0b64-44e9-9f29-c8a2d95f8292", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Glue", - "recycledContent" : 17, + "recycledContent" : 63, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -168875,32 +167931,32 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "catenaXId" : "urn:uuid:d530ccd3-ec55-4c41-b222-ba9046cdb7be", "childItems" : [ { - "catenaXId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "catenaXId" : "urn:uuid:07c3f993-dae8-44b6-92a0-b517c68d0187", "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.3301 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "catenaXId" : "urn:uuid:e6354f13-0d62-4c12-b170-635373dd2d3c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "catenaXId" : "urn:uuid:5aeaca72-5dca-46b9-ac94-3829544e9190", "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2001 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -168908,35 +167964,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "catenaXId" : "urn:uuid:d530ccd3-ec55-4c41-b222-ba9046cdb7be", "bpnl" : "BPNL00000003B5MJ", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "549588", + "orderNumber" : "608175", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "5925", + "referencedStandard" : "ISO", + "referencedStandardID" : "7398", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -168948,27 +168004,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -168980,10 +168036,10 @@ "value" : "BPNL00000003B5MJ", "key" : "manufacturerId" }, { - "value" : "64019Q7-00", + "value" : "55560M0-59", "key" : "manufacturerPartId" }, { - "value" : "NO-826773693399477683890623", + "value" : "NO-386494791906738152266778", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -168994,10 +168050,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "catenaXId" : "urn:uuid:d530ccd3-ec55-4c41-b222-ba9046cdb7be", "partTypeInformation" : { - "manufacturerPartId" : "64019Q7-00", - "customerPartId" : "64019Q7-00", + "manufacturerPartId" : "55560M0-59", + "customerPartId" : "55560M0-59", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -169009,7 +168065,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "assetId" : "urn:uuid:d530ccd3-ec55-4c41-b222-ba9046cdb7be", "manufacturerId" : "BPNL00000003B5MJ", "childItems" : [ { "item" : [ { @@ -169018,17 +168074,17 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:be280555-de15-4b87-9b91-94684e83e0c9", + "ownerItemId" : "urn:uuid:aa5e418a-5e94-406d-82fd-f1be88dd54a9", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "childassetId" : "urn:uuid:07c3f993-dae8-44b6-92a0-b517c68d0187", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -169037,17 +168093,17 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f78b0e12-91d7-43c1-ac31-fc5fa8057e24", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:1b82df2c-b6a0-446a-8b62-7cff0bad2c80", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "childassetId" : "urn:uuid:e6354f13-0d62-4c12-b170-635373dd2d3c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -169056,28 +168112,28 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:99552ffe-2354-4627-9275-fab0debcd9da", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:73ececc9-9d18-468e-b77b-784ac5cd3cce", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "childassetId" : "urn:uuid:5aeaca72-5dca-46b9-ac94-3829544e9190", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "catenaXId" : "urn:uuid:d530ccd3-ec55-4c41-b222-ba9046cdb7be", "partTypeInformation" : { - "ownerPartId" : "64019Q7-00", + "ownerPartId" : "55560M0-59", "partVersion" : "01", "itemCategory" : "component", "partDescription" : "ECU", @@ -169088,22 +168144,20 @@ "nameAtOwner" : "ECU" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d530ccd3-ec55-4c41-b222-ba9046cdb7be", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B5MJ" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -169111,7 +168165,7 @@ "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 66, + "recycledContent" : 7, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -169121,7 +168175,7 @@ "materialAbbreviation" : "AL7" }, { "materialName" : "Other", - "recycledContent" : 77, + "recycledContent" : 41, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -169131,10 +168185,10 @@ "materialAbbreviation" : "" } ] } ], - "catenaXId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "catenaXId" : "urn:uuid:07c3f993-dae8-44b6-92a0-b517c68d0187", "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "798954", + "orderNumber" : "141037", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -169143,23 +168197,23 @@ "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "9906", + "referencedStandard" : "EN", + "referencedStandardID" : "9757", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -169170,22 +168224,22 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { @@ -169199,7 +168253,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "assetId" : "urn:uuid:07c3f993-dae8-44b6-92a0-b517c68d0187", "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] } ], @@ -169216,9 +168270,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "catenaXId" : "urn:uuid:07c3f993-dae8-44b6-92a0-b517c68d0187", "partTypeInformation" : { - "manufacturerPartId" : "TQ-65", + "manufacturerPartId" : "DB-66", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -169228,12 +168282,12 @@ }, "itemVersion" : "01" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "catenaXId" : "urn:uuid:07c3f993-dae8-44b6-92a0-b517c68d0187", "partTypeInformation" : { "ownerPartId" : "", "partVersion" : "01", @@ -169246,31 +168300,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:07c3f993-dae8-44b6-92a0-b517c68d0187", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d530ccd3-ec55-4c41-b222-ba9046cdb7be", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "catenaXId" : "urn:uuid:e6354f13-0d62-4c12-b170-635373dd2d3c", "childItems" : [ { - "catenaXId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "catenaXId" : "urn:uuid:12b614dc-95b9-4976-bd50-e2fe676e6319", "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.1908 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -169278,14 +168330,14 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "catenaXId" : "urn:uuid:e6354f13-0d62-4c12-b170-635373dd2d3c", "bpnl" : "BPNL00000003B3NX", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "324779", + "orderNumber" : "688959", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { @@ -169294,19 +168346,19 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "8959", + "referencedStandard" : "JASO", + "referencedStandardID" : "2445", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -169315,7 +168367,7 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, "percentageOfMaterialWeight" : 10 @@ -169328,11 +168380,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -169350,10 +168402,10 @@ "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "81438W4-69", + "value" : "98235W7-28", "key" : "manufacturerPartId" }, { - "value" : "NO-995949081304639517654037", + "value" : "NO-338203554649163708001668", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -169364,10 +168416,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "catenaXId" : "urn:uuid:e6354f13-0d62-4c12-b170-635373dd2d3c", "partTypeInformation" : { - "manufacturerPartId" : "81438W4-69", - "customerPartId" : "81438W4-69", + "manufacturerPartId" : "98235W7-28", + "customerPartId" : "98235W7-28", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -169376,41 +168428,41 @@ "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "assetId" : "urn:uuid:e6354f13-0d62-4c12-b170-635373dd2d3c", "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { "item" : [ { "itemClassification" : [ { - "value" : "Engineering Plastics", + "value" : "Mirror left", "key" : "BPNL00000003B3NX:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:fe8e1f2b-6448-41ac-9ade-d6586fc28853", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:444ab474-8063-4663-bc62-45bdaaa296d5", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "childassetId" : "urn:uuid:12b614dc-95b9-4976-bd50-e2fe676e6319", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "catenaXId" : "urn:uuid:e6354f13-0d62-4c12-b170-635373dd2d3c", "partTypeInformation" : { - "ownerPartId" : "81438W4-69", - "partVersion" : "01", + "ownerPartId" : "98235W7-28", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Sensor", "partClassification" : [ { @@ -169420,22 +168472,20 @@ "nameAtOwner" : "Sensor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e6354f13-0d62-4c12-b170-635373dd2d3c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d530ccd3-ec55-4c41-b222-ba9046cdb7be", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B3NX" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -169443,7 +168493,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 31, + "recycledContent" : 87, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -169453,7 +168503,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 35, + "recycledContent" : 1, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -169463,25 +168513,25 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "catenaXId" : "urn:uuid:12b614dc-95b9-4976-bd50-e2fe676e6319", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "368264", + "orderNumber" : "723977", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -169490,8 +168540,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "3966", + "referencedStandard" : "EN", + "referencedStandardID" : "1228", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -169500,24 +168550,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -169531,7 +168581,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "assetId" : "urn:uuid:12b614dc-95b9-4976-bd50-e2fe676e6319", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -169548,27 +168598,27 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "catenaXId" : "urn:uuid:12b614dc-95b9-4976-bd50-e2fe676e6319", "partTypeInformation" : { - "manufacturerPartId" : "CW-13", + "manufacturerPartId" : "ZV-90", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "Engineering Plastics" + "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "catenaXId" : "urn:uuid:12b614dc-95b9-4976-bd50-e2fe676e6319", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "05", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -169578,22 +168628,20 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:12b614dc-95b9-4976-bd50-e2fe676e6319", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e6354f13-0d62-4c12-b170-635373dd2d3c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -169601,7 +168649,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 4, + "recycledContent" : 71, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -169611,7 +168659,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 53, + "recycledContent" : 7, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -169621,35 +168669,35 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "catenaXId" : "urn:uuid:5aeaca72-5dca-46b9-ac94-3829544e9190", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "627552", + "orderNumber" : "417397", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "2856", + "referencedStandard" : "ASME", + "referencedStandardID" : "8342", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -169660,12 +168708,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -169675,13 +168723,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -169693,24 +168741,24 @@ "value" : "BPNL00000003B0Q0", "key" : "manufacturerId" }, { - "value" : "46106B9-16", + "value" : "36528D0-10", "key" : "manufacturerPartId" }, { - "value" : "NO-016852990645172955032259", + "value" : "NO-918636087890488440941983", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", "country" : "DEU", "sites" : [ { - "catenaXsiteId" : "BPNS00000003B0Q0", + "catenaXsiteId" : "BPNS00000003B5MJ", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "catenaXId" : "urn:uuid:5aeaca72-5dca-46b9-ac94-3829544e9190", "partTypeInformation" : { - "manufacturerPartId" : "46106B9-16", - "customerPartId" : "46106B9-16", + "manufacturerPartId" : "36528D0-10", + "customerPartId" : "36528D0-10", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -169719,22 +168767,22 @@ "nameAtManufacturer" : "Engineering Plastics", "nameAtCustomer" : "Engineering Plastics" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "assetId" : "urn:uuid:5aeaca72-5dca-46b9-ac94-3829544e9190", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "catenaXId" : "urn:uuid:5aeaca72-5dca-46b9-ac94-3829544e9190", "partTypeInformation" : { - "ownerPartId" : "46106B9-16", - "partVersion" : "03", + "ownerPartId" : "36528D0-10", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Engineering Plastics", "partClassification" : [ { @@ -169744,35 +168792,97 @@ "nameAtOwner" : "Engineering Plastics" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5aeaca72-5dca-46b9-ac94-3829544e9190", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d530ccd3-ec55-4c41-b222-ba9046cdb7be", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { - "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", - "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7f701f37-8aff-4059-92da-02e8fc4bce35", + "childItems" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3d45e8cb-2601-446c-9248-2f7f180e1313", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ad638047-9990-4896-af60-3bf56e077a3b", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:64263db8-79d7-4da9-9a8b-bcc9851d7b7d", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:196e239a-7253-4289-bef6-5797c884b11c", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:07342db1-b838-4aed-9ceb-b46191230347", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7f701f37-8aff-4059-92da-02e8fc4bce35", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "38049661-08", "key" : "manufacturerPartId" }, { - "value" : "NO-191917430528725375106893", + "value" : "NO-863627330185303438099030", "key" : "partInstanceId" }, { "value" : "Company 1", @@ -169789,7 +168899,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", + "catenaXId" : "urn:uuid:7f701f37-8aff-4059-92da-02e8fc4bce35", "partTypeInformation" : { "manufacturerPartId" : "38049661-08", "customerPartId" : "38049661-08", @@ -169801,7 +168911,7 @@ "nameAtManufacturer" : "Battery", "nameAtCustomer" : "Battery" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { "incoterms" : "DAP (Delivered at Place)", @@ -169840,7 +168950,7 @@ "key" : "JxkyvRnL" } ], "productLink" : "https://123", - "oeNumber" : "NO-191917430528725375106893", + "oeNumber" : "NO-863627330185303438099030", "category" : { "subCategory" : [ "Battery" ], "mainCategory" : [ "Audio, video, navigation" ] @@ -169853,121 +168963,121 @@ "mileage" : 120000.06 } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:7f701f37-8aff-4059-92da-02e8fc4bce35", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a272da79-26d7-4fbc-95d6-d45867b72487", + "ownerItemId" : "urn:uuid:f10ff7b9-baf5-4fe7-9b44-ca4012dc35d5", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "childassetId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2c70eb5d-d1db-46d7-a5a4-968e4632e40c", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:dc4a8dea-2162-4aef-b72c-798595f752ae", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "childassetId" : "urn:uuid:3d45e8cb-2601-446c-9248-2f7f180e1313", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:926f4443-f04a-4ba2-93dd-a5f7db4b9ec1", + "ownerItemId" : "urn:uuid:7359d14e-b43c-4fb3-94c5-6061cfa50e69", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "childassetId" : "urn:uuid:ad638047-9990-4896-af60-3bf56e077a3b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ae74877d-3423-484c-b431-71cc85145850", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:bc35bfc3-5f5f-4701-8750-b893d1d2c487", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d2dbda1c-1a8e-4a44-9cf3-b9ddde82d89e", + "childassetId" : "urn:uuid:64263db8-79d7-4da9-9a8b-bcc9851d7b7d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c7412f24-fd1f-49d5-8492-376df636a0b3", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:d73e8ee7-a44c-4195-a351-1eba1277b039", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:befab831-7855-4c24-a69d-82db4902c5ac", + "childassetId" : "urn:uuid:196e239a-7253-4289-bef6-5797c884b11c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:27ca6efa-3f00-41f9-9f47-51c8f244c473", + "ownerItemId" : "urn:uuid:3be8378d-20bd-48ad-b2a9-e9cd1fdc8840", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:cc88364a-4358-4b85-a61d-2b45391348ae", + "childassetId" : "urn:uuid:07342db1-b838-4aed-9ceb-b46191230347", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -169999,20 +169109,20 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AYRE", + "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2023-10-09", - "version" : 1.7, + "issueDate" : "2024-03-21", + "version" : 2.8, "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 1086.0725, - "width" : 1086, - "length" : 2005, - "weight" : 661, - "height" : 318 + "diameter" : 1472.0777, + "width" : 1472, + "length" : 2467, + "weight" : 696, + "height" : 346 }, "lifespan" : { "unit" : "unit:year", @@ -170020,18 +169130,18 @@ } }, "commercial" : { - "placedOnMarket" : "2022-12-19", + "placedOnMarket" : "2024-03-20", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-191917430528725375106893", + "value" : "NO-863627330185303438099030", "key" : "PartInstanceID" } ], - "gtin" : " 27217354", + "gtin" : " 43397703", "additionalCode" : [ { "name" : "TARIC", - "value" : "464053879" + "value" : "847841554" } ] }, "sources" : { @@ -170053,7 +169163,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Sustainability", + "category" : "Safety", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -170082,7 +169192,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-01-13", + "date" : "2024-03-28", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -170098,9 +169208,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 6.3151 ] + "left" : [ 9.591 ] }, - "id" : "YM2584" + "id" : "EB4909" } ] }, "additionalData" : [ { @@ -170123,12 +169233,12 @@ } ], "sustainability" : { "material" : [ { - "recycled" : false, + "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Aluminium" + "name" : "Graphite" } ], - "critical" : [ "Cobalt" ], + "critical" : [ "Graphite" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -170138,39 +169248,40 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 112 + "carbonContentTotal" : 104 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B2OM", + "importer" : "BPNL00000003B3NX", "manufacturer" : { - "facilityId" : "BPNL00000003B3NX", - "manufacturerId" : "BPNL00000003AYRE" + "facilityId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AVTH" } } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7f701f37-8aff-4059-92da-02e8fc4bce35", + "partTypeInformation" : { + "ownerPartId" : "38049661-08", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Battery", + "partClassification" : [ { + "value" : "Battery", + "key" : "BPNL00000003AVTH:PartFamily" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + "nameAtOwner" : "Battery" + } } ], "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 69, + "recycledContent" : 5, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -170180,7 +169291,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 42, + "recycledContent" : 12, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -170190,7 +169301,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 2, + "recycledContent" : 36, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -170200,97 +169311,33 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", - "childItems" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d2dbda1c-1a8e-4a44-9cf3-b9ddde82d89e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:befab831-7855-4c24-a69d-82db4902c5ac", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cc88364a-4358-4b85-a61d-2b45391348ae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "887964", + "orderNumber" : "145901", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "1783", + "referencedStandard" : "EN", + "referencedStandardID" : "5169", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -170299,54 +169346,36 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } } } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", - "partTypeInformation" : { - "ownerPartId" : "38049661-08", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "Battery", - "partClassification" : [ { - "value" : "Battery", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "Battery" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -170572,7 +169601,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-191917430528725375106893", + "batteryIDDMCCode" : "NO-863627330185303438099030", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -170591,6 +169620,21 @@ } ], "productType" : "pack" } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7f701f37-8aff-4059-92da-02e8fc4bce35", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "customers" : [ "BPNL00000003AVTH" ] + } ], "urn:samm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { "productConditions" : "at least 1990 model", "desiredPrice" : { @@ -170606,7 +169650,7 @@ "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 77, + "recycledContent" : 84, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -170616,7 +169660,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 89, + "recycledContent" : 21, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -170626,7 +169670,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 22, + "recycledContent" : 7, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -170637,112 +169681,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", + "catenaXId" : "urn:uuid:b11fd0ce-c6c5-40fc-945a-a3e7bf0a3855", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", + "catenaXId" : "urn:uuid:f32ce766-8520-4990-ac35-ff5f98edf459", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", + "catenaXId" : "urn:uuid:f08887ef-49ef-4524-83da-4fd32ca1ea16", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", + "catenaXId" : "urn:uuid:2c9cc341-85ee-48fb-98dd-ab23fea3cdb7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", + "catenaXId" : "urn:uuid:c9426628-2513-4ed1-848a-dcd4b51f7c54", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", + "catenaXId" : "urn:uuid:d972742f-c77b-4dae-906f-2606b8160fe5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", + "catenaXId" : "urn:uuid:5e1908ed-e176-4f57-9616-1415097d0fdf", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", + "catenaXId" : "urn:uuid:f719e96e-2d7a-4d25-b351-7ad81db4f12a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", + "catenaXId" : "urn:uuid:442d51f5-313a-4263-97f0-a35e8657da22", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", + "catenaXId" : "urn:uuid:8406a1e2-ddf8-4d55-a24b-4353c7e75d3e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -170750,35 +169794,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "298796", + "orderNumber" : "277878", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "5373", + "referencedStandard" : "EN", + "referencedStandardID" : "3886", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -170787,30 +169831,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -170819,13 +169863,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-225047452744455302636553", + "value" : "NO-115445174246140951066641", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -170836,7 +169880,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -170851,8504 +169895,219 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4abdf863-5c92-4597-acc4-df683a905d42", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:bce737d4-fda3-46ac-867d-cc4f7365b274", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c931e6e6-f903-4bd9-9fb1-198c62b74bd8", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:bf7c192b-2cae-4408-b064-b227974c751d", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", + "childassetId" : "urn:uuid:b11fd0ce-c6c5-40fc-945a-a3e7bf0a3855", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:fa3e56c6-550c-4f2a-970d-2c7cad4b962d", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:f794c412-4f20-4a36-bca7-bee75027380e", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", + "childassetId" : "urn:uuid:f32ce766-8520-4990-ac35-ff5f98edf459", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:52b808cd-bd9b-451a-baba-99be73c3c7dd", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:75ef7002-e438-4349-a416-9888da2bae25", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", + "childassetId" : "urn:uuid:f08887ef-49ef-4524-83da-4fd32ca1ea16", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:70c2a674-8246-4922-ac74-5cf37d0f3df4", + "ownerItemId" : "urn:uuid:b2bbec50-554a-4622-a95e-f2d52006ac50", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", + "childassetId" : "urn:uuid:2c9cc341-85ee-48fb-98dd-ab23fea3cdb7", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:bae04eaa-ae94-4153-8708-a69bb7cf1da6", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:7428b90e-1f8d-46f9-a3cc-a7c2ddc7b894", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", + "childassetId" : "urn:uuid:c9426628-2513-4ed1-848a-dcd4b51f7c54", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:676d16ce-6204-4fb7-b2bb-9ba0dd87666d", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:7e475843-a5ab-4a14-801a-c9da31e8e0c1", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", + "childassetId" : "urn:uuid:d972742f-c77b-4dae-906f-2606b8160fe5", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d47d5975-669c-4c11-8b27-2aadfd3ebe71", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:a75299aa-aedb-4460-a2af-c16c396fbddf", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", + "childassetId" : "urn:uuid:5e1908ed-e176-4f57-9616-1415097d0fdf", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:458090b2-a5d3-44cf-843c-70a8c2d07464", + "ownerItemId" : "urn:uuid:ca886066-fb69-4e30-8146-4a9d40d788ae", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", + "childassetId" : "urn:uuid:f719e96e-2d7a-4d25-b351-7ad81db4f12a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9b9ca33c-7116-40c6-8634-12c43e84c5d8", + "ownerItemId" : "urn:uuid:5633faa5-0ffc-42d5-b36f-64be713c1d64", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", + "childassetId" : "urn:uuid:442d51f5-313a-4263-97f0-a35e8657da22", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:50d33e5f-89b3-40b5-b1fe-3a3884174be3", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:abfceb70-6688-42c5-bb35-59db6e7698d4", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-225047452744455302636553", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AYRE", - "eori" : "DE012345678901" - }, - "issueDate" : "2024-02-18", - "version" : 1.3, - "status" : "Approved" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.6302, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 17 - } - }, - "commercial" : { - "placedOnMarket" : "2024-02-05", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-225047452744455302636553", - "key" : "PartInstanceID" - } ], - "gtin" : " 14780081", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "409566483" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "SubstanceOfConcern", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2024-02-26", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : false, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 1.9548 ] - }, - "id" : "SS5922" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : true, - "renewable" : false, - "percentage" : 5, - "name" : "Others" - } ], - "critical" : [ "Cobalt" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 101 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AXS3", - "manufacturer" : { - "facilityId" : "BPNL00000003AYRE", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", - "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-03-06", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-03-12", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ], - "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "725804", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 - }, - "bioBasedClass" : "gen1", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 9 - } - }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Redcert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "2851", - "materialNameStandardizedValue" : "PP-TD10" - }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : true, - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - } - }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - } - } - } - } - } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-053023736599742615848117", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "05" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:54182658-d04f-465b-8f01-a728b833239e", - "itemVersion" : "04", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:8406a1e2-ddf8-4d55-a24b-4353c7e75d3e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-053023736599742615848117", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", - "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-03-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-02-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ], - "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "816796", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 - }, - "bioBasedClass" : "gen3", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 - } - }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Redcert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "1874", - "materialNameStandardizedValue" : "PP-TD10" - }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : false, - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 - } - }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 - } - } - } - } - } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-732864797332146475523520", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "01" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:59835551-c523-48bf-b101-a46ac58c71af", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-732864797332146475523520", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", - "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-05-03", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-02-23", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ], - "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "544648", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 - }, - "bioBasedClass" : "gen2", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 - } - }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Greencert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "8094", - "materialNameStandardizedValue" : "PP-TD10" - }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : true, - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - } - }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - } - } - } - } - } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-319097498421815324263900", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "05" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:44f7751a-913f-440f-ac80-fb65c2995962", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-319097498421815324263900", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", - "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-01-14", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-03-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ], - "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "858159", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 - }, - "bioBasedClass" : "gen2", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - } - }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Yellowcert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "8825", - "materialNameStandardizedValue" : "PP-TD10" - }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : false, - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - } - }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - } - } - } - } - } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-640293564015841806077713", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "01" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:af32bd0f-dfc8-4288-842c-0f271e7897a2", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-640293564015841806077713", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", - "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-01-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-02-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ], - "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "487026", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 - }, - "bioBasedClass" : "gen3", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 9 - } - }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Redcert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "6119", - "materialNameStandardizedValue" : "PP-TD10" - }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : true, - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 - } - }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 - } - } - } - } - } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-407255088704313260876574", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "04" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:ca42c12d-0261-411f-ac01-f5470fdf6dcc", - "itemVersion" : "04", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-407255088704313260876574", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", - "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-12-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-03-14", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ], - "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "377925", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 - }, - "bioBasedClass" : "gen3", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 - } - }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Bluecert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "3125", - "materialNameStandardizedValue" : "PP-TD10" - }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : true, - "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 - } - }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - } - } - } - } - } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-005247654431541669301900", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "01" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:4e658c29-5d6c-450c-8e38-22b1e7865515", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-005247654431541669301900", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", - "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-04-08", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-03-09", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ], - "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "899144", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 - }, - "bioBasedClass" : "gen1", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 - } - }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Bluecert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "4990", - "materialNameStandardizedValue" : "PP-TD10" - }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : false, - "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 - } - }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 - } - } - } - } - } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-780079092640291814128113", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "01" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:ac6e4d6e-7747-4276-b180-de7de0434af9", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-780079092640291814128113", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", - "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-06-19", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-03-13", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ], - "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "235877", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 - }, - "bioBasedClass" : "gen3", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 - } - }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Bluecert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "6294", - "materialNameStandardizedValue" : "PP-TD10" - }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : true, - "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 - } - }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - } - } - } - } - } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-498860958581428795638850", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "05" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:508524ec-32c0-44e1-a888-5792e65b603e", - "itemVersion" : "04", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-498860958581428795638850", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", - "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-08-04", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-02-20", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ], - "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "641749", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 - }, - "bioBasedClass" : "gen2", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 - } - }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Greencert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "7206", - "materialNameStandardizedValue" : "PP-TD10" - }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : false, - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - } - }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 - } - } - } - } - } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-439183532206865037256516", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "04" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:135aad36-9dcc-4371-80aa-dd154f43b993", - "itemVersion" : "04", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-439183532206865037256516", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", - "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-02-12", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-03-03", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ], - "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "395682", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 - }, - "bioBasedClass" : "gen3", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 - } - }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Bluecert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "9300", - "materialNameStandardizedValue" : "PP-TD10" - }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : true, - "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - } - }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 - } - } - } - } - } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-677437679047578781943212", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "03" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:634cd7dd-9090-468e-9e91-cc286eccb9e1", - "itemVersion" : "04", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-677437679047578781943212", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Cooper", - "recycledContent" : 43, - "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" : 12, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } ], - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "174324", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 - }, - "bioBasedClass" : "gen2", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - } - }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Redcert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "3450", - "materialNameStandardizedValue" : "PP-TD10" - }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : false, - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 - } - }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 - } - } - } - } - } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-501018305274784241602073", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000001111DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "itemVersion" : "03" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:7005e9ff-95c3-4bd2-8bfd-66ab8fbc303b", - "itemVersion" : "03", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:d3f3cf42-a96e-4d3c-8d03-7d066ea0036b", - "itemVersion" : "02", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:ea6af487-5e6c-4f3f-843d-61f43eaea0c3", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:fae704ff-3e17-44b9-bdee-193c432cf0f3", - "itemVersion" : "04", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:fdd6c61a-0001-4800-8abb-1be0a38c170c", - "itemVersion" : "01", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:2ea28c34-ca0e-4f63-ad60-55e245621623", - "itemVersion" : "04", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:598c43f3-72c8-4951-906a-a3798416e804", - "itemVersion" : "04", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:703769af-1d9a-4acc-a985-30ef7290e07a", - "itemVersion" : "01", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:030202dc-0537-4956-bcfb-f7418398730c", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:a6e0d698-113b-49d9-a766-e3f0c60b9c3e", - "itemVersion" : "01", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:752a5318-a0c1-42c6-b2ee-05b355f8f9e6", - "itemVersion" : "01", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-501018305274784241602073", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AYRE", - "eori" : "DE012345678901" - }, - "issueDate" : "2023-09-10", - "version" : 2.5, - "status" : "Invalid" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.682, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 17 - } - }, - "commercial" : { - "placedOnMarket" : "2020-01-27", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-501018305274784241602073", - "key" : "PartInstanceID" - } ], - "gtin" : " 94170391", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "717119110" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-11-17", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : true, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 8.5621 ] - }, - "id" : "JU8706" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : false, - "renewable" : false, - "percentage" : 5, - "name" : "UV Varnish" - } ], - "critical" : [ "Graphite" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 113 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AYRE", - "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", - "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-08-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-03-06", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ], - "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "68136", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 - }, - "bioBasedClass" : "gen1", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - } - }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Greencert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "4731", - "materialNameStandardizedValue" : "PP-TD10" - }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : false, - "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - } - }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 - } - } - } - } - } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-713498680690089344875157", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "02" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:db2e23a7-d8ef-4bb6-9711-b63286662691", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-713498680690089344875157", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", - "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-12-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-02-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ], - "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "489279", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 - }, - "bioBasedClass" : "gen1", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 - } - }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Redcert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "8875", - "materialNameStandardizedValue" : "PP-TD10" - }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : false, - "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - } - }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - } - } - } - } - } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-754901179164912952471287", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "05" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:1004fb48-3648-4f61-bc67-dd0112550aaf", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-754901179164912952471287", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", - "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-12-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-02-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ], - "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "659447", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 - }, - "bioBasedClass" : "gen3", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 - } - }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Redcert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "2372", - "materialNameStandardizedValue" : "PP-TD10" - }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : false, - "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 - } - }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 - } - } - } - } - } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-212384038764272037807021", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "04" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:ac4d19b7-72da-4a03-a860-98bcdb1bf69d", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-212384038764272037807021", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", - "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-07-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-02-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ], - "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "474433", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 - }, - "bioBasedClass" : "gen2", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 - } - }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Bluecert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "6538", - "materialNameStandardizedValue" : "PP-TD10" - }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : false, - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 - } - }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 - } - } - } - } - } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-281978893666347349939292", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "01" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:f1e4467c-8639-4f9c-a119-7cd31e41d021", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-281978893666347349939292", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", - "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-05-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-02-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ], - "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "681473", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 - }, - "bioBasedClass" : "gen1", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 - } - }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Bluecert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "6801", - "materialNameStandardizedValue" : "PP-TD10" - }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : true, - "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 - } - }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - } - } - } - } - } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-197282769557955963065227", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "04" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:e30d0e57-17ac-442f-8793-874349153f9a", - "itemVersion" : "04", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-197282769557955963065227", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", - "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-02-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-02-16", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ], - "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "614739", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 - }, - "bioBasedClass" : "gen2", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 - } - }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Bluecert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "2371", - "materialNameStandardizedValue" : "PP-TD10" - }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : true, - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - } - }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - } - } - } - } - } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-513627497057751447854533", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "04" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:8efa5dca-68db-4de1-979a-59cad63e1c6d", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -179574,7 +170333,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-513627497057751447854533", + "batteryIDDMCCode" : "NO-115445174246140951066641", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -179585,39 +170344,234 @@ }, "cO2FootprintTotal" : 124 } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2024-02-11", + "version" : 1.7, + "status" : "Expired" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6834, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 16 + } + }, + "commercial" : { + "placedOnMarket" : "2023-12-20", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-115445174246140951066641", + "key" : "PartInstanceID" + } ], + "gtin" : " 69178334", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "442163541" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2024-03-21", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 8.6638 ] + }, + "id" : "WZ3812" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Manganese" + } ], + "critical" : [ "Nickel" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 116 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B2OM", + "manufacturer" : { + "facilityId" : "BPNL00000003B3NX", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", "subcomponents" : [ { "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" + "productType" : "module" } ], - "productType" : "cell" + "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f701f37-8aff-4059-92da-02e8fc4bce35", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", + "catenaXId" : "urn:uuid:b11fd0ce-c6c5-40fc-945a-a3e7bf0a3855", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -179632,11 +170586,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-07-25", + "currentStateOfHealthTimestamp" : "2024-04-02", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -179646,25 +170600,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", + "catenaXId" : "urn:uuid:b11fd0ce-c6c5-40fc-945a-a3e7bf0a3855", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "970142", + "orderNumber" : "817508", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -179673,8 +170627,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "2928", + "referencedStandard" : "GB", + "referencedStandardID" : "5412", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -179686,27 +170640,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -179721,7 +170675,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-222036500728807004532007", + "value" : "NO-977481276724065445855567", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -179732,7 +170686,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", + "catenaXId" : "urn:uuid:b11fd0ce-c6c5-40fc-945a-a3e7bf0a3855", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -179744,10 +170698,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", + "assetId" : "urn:uuid:b11fd0ce-c6c5-40fc-945a-a3e7bf0a3855", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -179756,17 +170710,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6a68c0ef-5bcd-4851-8be8-9c7594c4d226", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:10ae8c6a-5dfd-47f5-9a3a-4dca8ac3efa3", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -179779,24 +170733,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -180022,7 +170958,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-222036500728807004532007", + "batteryIDDMCCode" : "NO-977481276724065445855567", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -180041,31 +170977,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b11fd0ce-c6c5-40fc-945a-a3e7bf0a3855", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b11fd0ce-c6c5-40fc-945a-a3e7bf0a3855", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", + "catenaXId" : "urn:uuid:f32ce766-8520-4990-ac35-ff5f98edf459", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -180080,11 +171032,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-04-29", + "currentStateOfHealthTimestamp" : "2016-08-02", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-03-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -180094,19 +171046,19 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", + "catenaXId" : "urn:uuid:f32ce766-8520-4990-ac35-ff5f98edf459", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "577396", + "orderNumber" : "762845", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -180117,12 +171069,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "5747", + "referencedStandard" : "ISO", + "referencedStandardID" : "9649", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -180134,21 +171086,21 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -180169,7 +171121,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-867497373255801160984990", + "value" : "NO-828137125787287455447241", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -180180,7 +171132,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", + "catenaXId" : "urn:uuid:f32ce766-8520-4990-ac35-ff5f98edf459", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -180192,10 +171144,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", + "assetId" : "urn:uuid:f32ce766-8520-4990-ac35-ff5f98edf459", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -180204,17 +171156,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9302bb26-ce53-4b0f-8d74-2ef39075b3ef", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:ec76f74a-1ad6-4005-8df9-01aef21fe32a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -180227,24 +171179,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -180470,7 +171404,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-867497373255801160984990", + "batteryIDDMCCode" : "NO-828137125787287455447241", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -180489,31 +171423,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f32ce766-8520-4990-ac35-ff5f98edf459", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f32ce766-8520-4990-ac35-ff5f98edf459", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", + "catenaXId" : "urn:uuid:f08887ef-49ef-4524-83da-4fd32ca1ea16", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -180528,11 +171478,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-11-29", + "currentStateOfHealthTimestamp" : "2020-09-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -180542,35 +171492,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", + "catenaXId" : "urn:uuid:f08887ef-49ef-4524-83da-4fd32ca1ea16", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "228999", + "orderNumber" : "137900", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "2870", + "referencedStandard" : "EN", + "referencedStandardID" : "5589", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -180579,30 +171529,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -180617,7 +171567,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-234433363527778995608209", + "value" : "NO-485645309522244941900619", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -180628,7 +171578,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", + "catenaXId" : "urn:uuid:f08887ef-49ef-4524-83da-4fd32ca1ea16", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -180643,7 +171593,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", + "assetId" : "urn:uuid:f08887ef-49ef-4524-83da-4fd32ca1ea16", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -180652,17 +171602,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0f13f249-d965-477f-ae0a-08ab28801cf4", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:91b540e0-5f05-45ec-b9b9-9cdd7353fa02", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -180675,24 +171625,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -180918,7 +171850,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-234433363527778995608209", + "batteryIDDMCCode" : "NO-485645309522244941900619", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -180937,31 +171869,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f08887ef-49ef-4524-83da-4fd32ca1ea16", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f08887ef-49ef-4524-83da-4fd32ca1ea16", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", + "catenaXId" : "urn:uuid:2c9cc341-85ee-48fb-98dd-ab23fea3cdb7", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -180976,11 +171924,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-11-11", + "currentStateOfHealthTimestamp" : "2021-03-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -180990,19 +171938,19 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", + "catenaXId" : "urn:uuid:2c9cc341-85ee-48fb-98dd-ab23fea3cdb7", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "574946", + "orderNumber" : "744028", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -181013,12 +171961,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "1733", + "referencedStandard" : "IS", + "referencedStandardID" : "2219", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -181027,14 +171975,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -181044,13 +171992,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -181065,7 +172013,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-352108796706027868787571", + "value" : "NO-337416006796549425928892", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -181076,7 +172024,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", + "catenaXId" : "urn:uuid:2c9cc341-85ee-48fb-98dd-ab23fea3cdb7", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -181091,7 +172039,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", + "assetId" : "urn:uuid:2c9cc341-85ee-48fb-98dd-ab23fea3cdb7", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -181100,17 +172048,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b5da61e9-871c-4ecc-99ba-79b0d377d985", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:10ebad4e-9648-4940-a54c-743eb6414fef", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -181123,24 +172071,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -181366,7 +172296,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-352108796706027868787571", + "batteryIDDMCCode" : "NO-337416006796549425928892", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -181385,200 +172315,104 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2c9cc341-85ee-48fb-98dd-ab23fea3cdb7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Cooper", - "recycledContent" : 49, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 34, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 40, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] + "nameAtOwner" : "ZB ZELLE" + } } ], - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", - "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:8676f165-bf4c-4a55-ace1-08df65e2f835", + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2c9cc341-85ee-48fb-98dd-ab23fea3cdb7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "isOnlyPotentialParent" : false, "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a1d66637-a7e1-48f6-b242-fa2217f691b6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a462bfe5-5071-4a30-950d-54c1f083e904", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, - "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cb36d626-0fc9-4b0f-b322-de454d6bb41d", + } ], + "customers" : [ "BPNL00000003AYRE" ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:c9426628-2513-4ed1-848a-dcd4b51f7c54", + "childItems" : [ { + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-01-28", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-02", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:c9426628-2513-4ed1-848a-dcd4b51f7c54", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "90764", + "orderNumber" : "549994", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "6177", + "referencedStandard" : "IS", + "referencedStandardID" : "5109", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -181587,30 +172421,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -181622,36 +172456,36 @@ "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "8840837-48", + "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-513465712429541111831569", + "value" : "NO-037945966809951266943918", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", "country" : "DEU", "sites" : [ { - "catenaXsiteId" : "BPNS000001111DMY", + "catenaXsiteId" : "BPNS000004711DMY", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "catenaXId" : "urn:uuid:c9426628-2513-4ed1-848a-dcd4b51f7c54", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" }, "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "assetId" : "urn:uuid:c9426628-2513-4ed1-848a-dcd4b51f7c54", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -181660,226 +172494,27 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:0d7c9619-af62-41fe-a888-cecb4ed250cd", - "itemVersion" : "02", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:fefa38d5-0efd-4d71-a92a-eeccb72ac3b9", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4a8b5cf8-93fc-4f6e-abbd-f6df7d5492bd", - "itemVersion" : "03", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:544145c5-6553-4f7f-8450-eacb815b415a", + "ownerItemId" : "urn:uuid:b494a607-de1f-4658-a832-1a54ce39d942", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:b99ab465-e8b8-4686-b604-187720ac60a6", - "itemVersion" : "03", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:f38ef7b5-e5b9-43b7-9161-6c03b3543e18", - "itemVersion" : "04", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:4495b76c-88b4-4590-9533-6c8a1d09dd1f", - "itemVersion" : "01", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:85eb4b3f-dfcb-49ea-b279-3c123b8a4e77", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:8676f165-bf4c-4a55-ace1-08df65e2f835", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:405cb7cb-c22a-44aa-a129-c7395d2415b2", - "itemVersion" : "01", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:a1d66637-a7e1-48f6-b242-fa2217f691b6", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:ba17dda5-76b0-462a-9941-6b8064a0b640", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:a462bfe5-5071-4a30-950d-54c1f083e904", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:d7535b59-cda6-4e4f-bd4d-c4702d5dcef5", - "itemVersion" : "01", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:cb36d626-0fc9-4b0f-b322-de454d6bb41d", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 } } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { @@ -182107,7 +172742,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-513465712429541111831569", + "batteryIDDMCCode" : "NO-037945966809951266943918", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -182118,218 +172753,55 @@ }, "cO2FootprintTotal" : 124 } ], - "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" - }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AYRE", - "eori" : "DE012345678901" - }, - "issueDate" : "2023-04-14", - "version" : 1.1, - "status" : "Invalid" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.6336, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 - }, - "lifespan" : { - "unit" : "unit:year", - "value" : 16 - } - }, - "commercial" : { - "placedOnMarket" : "2022-05-22", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-513465712429541111831569", - "key" : "PartInstanceID" - } ], - "gtin" : " 30556220", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "162038866" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" - } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Compliance", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-04-24", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : false, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 4.767 ] - }, - "id" : "IW4785" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : true, - "renewable" : false, - "percentage" : 5, - "name" : "Nickel" - } ], - "critical" : [ "Cobalt" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 106 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AYRE", - "manufacturer" : { - "facilityId" : "BPNL00000003B3NX", - "manufacturerId" : "BPNL00000003AYRE" - } - } - } ], "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", "subcomponents" : [ { "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" + "productType" : "cell" } ], - "productType" : "module" + "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c9426628-2513-4ed1-848a-dcd4b51f7c54", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c9426628-2513-4ed1-848a-dcd4b51f7c54", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", + "catenaXId" : "urn:uuid:d972742f-c77b-4dae-906f-2606b8160fe5", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -182344,11 +172816,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-08-21", + "currentStateOfHealthTimestamp" : "2015-05-13", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthTimestamp" : "2024-03-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -182358,35 +172830,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", + "catenaXId" : "urn:uuid:d972742f-c77b-4dae-906f-2606b8160fe5", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "883160", + "orderNumber" : "527665", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "DIN", - "referencedStandardID" : "2652", + "referencedStandardID" : "6197", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -182398,7 +172870,7 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -182408,17 +172880,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -182433,7 +172905,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-882472948282380332973098", + "value" : "NO-776976109882988020968924", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -182444,7 +172916,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", + "catenaXId" : "urn:uuid:d972742f-c77b-4dae-906f-2606b8160fe5", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -182456,10 +172928,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", + "assetId" : "urn:uuid:d972742f-c77b-4dae-906f-2606b8160fe5", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -182468,17 +172940,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0ad6dd3f-c673-40b5-a37e-72c399af9b08", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:d362b959-dd4c-41f2-b10b-7302b453ea89", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -182491,24 +172963,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -182734,7 +173188,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-882472948282380332973098", + "batteryIDDMCCode" : "NO-776976109882988020968924", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -182753,31 +173207,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d972742f-c77b-4dae-906f-2606b8160fe5", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d972742f-c77b-4dae-906f-2606b8160fe5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", + "catenaXId" : "urn:uuid:5e1908ed-e176-4f57-9616-1415097d0fdf", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -182792,11 +173262,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-08-26", + "currentStateOfHealthTimestamp" : "2018-12-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -182806,35 +173276,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", + "catenaXId" : "urn:uuid:5e1908ed-e176-4f57-9616-1415097d0fdf", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "278409", + "orderNumber" : "952236", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "9260", + "referencedStandard" : "ASME", + "referencedStandardID" : "4086", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -182845,18 +173315,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -182866,7 +173336,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -182881,7 +173351,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-377536511860412570066760", + "value" : "NO-934956959738616108763308", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -182892,7 +173362,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", + "catenaXId" : "urn:uuid:5e1908ed-e176-4f57-9616-1415097d0fdf", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -182904,10 +173374,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", + "assetId" : "urn:uuid:5e1908ed-e176-4f57-9616-1415097d0fdf", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -182916,17 +173386,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:da3d43ee-d2ac-4797-ba8f-fa65b29aa40e", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:08f84a09-0fa5-495b-ae14-5e9478f8d32a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -182939,24 +173409,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -183182,7 +173634,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-377536511860412570066760", + "batteryIDDMCCode" : "NO-934956959738616108763308", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -183201,31 +173653,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5e1908ed-e176-4f57-9616-1415097d0fdf", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5e1908ed-e176-4f57-9616-1415097d0fdf", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", + "catenaXId" : "urn:uuid:f719e96e-2d7a-4d25-b351-7ad81db4f12a", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -183240,11 +173708,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-11-02", + "currentStateOfHealthTimestamp" : "2021-01-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-27", + "currentStateOfHealthTimestamp" : "2024-03-30", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -183254,35 +173722,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", + "catenaXId" : "urn:uuid:f719e96e-2d7a-4d25-b351-7ad81db4f12a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "295968", + "orderNumber" : "834398", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "2028", + "referencedStandard" : "JIS", + "referencedStandardID" : "8419", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -183293,28 +173761,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -183329,7 +173797,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-701547472602799656630142", + "value" : "NO-285293624337086766771059", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -183340,7 +173808,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", + "catenaXId" : "urn:uuid:f719e96e-2d7a-4d25-b351-7ad81db4f12a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -183352,10 +173820,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", + "assetId" : "urn:uuid:f719e96e-2d7a-4d25-b351-7ad81db4f12a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -183364,17 +173832,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:75bf40e6-8e1b-43a1-9723-bccc9e145a5b", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:7d49942a-c8ba-4ba1-9376-292fd36ff490", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -183387,24 +173855,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -183630,7 +174080,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-701547472602799656630142", + "batteryIDDMCCode" : "NO-285293624337086766771059", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -183649,31 +174099,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f719e96e-2d7a-4d25-b351-7ad81db4f12a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f719e96e-2d7a-4d25-b351-7ad81db4f12a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", + "catenaXId" : "urn:uuid:442d51f5-313a-4263-97f0-a35e8657da22", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -183688,11 +174154,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-07-12", + "currentStateOfHealthTimestamp" : "2015-01-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthTimestamp" : "2024-04-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -183702,10 +174168,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", + "catenaXId" : "urn:uuid:442d51f5-313a-4263-97f0-a35e8657da22", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "124613", + "orderNumber" : "909713", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -183714,23 +174180,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "5294", + "referencedStandard" : "JIS", + "referencedStandardID" : "9369", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -183741,28 +174207,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -183777,7 +174243,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-198122193606342526648807", + "value" : "NO-849021036936084853818694", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -183788,7 +174254,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", + "catenaXId" : "urn:uuid:442d51f5-313a-4263-97f0-a35e8657da22", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -183800,10 +174266,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", + "assetId" : "urn:uuid:442d51f5-313a-4263-97f0-a35e8657da22", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -183812,17 +174278,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:77247910-191b-4599-bc1f-b1dfb6234afd", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:1c6039cc-bcaf-44d8-a904-a75cce908492", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -183835,24 +174301,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -184078,7 +174526,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-198122193606342526648807", + "batteryIDDMCCode" : "NO-849021036936084853818694", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -184097,31 +174545,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:442d51f5-313a-4263-97f0-a35e8657da22", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:442d51f5-313a-4263-97f0-a35e8657da22", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", + "catenaXId" : "urn:uuid:8406a1e2-ddf8-4d55-a24b-4353c7e75d3e", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -184136,11 +174600,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-05-26", + "currentStateOfHealthTimestamp" : "2014-12-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-18", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -184150,19 +174614,19 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", + "catenaXId" : "urn:uuid:8406a1e2-ddf8-4d55-a24b-4353c7e75d3e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "310629", + "orderNumber" : "525465", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -184173,12 +174637,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "7292", + "referencedStandard" : "JASO", + "referencedStandardID" : "6006", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -184190,27 +174654,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -184225,7 +174689,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-861416653605285640927773", + "value" : "NO-135372397104503960436427", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -184236,7 +174700,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", + "catenaXId" : "urn:uuid:8406a1e2-ddf8-4d55-a24b-4353c7e75d3e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -184248,10 +174712,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", + "assetId" : "urn:uuid:8406a1e2-ddf8-4d55-a24b-4353c7e75d3e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -184260,17 +174724,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:765bd7f0-d494-41d8-8641-1380055afe8a", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:6bc36d8e-db18-4739-94cd-8f5e1391efdb", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -184283,24 +174747,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -184526,7 +174972,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-861416653605285640927773", + "batteryIDDMCCode" : "NO-135372397104503960436427", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -184545,88 +174991,216 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8406a1e2-ddf8-4d55-a24b-4353c7e75d3e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8406a1e2-ddf8-4d55-a24b-4353c7e75d3e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 36, + "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" : 65, + "materialClass" : "1.1.2", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.23 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", + "catenaXId" : "urn:uuid:3d45e8cb-2601-446c-9248-2f7f180e1313", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-07-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" + "catenaXId" : "urn:uuid:cf30cafc-c2fb-43f1-9c05-a6bcec700184", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d43a37a4-dcc3-40c7-a60e-c2d27a660db3", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:18a29555-6a3e-4e9f-9dc3-99ad5124b7b5", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:c2ed666d-9897-4659-a92d-8839287ed5f0", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:4db938b0-e823-4849-868b-5063f7becafe", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:acfa6c4d-39fe-4ed2-bc35-ac74de88cfd0", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:10bc7dc3-2375-4b52-9803-5706c7867476", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5c00f6f2-cda6-4f39-82b1-1aecece9d0ac", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f970909b-c9ae-4374-91b8-c9de77bede7f", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:0c1baa6e-a14a-4478-8a95-996fe816c054", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] } ], - "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:3d45e8cb-2601-446c-9248-2f7f180e1313", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "938186", + "orderNumber" : "341300", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "6877", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6865", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -184638,17 +175212,17 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -184658,7 +175232,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -184667,87 +175241,250 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { - "value" : "8840838-04", + "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-549783520636760057701443", + "value" : "NO-883830164520334043271156", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", "country" : "DEU", "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", + "catenaXsiteId" : "BPNS000001111DMY", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", + "catenaXId" : "urn:uuid:3d45e8cb-2601-446c-9248-2f7f180e1313", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:3d45e8cb-2601-446c-9248-2f7f180e1313", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" + }, + "ownerItemId" : "urn:uuid:e67f7429-1976-4f41-8f87-ffd323972af2", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a9c4698c-1568-4fad-a44c-356a30e8762c", + "ownerItemId" : "urn:uuid:36437a29-c6e1-4531-910c-81d7fb231669", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:cf30cafc-c2fb-43f1-9c05-a6bcec700184", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" + }, + "ownerItemId" : "urn:uuid:8472882d-fad2-47db-86dc-1fd3e634ed05", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:d43a37a4-dcc3-40c7-a60e-c2d27a660db3", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" + }, + "ownerItemId" : "urn:uuid:9e31c81e-d95b-449f-aa83-af67b194210a", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:18a29555-6a3e-4e9f-9dc3-99ad5124b7b5", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" + }, + "ownerItemId" : "urn:uuid:e6e3aa87-be68-43b3-92d4-468ff695af5c", + "itemVersion" : "05", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "nameAtOwner" : "ZB ZELLE" - } + "childassetId" : "urn:uuid:c2ed666d-9897-4659-a92d-8839287ed5f0", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" + }, + "ownerItemId" : "urn:uuid:621ac2a3-dbd4-4ed3-95aa-8b2c14b35205", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:4db938b0-e823-4849-868b-5063f7becafe", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" + }, + "ownerItemId" : "urn:uuid:0eb74dcc-467f-420e-bcc5-681aee0a4ad7", + "itemVersion" : "01", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:acfa6c4d-39fe-4ed2-bc35-ac74de88cfd0", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" + }, + "ownerItemId" : "urn:uuid:aa6b6ccc-13f2-423b-bac9-ae08c9bdd4ab", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "right", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:10bc7dc3-2375-4b52-9803-5706c7867476", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" + }, + "ownerItemId" : "urn:uuid:999be720-659b-4377-9cf5-e217470c7003", + "itemVersion" : "03", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:5c00f6f2-cda6-4f39-82b1-1aecece9d0ac", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" + }, + "ownerItemId" : "urn:uuid:c3fd2ec2-029c-4aff-bc4e-b97bd439db29", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:f970909b-c9ae-4374-91b8-c9de77bede7f", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + }, { + "item" : [ { + "itemClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AVTH:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" + }, + "ownerItemId" : "urn:uuid:2c84c10e-2afd-499c-8542-45a635e89168", + "itemVersion" : "04", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:0c1baa6e-a14a-4478-8a95-996fe816c054", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { @@ -184974,7 +175711,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-549783520636760057701443", + "batteryIDDMCCode" : "NO-883830164520334043271156", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -184985,32 +175722,226 @@ }, "cO2FootprintTotal" : 124 } ], + "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { + "serialization" : { + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "registration" : { + "customerPartId" : "8840838-04", + "manufacturerPartId" : "8840838-04" + } + }, + "typology" : { + "name" : "Transmission Type 8HP60", + "description" : "This is the product description of a module", + "class" : { + "code" : "27-05-02-01", + "definition" : "Traction battery, starter battery" + }, + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + }, + "metadata" : { + "validityDate" : "2000-01-01", + "economicOperator" : { + "id" : "BPNL00000003AVTH", + "eori" : "DE012345678901" + }, + "issueDate" : "2023-01-21", + "version" : 2.6, + "status" : "Approved" + }, + "characteristics" : { + "physicalDimensionsProperty" : { + "diameter" : 229.6349, + "width" : 229.6, + "length" : 471.1, + "weight" : 14.1, + "height" : 99.1 + }, + "lifespan" : { + "unit" : "unit:year", + "value" : 16 + } + }, + "commercial" : { + "placedOnMarket" : "2022-11-11", + "warranty" : 60 + }, + "identification" : { + "localIdentifiers" : [ { + "value" : "NO-883830164520334043271156", + "key" : "PartInstanceID" + } ], + "gtin" : " 14656793", + "additionalCode" : [ { + "name" : "TARIC", + "value" : "533496939" + } ] + }, + "sources" : { + "optional" : [ { + "document" : { + "header" : "Responsible sourcing report 2023", + "category" : "Sustainability", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "sustainability" + } ], + "mandatory" : { + "safetyTransportation" : { + "header" : "Shipping guidelines", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernDisassembly" : { + "header" : "Dismantling procedure of HVB Module HV MODUL", + "category" : "Passport", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "substanceOfConcernInstruction" : { + "header" : "Laboratory test results HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "safetyPackaging" : { + "header" : "Packaging instruction for HVB Module HV MODUL", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "declarationOfConformity" : [ { + "document" : { + "header" : "Sustainability Document Material XY", + "category" : "Safety", + "type" : "catena-x.net/testdata/productpass/SN12345678", + "content" : "catena-x.net/testdata/productpass/SN12345678" + }, + "name" : "other" + } ] + } + }, + "handling" : { + "maintenanceHistory" : [ { + "date" : "2023-07-21", + "activity" : "Inspection", + "description" : "Battery test", + "title" : "Maintenance Service" + } ], + "reusablePackaging" : true, + "spareParts" : [ { + "partId" : "Aluminum Housing 952/C", + "name" : "Aluminum Housing", + "producerId" : "BPNL1234567890ZZ" + } ], + "substanceOfConcern" : [ { + "unit" : "unit:percent", + "name" : "Lead", + "location" : "HvbCell", + "concentration" : { + "left" : [ 3.7999 ] + }, + "id" : "NT4743" + } ] + }, + "additionalData" : [ { + "data" : "23", + "children" : [ { + "data" : "", + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "description" : "", + "label" : "", + "type" : { + "dataType" : "xsd:string", + "typeUnit" : "" + } + } ], + "sustainability" : { + "material" : [ { + "recycled" : false, + "renewable" : false, + "percentage" : 5, + "name" : "Insulator" + } ], + "critical" : [ "Cobalt" ], + "carbonFootprint" : { + "crossSectoralStandard" : "GHG Protocol Product standard", + "productOrSectorSpecificRules" : [ { + "extWBCSD_otherOperatorName" : "NSF", + "extWBCSD_operator" : "PEF", + "productOrSectorSpecificRules" : [ { + "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" + } ] + } ], + "carbonContentTotal" : 102 + }, + "state" : "first life" + }, + "operation" : { + "importer" : "BPNL00000003B2OM", + "manufacturer" : { + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AVTH" + } + } + } ], "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", "subcomponents" : [ { "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" + "productType" : "module" } ], - "productType" : "cell" + "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3d45e8cb-2601-446c-9248-2f7f180e1313", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3d45e8cb-2601-446c-9248-2f7f180e1313", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f701f37-8aff-4059-92da-02e8fc4bce35", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] } - ] - + ] } \ No newline at end of file From 145a26614b6ed050544263b972cdfd9c6a5b6401 Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Mon, 8 Apr 2024 14:30:05 +0200 Subject: [PATCH 40/41] feat(impl):[#488] new as planned --- .../CX_Testdata_v.1.7.0_PartType.json | 11039 ++++++++++++++++ .../CX_Testdata_v1.5.1-AsPlanned.json | 7166 ---------- 2 files changed, 11039 insertions(+), 7166 deletions(-) create mode 100644 local/testing/testdata/CX_Testdata_v.1.7.0_PartType.json delete mode 100644 local/testing/testdata/CX_Testdata_v1.5.1-AsPlanned.json diff --git a/local/testing/testdata/CX_Testdata_v.1.7.0_PartType.json b/local/testing/testdata/CX_Testdata_v.1.7.0_PartType.json new file mode 100644 index 0000000000..edb31b4812 --- /dev/null +++ b/local/testing/testdata/CX_Testdata_v.1.7.0_PartType.json @@ -0,0 +1,11039 @@ +{ + "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": "PURPOSE", + "odrl:operator": { + "@id": "odrl:eq" + }, + "odrl:rightOperand": "ID 3.0 Trace" + } + ] + } + } + ] + } + } + }, + "https://catenax.io/schema/TestDataContainer/1.0.0" : [ { + "catenaXId" : "urn:uuid:220dc16b-fb67-4d85-a7da-d3ed0a523990", + "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" : "2024-04-02T08:07:49.769Z", + "BPN_TIER_C_SITE_A" : "BPNS00000003CSGV", + "UIDPOOL" : "[ 'urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e', 'urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b', 'urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb', 'urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c', 'urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97', 'urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9', 'urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699', 'urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7', 'urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b', 'urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77', 'urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e', 'urn:uuid:4518c080-14fb-4252-b8de-4362d615868d', 'urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc', 'urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301', 'urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323', 'urn:uuid:833c2e75-9c72-488f-8820-173cd99102b1', 'urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8', 'urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d', 'urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a', 'urn:uuid:8031a511-85d8-4568-97f3-9d155127430c', 'urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249', 'urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f', 'urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c', 'urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b', 'urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f', 'urn:uuid:44805117-33b4-4293-a6f9-99316745e77d', 'urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26', 'urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c', 'urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023', 'urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782', 'urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1', 'urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118', 'urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4', 'urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6', 'urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18', 'urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65', 'urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf', 'urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e', 'urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b', 'urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667', 'urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4', 'urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa', 'urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8', 'urn:uuid:63b334a5-3b58-4cae-a9cb-abfda4a3dd2a', 'urn:uuid:00ecef33-0b22-4f08-a758-6685b4030dcf', 'urn:uuid:6c7c6aa0-5e56-4af5-9a43-3a10148b1bee', 'urn:uuid:8d3b08c5-7238-47e2-b069-e5747b8b4f1a', 'urn:uuid:de2fb9d3-4d71-4a2b-a188-bb50be7800ef', 'urn:uuid:cfc0b821-b2d5-4f22-9b8a-a24e86324d12', 'urn:uuid:fabb63c2-89b4-41da-8236-b336c3dfc997', 'urn:uuid:7a12f29c-448e-44de-bfb6-41390a6c21fb', 'urn:uuid:d3e12092-08c2-4721-96b1-5e2d955cd847', 'urn:uuid:993e7d90-572f-4ce3-a0a4-87d4e23142a1', 'urn:uuid:ae3da951-316e-4cb7-b80b-40f03e1e5921', 'urn:uuid:1ca6df3f-f329-44a3-a6f0-39e87962e8d3', 'urn:uuid:fc3531a6-e2fc-4f00-a413-3d8325ba12bd', 'urn:uuid:e50c2fb3-84c3-4f8c-ba1c-c1fe1945ce33', 'urn:uuid:ea3b73d9-317e-4b13-82fe-2541b0bb1bd9', 'urn:uuid:8cd1c3f9-c764-4749-9ffc-9d866045902a', 'urn:uuid:404515f4-e38f-4313-8ea5-28dbe9f1d78e', 'urn:uuid:e6445d55-db0b-40ef-83cb-2ae54d0015b3', 'urn:uuid:c0efef2d-c612-4505-b282-f12edd523ee1', 'urn:uuid:12a0cc80-c8c7-4cbd-a8dd-f12858e086b7', 'urn:uuid:e1aec812-83c1-4b2d-9d40-d09a13fe37d5', 'urn:uuid:980caae1-cd49-4f96-bba7-c5cbc8a4abc5', 'urn:uuid:6d6e992d-0203-45c8-b353-15ddad184781', 'urn:uuid:f3ca42ba-a902-40cc-b96a-296d632e9d4e', 'urn:uuid:6b41b3d1-df40-4664-9aeb-ce0383066cbc', 'urn:uuid:4914af07-bff3-4932-ad1c-2d0b93dc8937', 'urn:uuid:8a56687f-d0ad-4f62-bf02-5718f1d6b91f', 'urn:uuid:819a98e0-f191-4cb8-ad43-512f7be331e3', 'urn:uuid:d12941e5-c7b1-416d-9c08-56042701a2bc', 'urn:uuid:a73d9315-9fcd-4184-a87a-f2d3d83469ef', 'urn:uuid:06be3050-3398-42d7-8b34-6e44714474df', 'urn:uuid:dfd8be9c-9786-4b73-b21a-813e58b77858', 'urn:uuid:6f5da73d-8eaa-45c2-a598-53d4d76eef00', 'urn:uuid:48a71d4e-3e84-457d-a5a4-40e11172461e', 'urn:uuid:f1261d0b-2bf0-4221-9207-501889ee27e8', 'urn:uuid:31ed8e8c-9c0e-4d5b-adbc-dacf5ce4eced', 'urn:uuid:49ac21ba-9f90-4ea0-8a9f-618c2c9d09a0', 'urn:uuid:295e3cdb-228c-4b68-944b-208fe12f364e', 'urn:uuid:7e8fb461-cedf-4a33-803e-98988edf75fa', 'urn:uuid:797f49ea-df99-4c88-bf12-21e8e247538f', 'urn:uuid:5228fa6f-508a-4530-8b82-7de3fea172d9', 'urn:uuid:a16fe36d-794f-4e52-8839-cee33d51ed52', 'urn:uuid:cb5b451d-1f2e-47a2-b023-c3422f6bb35d', 'urn:uuid:5cbb8df7-789b-4ba1-9289-b41ae57471bf', 'urn:uuid:7d4dc411-de27-4512-a8ab-c892e729c3e9', 'urn:uuid:d2f2a37b-3854-46cb-bd84-b386be10f115', 'urn:uuid:9098fd32-f4bc-4e53-8325-5c6fca518912', 'urn:uuid:050e1ee5-094c-453f-9f32-eb6c967e7d45', 'urn:uuid:3f92e710-4771-4d23-ad5a-e55d1ec241e5', 'urn:uuid:f3327b35-cabc-4b23-a578-2cce29f54e49', 'urn:uuid:1101cf44-ade0-44dd-aba3-a0f9af0f956c', 'urn:uuid:33a99e61-eb6a-4253-a3e2-a81adda038e1', 'urn:uuid:df9e24fe-841f-4850-885b-0752af7031eb', 'urn:uuid:932d0301-0edb-468b-9760-ed086058b3f9', 'urn:uuid:d22da17a-700f-41fe-9edc-a1070cdc8f8c', 'urn:uuid:adcbada5-f5d9-4d4e-8587-ac9569badcb7', 'urn:uuid:aa9bf64f-69eb-422e-8d0b-a7e76e2ecfce' ]", + "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", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "childItems" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003B2OM", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003B5MJ", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "partTypeInformation" : { + "manufacturerPartId" : "ZX-55", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Model A" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "sites" : [ { + "functionValidUntil" : "2032-08-09T02:11:44.000Z", + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2014-05-02T12:21:56.000Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "childItems" : [ { + "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" : { + "unit" : "unit:piece", + "value" : 6 + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "classification" : "product", + "nameAtManufacturer" : "OEM A High Voltage Battery" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "sites" : [ { + "functionValidUntil" : "2030-09-23T02:17:24.000Z", + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2018-11-03T14:27:17.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "964704", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "5936", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", + "childItems" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", + "quantity" : { + "unit" : "unit:piece", + "value" : 10 + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.11 + }, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "classification" : "product", + "nameAtManufacturer" : "HV Modul" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.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" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", + "sites" : [ { + "functionValidUntil" : "2031-10-12T04:51:28.000Z", + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2019-12-29T16:36:39.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "44058", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "2920", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", + "childItems" : [ { + "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" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "classification" : "product", + "nameAtManufacturer" : "ZB ZELLE" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", + "sites" : [ { + "functionValidUntil" : "2031-03-17T07:19:55.000Z", + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2016-03-08T11:56:01.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "358677", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "8149", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", + "childItems" : [ ] + } ], + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", + "partTypeInformation" : { + "manufacturerPartId" : "7A047C7-01", + "classification" : "product", + "nameAtManufacturer" : "N Tier A CathodeMaterial" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", + "sites" : [ { + "functionValidUntil" : "2028-09-25T14:38:07.000Z", + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production", + "functionValidFrom" : "2013-01-13T21:53:56.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "189071", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "9597", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", + "childItems" : [ ] + } ], + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", + "partTypeInformation" : { + "manufacturerPartId" : "9A047C7-01", + "classification" : "product", + "nameAtManufacturer" : "Sub Tier B Sealant" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.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" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", + "sites" : [ { + "functionValidUntil" : "2028-11-24T09:15:39.000Z", + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production", + "functionValidFrom" : "2020-02-27T23:48:03.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "256763", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "5169", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "childItems" : [ { + "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" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003B3NX", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003B2OM", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "classification" : "product", + "nameAtManufacturer" : "Tier A Gearbox" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "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" + } ], + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "sites" : [ { + "functionValidUntil" : "2024-11-10T09:37:04.000Z", + "catenaXsiteId" : "BPNS00000003B2OM", + "function" : "production", + "functionValidFrom" : "2017-08-21T23:20:17.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "969986", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "3760", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "childItems" : [ { + "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" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003B3NX", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "partTypeInformation" : { + "manufacturerPartId" : "6740244-02", + "classification" : "product", + "nameAtManufacturer" : "Sub Tier A Sensor" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "472610", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "9865", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", + "childItems" : [ ] + } ], + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", + "partTypeInformation" : { + "manufacturerPartId" : "7A047KK-01", + "classification" : "product", + "nameAtManufacturer" : "N Tier A NTier Product" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid: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" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", + "sites" : [ { + "functionValidUntil" : "2029-12-12T20:52:56.000Z", + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production", + "functionValidFrom" : "2013-02-12T16:37:07.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "809218", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "2931", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "childItems" : [ ] + } ], + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "partTypeInformation" : { + "manufacturerPartId" : "7A987KK-04", + "classification" : "product", + "nameAtManufacturer" : "N Tier A Plastics" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid: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" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "sites" : [ { + "functionValidUntil" : "2031-04-17T22:24:22.000Z", + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production", + "functionValidFrom" : "2019-03-30T08:41:08.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "736994", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "4785", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "childItems" : [ { + "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" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003B3NX", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003B5MJ", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "partTypeInformation" : { + "manufacturerPartId" : "ZX-55", + "classification" : "product", + "nameAtManufacturer" : "Tier B ECU1" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "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" + } ], + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "sites" : [ { + "functionValidUntil" : "2031-07-14T14:36:49.000Z", + "catenaXsiteId" : "BPNS00000003B5MJ", + "function" : "production", + "functionValidFrom" : "2018-02-07T04:54:43.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "906993", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 24 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "1942", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "childItems" : [ ] + } ], + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "partTypeInformation" : { + "manufacturerPartId" : "6775244-06", + "classification" : "product", + "nameAtManufacturer" : "Sub Tier B Glue" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-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" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "sites" : [ { + "functionValidUntil" : "2029-07-21T18:50:17.000Z", + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production", + "functionValidFrom" : "2016-05-20T12:11:20.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "748259", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "7650", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "childItems" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003B2OM", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003B5MJ", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "partTypeInformation" : { + "manufacturerPartId" : "FJ-87", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Model B" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "sites" : [ { + "functionValidUntil" : "2028-09-29T16:06:36.000Z", + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production", + "functionValidFrom" : "2018-01-28T10:00:57.000Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "childItems" : [ { + "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" : { + "unit" : "unit:gram", + "quantityNumber" : 1580, + "value" : 1580 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003B2OM", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "partTypeInformation" : { + "manufacturerPartId" : "123564887-01", + "classification" : "product", + "nameAtManufacturer" : "Tire Model A" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "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" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "sites" : [ { + "functionValidUntil" : "2026-12-22T17:14:12.000Z", + "catenaXsiteId" : "BPNS00000003B2OM", + "function" : "production", + "functionValidFrom" : "2015-01-20T06:24:12.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "836794", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "9619", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", + "childItems" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000007OR16", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", + "partTypeInformation" : { + "manufacturerPartId" : "9953421-03", + "classification" : "product", + "nameAtManufacturer" : "Natural Rubber Product(40KG blocks)" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.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" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", + "sites" : [ { + "functionValidUntil" : "2024-07-24T09:37:51.000Z", + "catenaXsiteId" : "BPNS000000000001", + "function" : "production", + "functionValidFrom" : "2018-12-11T18:43:32.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "545187", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "3409", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", + "childItems" : [ ] + } ], + "bpnl" : "BPNL00000003CSGV", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", + "partTypeInformation" : { + "manufacturerPartId" : "A26581-11", + "classification" : "product", + "nameAtManufacturer" : "Natural Rubber" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid: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" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", + "sites" : [ { + "functionValidUntil" : "2032-10-30T09:02:30.000Z", + "catenaXsiteId" : "BPNS000000000DQB", + "function" : "production", + "functionValidFrom" : "2020-05-05T08:53:49.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "942976", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "3948", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", + "childItems" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003B5MJ", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003AZQP", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", + "partTypeInformation" : { + "manufacturerPartId" : "XK-34", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Model C" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", + "sites" : [ { + "functionValidUntil" : "2026-12-11T19:42:32.000Z", + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production", + "functionValidFrom" : "2018-02-14T14:22:52.000Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", + "childItems" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003B5MJ", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", + "partTypeInformation" : { + "manufacturerPartId" : "39478586-36", + "classification" : "product", + "nameAtManufacturer" : "Tier B ECU2" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", + "sites" : [ { + "functionValidUntil" : "2025-01-30T13:52:30.000Z", + "catenaXsiteId" : "BPNS00000003B5MJ", + "function" : "production", + "functionValidFrom" : "2017-09-09T18:44:34.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "951105", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "4288", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", + "childItems" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CNKC", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", + "partTypeInformation" : { + "manufacturerPartId" : "ZZ-88", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Model D" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", + "sites" : [ { + "functionValidUntil" : "2024-11-16T00:28:19.000Z", + "catenaXsiteId" : "BPNS0000000008ZZ", + "function" : "production", + "functionValidFrom" : "2018-12-24T11:07:15.000Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "childItems" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CNKC", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003B2OM", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CSGV", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CML1", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003AZQP", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "partTypeInformation" : { + "manufacturerPartId" : "59878587-80", + "classification" : "product", + "nameAtManufacturer" : "OEM C Engine" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.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" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "sites" : [ { + "functionValidUntil" : "2032-03-19T20:02:16.000Z", + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production", + "functionValidFrom" : "2015-04-23T09:07:11.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "523960", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "3921", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "childItems" : [ { + "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" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CSGV", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CML1", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "partTypeInformation" : { + "manufacturerPartId" : "9760254-64", + "classification" : "product", + "nameAtManufacturer" : "TRACEX B Cylinder Head" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "sites" : [ { + "functionValidUntil" : "2032-08-22T00:43:30.000Z", + "catenaXsiteId" : "BPNS00000008BDFH", + "function" : "production", + "functionValidFrom" : "2014-12-08T13:54:47.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "511024", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "9500", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", + "bpnl" : "BPNL00000003AZQP", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", + "partTypeInformation" : { + "manufacturerPartId" : "7B147D8-19", + "classification" : "product", + "nameAtManufacturer" : "OEM C Rod" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", + "sites" : [ { + "functionValidUntil" : "2032-03-20T22:20:49.000Z", + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production", + "functionValidFrom" : "2012-12-21T01:52:46.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "404032", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "6573", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", + "bpnl" : "BPNL00000003CSGV", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", + "partTypeInformation" : { + "manufacturerPartId" : "6X247E5-99", + "classification" : "product", + "nameAtManufacturer" : "Tier C Crankshaft" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", + "sites" : [ { + "functionValidUntil" : "2026-09-05T07:34:30.000Z", + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production", + "functionValidFrom" : "2017-11-16T10:02:29.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "188306", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 8 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "2946", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26", + "partTypeInformation" : { + "manufacturerPartId" : "2Z247F8-70", + "classification" : "product", + "nameAtManufacturer" : "TraceX A Crank" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26", + "sites" : [ { + "functionValidUntil" : "2030-04-19T12:30:33.000Z", + "catenaXsiteId" : "BPNS0000000008ZZ", + "function" : "production", + "functionValidFrom" : "2014-04-06T05:28:57.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "295762", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "8628", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", + "childItems" : [ ] + } ], + "bpnl" : "BPNL00000003B2OM", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", + "partTypeInformation" : { + "manufacturerPartId" : "6260254-43", + "classification" : "product", + "nameAtManufacturer" : "Tier A Plunger" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", + "sites" : [ { + "functionValidUntil" : "2026-06-12T06:53:02.000Z", + "catenaXsiteId" : "BPNS00000003B2OM", + "function" : "production", + "functionValidFrom" : "2020-12-17T08:49:16.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "541348", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "5011", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", + "childItems" : [ ] + } ], + "bpnl" : "BPNL00000003CSGV", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", + "partTypeInformation" : { + "manufacturerPartId" : "5760234-23", + "classification" : "product", + "nameAtManufacturer" : "Tier C Piston Rod" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_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" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", + "sites" : [ { + "functionValidUntil" : "2032-12-24T15:41:32.000Z", + "catenaXsiteId" : "BPN", + "function" : "production", + "functionValidFrom" : "2014-07-07T02:12:43.000Z", + "catenaXSiteId" : "BPNS00000003CSGV" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "182345", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "9912", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", + "childItems" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CNKC", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", + "partTypeInformation" : { + "manufacturerPartId" : "8760254-76", + "classification" : "product", + "nameAtManufacturer" : "TRACEX A Cylinder" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "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" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", + "sites" : [ { + "functionValidUntil" : "2029-06-15T11:05:28.000Z", + "catenaXsiteId" : "BPNS0000000008ZZ", + "function" : "production", + "functionValidFrom" : "2014-07-26T10:34:55.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "931310", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "7563", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023", + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023", + "partTypeInformation" : { + "manufacturerPartId" : "7C147E8-87", + "classification" : "product", + "nameAtManufacturer" : "TRACEX B Seal" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid: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" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023", + "sites" : [ { + "functionValidUntil" : "2028-04-23T15:09:08.000Z", + "catenaXsiteId" : "BPNS00000008BDFH", + "function" : "production", + "functionValidFrom" : "2018-03-25T16:47:58.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "863971", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2980", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782", + "partTypeInformation" : { + "manufacturerPartId" : "9C147E8-67", + "classification" : "product", + "nameAtManufacturer" : "OEM A Closure" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid: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" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782", + "sites" : [ { + "functionValidUntil" : "2026-06-30T11:51:18.000Z", + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2017-12-07T15:54:06.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "13392", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "1262", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", + "childItems" : [ { + "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" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CML1", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", + "partTypeInformation" : { + "manufacturerPartId" : "88878587-67", + "classification" : "product", + "nameAtManufacturer" : "TraceX B Door Front Right" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", + "sites" : [ { + "functionValidUntil" : "2032-11-30T20:57:28.000Z", + "catenaXsiteId" : "BPNS00000008BDFH", + "function" : "production", + "functionValidFrom" : "2017-01-14T10:40:10.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "990518", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "5183", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", + "childItems" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", + "partTypeInformation" : { + "manufacturerPartId" : "6760255-12", + "classification" : "product", + "nameAtManufacturer" : "TRACEX A Door-Key" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.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" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", + "sites" : [ { + "functionValidUntil" : "2025-02-05T21:31:27.000Z", + "catenaXsiteId" : "BPNS0000000008ZZ", + "function" : "production", + "functionValidFrom" : "2014-06-17T22:00:03.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "10835", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "3209", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4", + "bpnl" : "BPNL00000003AZQP", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4", + "partTypeInformation" : { + "manufacturerPartId" : "1D147E8-90", + "classification" : "product", + "nameAtManufacturer" : "OEM C Key fund" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4", + "sites" : [ { + "functionValidUntil" : "2027-02-21T14:43:07.000Z", + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production", + "functionValidFrom" : "2020-05-27T01:03:26.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "653046", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2502", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "childItems" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CNKC", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "partTypeInformation" : { + "manufacturerPartId" : "48878587-88", + "classification" : "product", + "nameAtManufacturer" : "OEM A Car Body" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.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" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "sites" : [ { + "functionValidUntil" : "2025-10-09T22:37:59.000Z", + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2020-05-03T10:51:28.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "837438", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 23 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "4531", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + "childItems" : [ ] + } ], + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + "partTypeInformation" : { + "manufacturerPartId" : "5760244-23", + "classification" : "product", + "nameAtManufacturer" : "TRACEX B Doors" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + "sites" : [ { + "functionValidUntil" : "2030-12-16T04:52:53.000Z", + "catenaXsiteId" : "BPNS00000008BDFH", + "function" : "production", + "functionValidFrom" : "2019-08-29T08:31:58.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "809053", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6521", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "childItems" : [ ] + } ], + "bpnl" : "BPNL00000003CSGV", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "partTypeInformation" : { + "manufacturerPartId" : "9760254-64", + "classification" : "product", + "nameAtManufacturer" : "Tier C Leather" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "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:089aafa6-fde3-4f3a-a56c-7d44127f0b65", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "sites" : [ { + "functionValidUntil" : "2027-08-22T22:07:38.000Z", + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production", + "functionValidFrom" : "2018-05-14T11:22:56.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "984441", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "8760", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", + "childItems" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CSGV", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003B2OM", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", + "partTypeInformation" : { + "manufacturerPartId" : "9760254-64", + "classification" : "product", + "nameAtManufacturer" : "TRACEX A Heating" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", + "sites" : [ { + "functionValidUntil" : "2025-12-19T18:48:23.000Z", + "catenaXsiteId" : "BPNS0000000008ZZ", + "function" : "production", + "functionValidFrom" : "2014-11-09T15:22:33.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "698914", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "6680", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "childItems" : [ ] + } ], + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "partTypeInformation" : { + "manufacturerPartId" : "9760254-64", + "classification" : "product", + "nameAtManufacturer" : "TRACEX A Power Conduction" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "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:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "sites" : [ { + "functionValidUntil" : "2024-09-03T01:55:49.000Z", + "catenaXsiteId" : "BPNS0000000008ZZ", + "function" : "production", + "functionValidFrom" : "2013-11-08T23:38:14.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "835557", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "3560", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "childItems" : [ ] + } ], + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "partTypeInformation" : { + "manufacturerPartId" : "9760254-64", + "classification" : "product", + "nameAtManufacturer" : "TRACEX B Overheat Protection" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "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:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "sites" : [ { + "functionValidUntil" : "2030-11-25T10:12:06.000Z", + "catenaXsiteId" : "BPNS00000008BDFH", + "function" : "production", + "functionValidFrom" : "2014-12-31T23:26:03.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "775890", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "2009", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "childItems" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CSGV", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CML1", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003B2OM", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "partTypeInformation" : { + "manufacturerPartId" : "9760254-64", + "classification" : "product", + "nameAtManufacturer" : "TIer A Massage Pilot" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "sites" : [ { + "functionValidUntil" : "2026-11-19T21:40:46.000Z", + "catenaXsiteId" : "BPNS00000003B2OM", + "function" : "production", + "functionValidFrom" : "2020-07-20T06:09:48.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "827153", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "2815", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "childItems" : [ ] + } ], + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "partTypeInformation" : { + "manufacturerPartId" : "9760254-64", + "classification" : "product", + "nameAtManufacturer" : "OEM A Cpu Chips" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "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:4f73c61f-c956-4144-8e55-b53b6b61220e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "sites" : [ { + "functionValidUntil" : "2024-03-24T21:58:55.000Z", + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2019-05-23T12:57:23.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "721683", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "4782", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", + "childItems" : [ { + "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" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CSGV", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CML1", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", + "partTypeInformation" : { + "manufacturerPartId" : "9760254-64", + "classification" : "product", + "nameAtManufacturer" : "TRACEX B Massage" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", + "sites" : [ { + "functionValidUntil" : "2026-07-20T04:41:52.000Z", + "catenaXsiteId" : "BPNS00000008BDFH", + "function" : "production", + "functionValidFrom" : "2019-12-23T20:38:53.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "213452", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ASME", + "referencedStandardID" : "7632", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e", + "childItems" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003AZQP", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e", + "partTypeInformation" : { + "manufacturerPartId" : "9760254-64", + "classification" : "product", + "nameAtManufacturer" : "OEM C Seat Pilot" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.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:4f73c61f-c956-4144-8e55-b53b6b61220e" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e", + "sites" : [ { + "functionValidUntil" : "2029-11-11T19:43:53.000Z", + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production", + "functionValidFrom" : "2017-09-12T19:59:16.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "742897", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7229", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ] + } ], + "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", + "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" : "2024-04-02T08:07:49.769Z", + "BPN_TIER_C_SITE_A" : "BPNS00000003CSGV", + "UIDPOOL" : "[ 'urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e', 'urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b', 'urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb', 'urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c', 'urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97', 'urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9', 'urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699', 'urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7', 'urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b', 'urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77', 'urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e', 'urn:uuid:4518c080-14fb-4252-b8de-4362d615868d', 'urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc', 'urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301', 'urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323', 'urn:uuid:833c2e75-9c72-488f-8820-173cd99102b1', 'urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8', 'urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d', 'urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a', 'urn:uuid:8031a511-85d8-4568-97f3-9d155127430c', 'urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249', 'urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f', 'urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c', 'urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b', 'urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f', 'urn:uuid:44805117-33b4-4293-a6f9-99316745e77d', 'urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26', 'urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c', 'urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023', 'urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782', 'urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1', 'urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118', 'urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4', 'urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6', 'urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18', 'urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65', 'urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf', 'urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e', 'urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b', 'urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667', 'urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4', 'urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa', 'urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8', 'urn:uuid:63b334a5-3b58-4cae-a9cb-abfda4a3dd2a', 'urn:uuid:00ecef33-0b22-4f08-a758-6685b4030dcf', 'urn:uuid:6c7c6aa0-5e56-4af5-9a43-3a10148b1bee', 'urn:uuid:8d3b08c5-7238-47e2-b069-e5747b8b4f1a', 'urn:uuid:de2fb9d3-4d71-4a2b-a188-bb50be7800ef', 'urn:uuid:cfc0b821-b2d5-4f22-9b8a-a24e86324d12', 'urn:uuid:fabb63c2-89b4-41da-8236-b336c3dfc997', 'urn:uuid:7a12f29c-448e-44de-bfb6-41390a6c21fb', 'urn:uuid:d3e12092-08c2-4721-96b1-5e2d955cd847', 'urn:uuid:993e7d90-572f-4ce3-a0a4-87d4e23142a1', 'urn:uuid:ae3da951-316e-4cb7-b80b-40f03e1e5921', 'urn:uuid:1ca6df3f-f329-44a3-a6f0-39e87962e8d3', 'urn:uuid:fc3531a6-e2fc-4f00-a413-3d8325ba12bd', 'urn:uuid:e50c2fb3-84c3-4f8c-ba1c-c1fe1945ce33', 'urn:uuid:ea3b73d9-317e-4b13-82fe-2541b0bb1bd9', 'urn:uuid:8cd1c3f9-c764-4749-9ffc-9d866045902a', 'urn:uuid:404515f4-e38f-4313-8ea5-28dbe9f1d78e', 'urn:uuid:e6445d55-db0b-40ef-83cb-2ae54d0015b3', 'urn:uuid:c0efef2d-c612-4505-b282-f12edd523ee1', 'urn:uuid:12a0cc80-c8c7-4cbd-a8dd-f12858e086b7', 'urn:uuid:e1aec812-83c1-4b2d-9d40-d09a13fe37d5', 'urn:uuid:980caae1-cd49-4f96-bba7-c5cbc8a4abc5', 'urn:uuid:6d6e992d-0203-45c8-b353-15ddad184781', 'urn:uuid:f3ca42ba-a902-40cc-b96a-296d632e9d4e', 'urn:uuid:6b41b3d1-df40-4664-9aeb-ce0383066cbc', 'urn:uuid:4914af07-bff3-4932-ad1c-2d0b93dc8937', 'urn:uuid:8a56687f-d0ad-4f62-bf02-5718f1d6b91f', 'urn:uuid:819a98e0-f191-4cb8-ad43-512f7be331e3', 'urn:uuid:d12941e5-c7b1-416d-9c08-56042701a2bc', 'urn:uuid:a73d9315-9fcd-4184-a87a-f2d3d83469ef', 'urn:uuid:06be3050-3398-42d7-8b34-6e44714474df', 'urn:uuid:dfd8be9c-9786-4b73-b21a-813e58b77858', 'urn:uuid:6f5da73d-8eaa-45c2-a598-53d4d76eef00', 'urn:uuid:48a71d4e-3e84-457d-a5a4-40e11172461e', 'urn:uuid:f1261d0b-2bf0-4221-9207-501889ee27e8', 'urn:uuid:31ed8e8c-9c0e-4d5b-adbc-dacf5ce4eced', 'urn:uuid:49ac21ba-9f90-4ea0-8a9f-618c2c9d09a0', 'urn:uuid:295e3cdb-228c-4b68-944b-208fe12f364e', 'urn:uuid:7e8fb461-cedf-4a33-803e-98988edf75fa', 'urn:uuid:797f49ea-df99-4c88-bf12-21e8e247538f', 'urn:uuid:5228fa6f-508a-4530-8b82-7de3fea172d9', 'urn:uuid:a16fe36d-794f-4e52-8839-cee33d51ed52', 'urn:uuid:cb5b451d-1f2e-47a2-b023-c3422f6bb35d', 'urn:uuid:5cbb8df7-789b-4ba1-9289-b41ae57471bf', 'urn:uuid:7d4dc411-de27-4512-a8ab-c892e729c3e9', 'urn:uuid:d2f2a37b-3854-46cb-bd84-b386be10f115', 'urn:uuid:9098fd32-f4bc-4e53-8325-5c6fca518912', 'urn:uuid:050e1ee5-094c-453f-9f32-eb6c967e7d45', 'urn:uuid:3f92e710-4771-4d23-ad5a-e55d1ec241e5', 'urn:uuid:f3327b35-cabc-4b23-a578-2cce29f54e49', 'urn:uuid:1101cf44-ade0-44dd-aba3-a0f9af0f956c', 'urn:uuid:33a99e61-eb6a-4253-a3e2-a81adda038e1', 'urn:uuid:df9e24fe-841f-4850-885b-0752af7031eb', 'urn:uuid:932d0301-0edb-468b-9760-ed086058b3f9', 'urn:uuid:d22da17a-700f-41fe-9edc-a1070cdc8f8c', 'urn:uuid:adcbada5-f5d9-4d4e-8587-ac9569badcb7', 'urn:uuid:aa9bf64f-69eb-422e-8d0b-a7e76e2ecfce' ]", + "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" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "", + "condition" : "", + "instanceId" : "CONST", + "templateName" : "", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(0)", + "bpnl" : "!BPN_OEM_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Vehicle Model A", + "partTypeInformation.manufacturerPartId" : "ZX-55", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_OEMA_Battery1", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TierA_Gearbox", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TierB_ECU1", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003B2OM');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003B5MJ');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(3)", + "bpnl" : "!BPN_OEM_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "OEM A High Voltage Battery", + "partTypeInformation.manufacturerPartId" : "38049661-08", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_OEMA_BatteryModule1", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents, '6');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(4)", + "bpnl" : "!BPN_OEM_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "HV Modul", + "partTypeInformation.manufacturerPartId" : "8840838-04", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_OEMA_BatteryCell1", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_Sub_TierB_Sealant", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents, '10', '0.11#unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AXS3');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(5)", + "bpnl" : "!BPN_OEM_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "ZB ZELLE", + "partTypeInformation.manufacturerPartId" : "8840374-09", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_N_TierA_CathodeMaterial", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003B0Q0');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(6)", + "bpnl" : "!BPN_N_TIER_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "N Tier A CathodeMaterial", + "partTypeInformation.manufacturerPartId" : "7A047C7-01", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_N_TIER_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(14)", + "bpnl" : "!BPN_SUB_TIER_B", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Sub Tier B Sealant", + "partTypeInformation.manufacturerPartId" : "9A047C7-01", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_SUB_TIER_B_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(7)", + "bpnl" : "!BPN_TIER_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Tier A Gearbox", + "partTypeInformation.manufacturerPartId" : "32494586-73", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_Sub_TierA_Sensor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_N_TierA_Plastics", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003B3NX');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003B0Q0');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(12)", + "bpnl" : "!BPN_SUB_TIER_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Sub Tier A Sensor", + "partTypeInformation.manufacturerPartId" : "6740244-02", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TIER_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_N_TierA_NTierProduct", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003B0Q0');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(10)", + "bpnl" : "!BPN_N_TIER_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "N Tier A NTier Product", + "partTypeInformation.manufacturerPartId" : "7A047KK-01", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_SUB_TIER_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_N_TIER_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(11)", + "bpnl" : "!BPN_N_TIER_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "N Tier A Plastics", + "partTypeInformation.manufacturerPartId" : "7A987KK-04", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TIER_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_N_TIER_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TIER_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(8)", + "bpnl" : "!BPN_TIER_B", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Tier B ECU1", + "partTypeInformation.manufacturerPartId" : "ZX-55", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_Sub_TierA_Sensor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_Sub_TierB_Glue", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents, '1', '0.3301#unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003B3NX');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AXS3');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(12)", + "bpnl" : "!BPN_SUB_TIER_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Sub Tier A Sensor", + "partTypeInformation.manufacturerPartId" : "6740244-02", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TIER_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_N_TierA_NTierProduct", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003B0Q0');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(10)", + "bpnl" : "!BPN_N_TIER_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "N Tier A NTier Product", + "partTypeInformation.manufacturerPartId" : "7A047KK-01", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_SUB_TIER_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_N_TIER_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(13)", + "bpnl" : "!BPN_SUB_TIER_B", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Sub Tier B Glue", + "partTypeInformation.manufacturerPartId" : "6775244-06", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TIER_B_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_SUB_TIER_B_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TIER_B_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(1)", + "bpnl" : "!BPN_OEM_B", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Vehicle Model B", + "partTypeInformation.manufacturerPartId" : "FJ-87", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_B_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TierA_Gearbox", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TierB_ECU1", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_Tire_Producer", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003B2OM');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003B5MJ');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(7)", + "bpnl" : "!BPN_TIER_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Tier A Gearbox", + "partTypeInformation.manufacturerPartId" : "32494586-73", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_Sub_TierA_Sensor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_N_TierA_Plastics", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003B3NX');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003B0Q0');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(12)", + "bpnl" : "!BPN_SUB_TIER_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Sub Tier A Sensor", + "partTypeInformation.manufacturerPartId" : "6740244-02", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TIER_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_N_TierA_NTierProduct", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003B0Q0');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(10)", + "bpnl" : "!BPN_N_TIER_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "N Tier A NTier Product", + "partTypeInformation.manufacturerPartId" : "7A047KK-01", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_SUB_TIER_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_N_TIER_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(11)", + "bpnl" : "!BPN_N_TIER_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "N Tier A Plastics", + "partTypeInformation.manufacturerPartId" : "7A987KK-04", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TIER_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_N_TIER_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TIER_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(8)", + "bpnl" : "!BPN_TIER_B", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Tier B ECU1", + "partTypeInformation.manufacturerPartId" : "ZX-55", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_Sub_TierA_Sensor", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_Sub_TierB_Glue", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents, '1', '0.3301#unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003B3NX');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AXS3');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(12)", + "bpnl" : "!BPN_SUB_TIER_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Sub Tier A Sensor", + "partTypeInformation.manufacturerPartId" : "6740244-02", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TIER_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_N_TierA_NTierProduct", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003B0Q0');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(10)", + "bpnl" : "!BPN_N_TIER_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "N Tier A NTier Product", + "partTypeInformation.manufacturerPartId" : "7A047KK-01", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_SUB_TIER_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_N_TIER_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(13)", + "bpnl" : "!BPN_SUB_TIER_B", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Sub Tier B Glue", + "partTypeInformation.manufacturerPartId" : "6775244-06", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TIER_B_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_SUB_TIER_B_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TIER_B_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(16)", + "bpnl" : "!BPN_TIER_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Tire Model A", + "partTypeInformation.manufacturerPartId" : "123564887-01", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_B_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_Natural_Rubber_Producer", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents, '1580#unit:gram');", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 1580);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(17)", + "bpnl" : "!BPN_NATURAL_RUBBER", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Natural Rubber Product(40KG blocks)", + "partTypeInformation.manufacturerPartId" : "9953421-03", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TIER_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_Natural_Rubber", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(18)", + "bpnl" : "!BPN_FARM_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Natural Rubber", + "partTypeInformation.manufacturerPartId" : "A26581-11", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_NATURAL_RUBBER_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_FARM_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_NATURAL_RUBBER_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TIER_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_OEM_B_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(2)", + "bpnl" : "!BPN_OEM_C", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Vehicle Model C", + "partTypeInformation.manufacturerPartId" : "XK-34", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_C_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TierB_ECU2", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_Tire_Producer", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003B5MJ');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(9)", + "bpnl" : "!BPN_TIER_B", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Tier B ECU2", + "partTypeInformation.manufacturerPartId" : "39478586-36", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_C_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_Sub_TierB_Glue", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AXS3');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(13)", + "bpnl" : "!BPN_SUB_TIER_B", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Sub Tier B Glue", + "partTypeInformation.manufacturerPartId" : "6775244-06", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TIER_B_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_SUB_TIER_B_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TIER_B_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(16)", + "bpnl" : "!BPN_TIER_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Tire Model A", + "partTypeInformation.manufacturerPartId" : "123564887-01", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_B_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_Natural_Rubber_Producer", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents, '1580#unit:gram');", "item.get('childItems').get(0).get('quantity').put('quantityNumber', 1580);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(17)", + "bpnl" : "!BPN_NATURAL_RUBBER", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Natural Rubber Product(40KG blocks)", + "partTypeInformation.manufacturerPartId" : "9953421-03", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TIER_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_Natural_Rubber", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(18)", + "bpnl" : "!BPN_FARM_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Natural Rubber", + "partTypeInformation.manufacturerPartId" : "A26581-11", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_NATURAL_RUBBER_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_FARM_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_NATURAL_RUBBER_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TIER_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_OEM_C_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(19)", + "bpnl" : "!BPN_TRACEX_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Vehicle Model D", + "partTypeInformation.manufacturerPartId" : "ZZ-88", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TRACEX_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_OEMC_Engine", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TRACEX_B_DF_Right", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_OEM_A_CarBody", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_OEM_A_Seat_Front", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003CNKC');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(20)", + "bpnl" : "!BPN_OEM_C", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "OEM C Engine", + "partTypeInformation.manufacturerPartId" : "59878587-80", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_C_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TRACEX_B_CylinderHead", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TierA_Plunger", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TierC_PistonRod", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TRACEX_A_Cylinder", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003CNKC');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003B2OM');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003CSGV');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003CML1');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(21)", + "bpnl" : "!BPN_TRACEX_B", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "TRACEX B Cylinder Head", + "partTypeInformation.manufacturerPartId" : "9760254-64", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_C_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_OEMC_Rod", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TierC_Crankshaft", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TraceXA_Crank", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003CSGV');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003CML1');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(24)", + "bpnl" : "!BPN_OEM_C", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "OEM C Rod", + "partTypeInformation.manufacturerPartId" : "7B147D8-19", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TRACEX_B_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_OEM_C_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(25)", + "bpnl" : "!BPN_TIER_C", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Tier C Crankshaft", + "partTypeInformation.manufacturerPartId" : "6X247E5-99", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TRACEX_B_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TIER_C_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(26)", + "bpnl" : "!BPN_TRACEX_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "TraceX A Crank", + "partTypeInformation.manufacturerPartId" : "2Z247F8-70", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TRACEX_B_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TRACEX_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TRACEX_B_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(22)", + "bpnl" : "!BPN_TIER_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Tier A Plunger", + "partTypeInformation.manufacturerPartId" : "6260254-43", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_C_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TIER_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(23)", + "bpnl" : "!BPN_TIER_C", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Tier C Piston Rod", + "partTypeInformation.manufacturerPartId" : "5760234-23", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_C_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXSiteId" : "!BPN_TIER_C_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(27)", + "bpnl" : "!BPN_TRACEX_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "TRACEX A Cylinder", + "partTypeInformation.manufacturerPartId" : "8760254-76", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_C_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TraceX_B_Seal", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_OEM_A_Closure", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003CNKC');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(28)", + "bpnl" : "!BPN_TRACEX_B", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "TRACEX B Seal", + "partTypeInformation.manufacturerPartId" : "7C147E8-87", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TRACEX_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TRACEX_B_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(29)", + "bpnl" : "!BPN_OEM_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "OEM A Closure", + "partTypeInformation.manufacturerPartId" : "9C147E8-67", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TRACEX_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TRACEX_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_OEM_C_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(30)", + "bpnl" : "!BPN_TRACEX_B", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "TraceX B Door Front Right", + "partTypeInformation.manufacturerPartId" : "88878587-67", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TRACEX_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TRACEXA_DoorKey", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003CML1');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(31)", + "bpnl" : "!BPN_TRACEX_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "TRACEX A Door-Key", + "partTypeInformation.manufacturerPartId" : "6760255-12", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TRACEX_B_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_OEM_C_KeyFund", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(32)", + "bpnl" : "!BPN_OEM_C", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "OEM C Key fund", + "partTypeInformation.manufacturerPartId" : "1D147E8-90", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TRACEX_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_OEM_C_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TRACEX_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TRACEX_B_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(33)", + "bpnl" : "!BPN_OEM_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "OEM A Car Body", + "partTypeInformation.manufacturerPartId" : "48878587-88", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TRACEX_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TRACEX_B_Doors", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003CNKC');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(34)", + "bpnl" : "!BPN_TRACEX_B", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "TRACEX B Doors", + "partTypeInformation.manufacturerPartId" : "5760244-23", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TRACEX_B_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(33)", + "bpnl" : "!BPN_OEM_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "OEM A Seat Front", + "partTypeInformation.manufacturerPartId" : "59878587-80", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TRACEX_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 2, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TRACEX_B_Upholstery", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TRACEX_A_Heating", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TRACEX_B_Massage", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_OEMC_Seat_Pilot", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003CNKC');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003CML1');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003CNKC');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AZQP');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(34)", + "bpnl" : "!BPN_TRACEX_B", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "TRACEX B Upholstery", + "partTypeInformation.manufacturerPartId" : "9760254-64", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 2, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TierC_Leather", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003CSGV');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(38)", + "bpnl" : "!BPN_TIER_C", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Tier C Leather", + "partTypeInformation.manufacturerPartId" : "9760254-64", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TRACEX_B_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 3, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TIER_C_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TRACEX_B_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(35)", + "bpnl" : "!BPN_TRACEX_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "TRACEX A Heating", + "partTypeInformation.manufacturerPartId" : "9760254-64", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 2, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TierC_Heating_Pad", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TierA_Massage_Pilot", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_OEMA_CPU_Chips", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003CSGV');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003B2OM');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(38)", + "bpnl" : "!BPN_TIER_C", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Tier C Heating Pad", + "partTypeInformation.manufacturerPartId" : "9760254-64", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TRACEX_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 2, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TRACEXA_Power_Conduction", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TRACEX_B_Overheat_Protection", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003CML1');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003CNKC');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(41)", + "bpnl" : "!BPN_TRACEX_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "TRACEX A Power Conduction", + "partTypeInformation.manufacturerPartId" : "9760254-64", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TIER_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TRACEX_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(42)", + "bpnl" : "!BPN_TRACEX_B", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "TRACEX B Overheat Protection", + "partTypeInformation.manufacturerPartId" : "9760254-64", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TIER_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TRACEX_B_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TIER_C_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(39)", + "bpnl" : "!BPN_TIER_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "TIer A Massage Pilot", + "partTypeInformation.manufacturerPartId" : "9760254-64", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TRACEX_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 2, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TRACEXA_Power_Conduction", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TRACEX_B_Overheat_Protection", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003CSGV');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003CML1');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(41)", + "bpnl" : "!BPN_TRACEX_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "TRACEX A Power Conduction", + "partTypeInformation.manufacturerPartId" : "9760254-64", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TIER_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TRACEX_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(42)", + "bpnl" : "!BPN_TRACEX_B", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "TRACEX B Overheat Protection", + "partTypeInformation.manufacturerPartId" : "9760254-64", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TIER_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 10, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TRACEX_B_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TIER_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(40)", + "bpnl" : "!BPN_OEM_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "OEM A Cpu Chips", + "partTypeInformation.manufacturerPartId" : "9760254-64", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_C_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 3, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TRACEX_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(36)", + "bpnl" : "!BPN_TRACEX_B", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "TRACEX B Massage", + "partTypeInformation.manufacturerPartId" : "9760254-64", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 2, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_OEMC_Rod", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TierC_Crankshaft", + "count" : 1, + "version" : "1.0" + }, { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_TraceXA_Crank", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003CSGV');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003CML1');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(24)", + "bpnl" : "!BPN_OEM_C", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "OEM C Rod", + "partTypeInformation.manufacturerPartId" : "7B147D8-19", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TRACEX_B_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_OEM_C_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(25)", + "bpnl" : "!BPN_TIER_C", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "Tier C Crankshaft", + "partTypeInformation.manufacturerPartId" : "6X247E5-99", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TRACEX_B_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TIER_C_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(26)", + "bpnl" : "!BPN_TRACEX_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "TraceX A Crank", + "partTypeInformation.manufacturerPartId" : "2Z247F8-70", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_TRACEX_B_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TRACEX_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TRACEX_B_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + }, { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(37)", + "bpnl" : "!BPN_OEM_C", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "OEM C Seat Pilot", + "partTypeInformation.manufacturerPartId" : "9760254-64", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 2, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ { + "condition" : "", + "code" : [ ], + "values" : { }, + "name" : "PI6AsPlanned_OEMA_CPU_Chips", + "count" : 1, + "version" : "1.0" + } ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ { + "include" : [ ], + "catenaXId" : "!scenario.StringToJSONArray(UIDPOOL).getString(40)", + "bpnl" : "!BPN_OEM_A", + "code" : [ ], + "useId" : true, + "modelVersion" : "2.0.0", + "values" : { + "partTypeInformation.classification" : "product", + "partTypeInformation.nameAtManufacturer" : "OEM A Cpu Chips", + "partTypeInformation.manufacturerPartId" : "9760254-64", + "partSitesInformationAsPlanned.functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "partSitesInformationAsPlanned.catenaXsiteId" : "!BPN_OEM_C_SITE_A", + "partSitesInformationAsPlanned.functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 3, + "nodeType" : "PARENT", + "modelName" : "PartAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "PartAsPlanned", + "children" : [ { + "include" : [ ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);" ], + "useId" : true, + "modelVersion" : "3.0.0", + "values" : { }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "SingleLevelBomAsPlanned", + "condition" : "", + "instanceId" : "", + "templateName" : "singleLevelBomAsPlanned", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_OEM_C_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_OEM_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "3.0" + }, { + "include" : [ ], + "code" : [ ], + "useId" : true, + "modelVersion" : "1.0.0", + "values" : { + "sites[0].catenaXsiteId" : "!BPN_TRACEX_A_SITE_A", + "sites[0].functionValidFrom" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2012, 11, 16), rand.getDate(2020, 12, 31)))", + "sites[0].functionValidUntil" : "!rand.formatDate(rand.getDateBetween(rand.getDate(2023, 11, 16), rand.getDate(2032, 12, 31)))" + }, + "count" : 1, + "nodeType" : "CHILD", + "modelName" : "PartSiteInformation", + "condition" : "", + "instanceId" : "", + "templateName" : "PartSiteInformation", + "children" : [ ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "1.1" + } ], + "useTemplate" : true, + "comment" : "", + "templateVersion" : "2.0" + } ], + "useTemplate" : false, + "comment" : "", + "templateVersion" : "" + }, + "name" : "Catena-X Testdata for PI6", + "version" : "1.3.4-asplanned-alpha-1" + } ], + "oneup" : [ { + "catenaXId" : "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", + "parents" : [ "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97" ] + }, { + "catenaXId" : "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", + "parents" : [ "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6" ] + }, { + "catenaXId" : "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023", + "parents" : [ "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c" ] + }, { + "catenaXId" : "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782", + "parents" : [ "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c" ] + }, { + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "parents" : [ "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e" ] + }, { + "catenaXId" : "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", + "parents" : [ "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d" ] + }, { + "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", + "parents" : [ "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9" ] + }, { + "catenaXId" : "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", + "parents" : [ "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc" ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "parents" : [ "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b" ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "parents" : [ "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", "urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e" ] + }, { + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "parents" : [ "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7" ] + }, { + "catenaXId" : "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", + "parents" : [ "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1" ] + }, { + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "parents" : [ "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65" ] + }, { + "catenaXId" : "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", + "parents" : [ "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f" ] + }, { + "catenaXId" : "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "parents" : [ "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c" ] + }, { + "catenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "parents" : [ "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c" ] + }, { + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "parents" : [ "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77" ] + }, { + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", + "parents" : [ "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c" ] + }, { + "catenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + "parents" : [ "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6" ] + }, { + "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "parents" : [ "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb" ] + }, { + "catenaXId" : "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26", + "parents" : [ "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f" ] + }, { + "catenaXId" : "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", + "parents" : [ "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8" ] + }, { + "catenaXId" : "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", + "parents" : [ "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249" ] + }, { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "parents" : [ "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65" ] + }, { + "catenaXId" : "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4", + "parents" : [ "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118" ] + }, { + "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "parents" : [ "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7" ] + }, { + "catenaXId" : "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", + "parents" : [ "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249" ] + }, { + "catenaXId" : "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "parents" : [ "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249" ] + }, { + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", + "parents" : [ "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97" ] + }, { + "catenaXId" : "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", + "parents" : [ "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249" ] + }, { + "catenaXId" : "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", + "parents" : [ "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c" ] + }, { + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "parents" : [ "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b" ] + }, { + "catenaXId" : "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", + "parents" : [ "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6" ] + }, { + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "parents" : [ "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b" ] + }, { + "catenaXId" : "urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e", + "parents" : [ "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6" ] + }, { + "catenaXId" : "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", + "parents" : [ "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f" ] + }, { + "catenaXId" : "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", + "parents" : [ "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb" ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "parents" : [ "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b" ] + } ], + "onedown" : [ { + "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", + "children" : [ "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699" ] + }, { + "catenaXId" : "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", + "children" : [ "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323" ] + }, { + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "children" : [ "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97" ] + }, { + "catenaXId" : "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "children" : [ "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e" ] + }, { + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "children" : [ "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d" ] + }, { + "catenaXId" : "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "children" : [ "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e" ] + }, { + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "children" : [ "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301" ] + }, { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "children" : [ "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b" ] + }, { + "catenaXId" : "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "children" : [ "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e" ] + }, { + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "children" : [ "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d" ] + }, { + "catenaXId" : "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "children" : [ "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e" ] + }, { + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "children" : [ "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301" ] + }, { + "catenaXId" : "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", + "children" : [ "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a" ] + }, { + "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "children" : [ "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d" ] + }, { + "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "children" : [ "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8" ] + }, { + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", + "children" : [ "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301" ] + }, { + "catenaXId" : "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", + "children" : [ "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a" ] + }, { + "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "children" : [ "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d" ] + }, { + "catenaXId" : "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", + "children" : [ "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8" ] + }, { + "catenaXId" : "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "children" : [ "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26" ] + }, { + "catenaXId" : "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", + "children" : [ "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023", "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782" ] + }, { + "catenaXId" : "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "children" : [ "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c" ] + }, { + "catenaXId" : "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", + "children" : [ "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4" ] + }, { + "catenaXId" : "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", + "children" : [ "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118" ] + }, { + "catenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "children" : [ "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18" ] + }, { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + "children" : [ "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b" ] + }, { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + "children" : [ "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b" ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "children" : [ "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8" ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "children" : [ "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8" ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "children" : [ "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8" ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "children" : [ "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8" ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", + "children" : [ "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4" ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "children" : [ "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8" ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "children" : [ "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8" ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "children" : [ "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8" ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "children" : [ "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8" ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", + "children" : [ "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4" ] + }, { + "catenaXId" : "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", + "children" : [ "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26" ] + }, { + "catenaXId" : "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", + "children" : [ "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26" ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e", + "children" : [ "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4" ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e", + "children" : [ "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4" ] + }, { + "catenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "children" : [ "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", "urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e", "urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e" ] + }, { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + "children" : [ "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b" ] + }, { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + "children" : [ "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b" ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "children" : [ "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8" ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "children" : [ "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8" ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "children" : [ "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8" ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "children" : [ "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8" ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", + "children" : [ "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4" ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "children" : [ "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8" ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "children" : [ "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8" ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "children" : [ "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8" ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "children" : [ "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8" ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", + "children" : [ "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4" ] + }, { + "catenaXId" : "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", + "children" : [ "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26" ] + }, { + "catenaXId" : "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", + "children" : [ "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26" ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e", + "children" : [ "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4" ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "children" : [ ] + }, { + "catenaXId" : "urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e", + "children" : [ "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4" ] + }, { + "catenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "children" : [ "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", "urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e", "urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e" ] + }, { + "catenaXId" : "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", + "children" : [ "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6" ] + } ] +} \ 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 deleted file mode 100644 index 0034667df3..0000000000 --- a/local/testing/testdata/CX_Testdata_v1.5.1-AsPlanned.json +++ /dev/null @@ -1,7166 +0,0 @@ -{ - "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": "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" - } - ] - } -] -} From 933a1a5aaf256d3c4957f9c5000bb542152d5cc1 Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Mon, 8 Apr 2024 14:31:23 +0200 Subject: [PATCH 41/41] feat(impl):[#488] new as planned --- ...n => CX_Testdata_v1.7.0_PartInstance-not-accepted-policy.json} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename local/testing/testdata/{CX_Testdata_v1.7.0_AsBuilt-not-accepted-policy.json => CX_Testdata_v1.7.0_PartInstance-not-accepted-policy.json} (100%) diff --git a/local/testing/testdata/CX_Testdata_v1.7.0_AsBuilt-not-accepted-policy.json b/local/testing/testdata/CX_Testdata_v1.7.0_PartInstance-not-accepted-policy.json similarity index 100% rename from local/testing/testdata/CX_Testdata_v1.7.0_AsBuilt-not-accepted-policy.json rename to local/testing/testdata/CX_Testdata_v1.7.0_PartInstance-not-accepted-policy.json